Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xtpcpp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
PAPPSO
xtpcpp
Commits
e44804ad
Commit
e44804ad
authored
8 years ago
by
Olivier Langella
Browse files
Options
Downloads
Patches
Plain Diff
error message OK, close event handled
parent
c3af4de4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/gui/mainwindow.cpp
+35
-13
35 additions, 13 deletions
src/gui/mainwindow.cpp
src/gui/mainwindow.h
+16
-3
16 additions, 3 deletions
src/gui/mainwindow.h
with
51 additions
and
16 deletions
src/gui/mainwindow.cpp
+
35
−
13
View file @
e44804ad
...
...
@@ -24,11 +24,13 @@
#include
<QDockWidget>
#include
<QSettings>
#include
<QFileDialog>
#include
<QMessageBox>
#include
"mainwindow.h"
#include
"ui_main.h"
#include
"files/xpipfile.h"
#include
"gui/peptide_list_view/peptidelistwindow.h"
#include
<pappsomspp/pappsoexception.h>
void
PwizLoaderThread
::
doMsDataFileLoad
(
const
QString
&
parameter
)
{
...
...
@@ -83,6 +85,21 @@ MainWindow::~MainWindow()
}
void
MainWindow
::
closeEvent
(
QCloseEvent
*
event
)
{
if
(
true
)
{
event
->
accept
();
}
else
{
event
->
ignore
();
}
}
void
MainWindow
::
viewError
(
QString
error
)
{
QMessageBox
::
warning
(
this
,
tr
(
"Oops! an error occurred in XTPCPP. Dont Panic :"
),
error
);
}
void
MainWindow
::
doProteinMatchClicked
(
ProteinMatch
*
protein_match
)
{
PeptideListWindow
*
peptide_window
=
new
PeptideListWindow
(
this
);
peptide_window
->
setProteinMatch
(
_project_sp
.
get
(),
protein_match
);
...
...
@@ -90,23 +107,28 @@ void MainWindow::doProteinMatchClicked(ProteinMatch * protein_match) {
}
void
MainWindow
::
selectXpipFile
()
{
try
{
QSettings
settings
;
QString
default_location
=
settings
.
value
(
"path/xpipfile"
,
""
).
toString
();
QSettings
settings
;
QString
default_location
=
settings
.
value
(
"path/xpipfile"
,
""
).
toString
();
QString
filename
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Open XPIP File"
),
default_location
,
tr
(
"xpip files (*.xpip);;all files (*)"
));
QString
filename
=
QFileDialog
::
getOpenFileName
(
this
,
tr
(
"Open XPIP File"
),
default_location
,
tr
(
"xpip files (*.xpip);;all files (*)"
));
if
(
filename
.
isEmpty
())
{
return
;
}
QFileInfo
new_xpip_file
;
new_xpip_file
.
setFile
(
filename
);
if
(
filename
.
isEmpty
())
{
return
;
}
QFileInfo
new_xpip_file
;
new_xpip_file
.
setFile
(
filename
);
XpipFile
xpip_file
(
new_xpip_file
);
XpipFile
xpip_file
(
new_xpip_file
);
_project_sp
=
xpip_file
.
getProjectSp
();
_protein_list_window
->
setIdentificationGroup
(
_project_sp
.
get
()
->
getCurrentIdentificationGroupP
());
_project_sp
=
xpip_file
.
getProjectSp
();
_protein_list_window
->
setIdentificationGroup
(
_project_sp
.
get
()
->
getCurrentIdentificationGroupP
());
}
catch
(
pappso
::
PappsoException
&
error
)
{
viewError
(
error
.
qwhat
());
}
}
This diff is collapsed.
Click to expand it.
src/gui/mainwindow.h
+
16
−
3
View file @
e44804ad
...
...
@@ -28,6 +28,7 @@
#include
<QMainWindow>
#include
<QThread>
#include
<QFileInfo>
#include
<QCloseEvent>
#include
<pappsomspp/types.h>
#include
<pappsomspp/peptide/peptide.h>
#include
<pappsomspp/spectrum/spectrum.h>
...
...
@@ -48,6 +49,11 @@ class PwizLoaderThread : public QObject
Q_OBJECT
public:
protected:
void
closeEvent
(
QCloseEvent
*
event
);
public
slots
:
void
doMsDataFileLoad
(
const
QString
&
parameter
);
...
...
@@ -72,16 +78,23 @@ public slots:
// void setShape(Shape shape);
signals:
//void peptideChanged(pappso::PeptideSp peptide);
protected:
private:
Ui
::
Main
*
ui
;
void
closeEvent
(
QCloseEvent
*
event
)
override
;
ProteinListWindow
*
_protein_list_window
=
nullptr
;
private:
void
viewError
(
QString
error
);
private
:
Ui
::
Main
*
ui
;
ProjectSp
_project_sp
=
nullptr
;
ProteinListWindow
*
_protein_list_window
=
nullptr
;
};
#endif // MAINWINDOW_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment