CycloBranch
cPreferencesTabDataProcessing.h
Go to the documentation of this file.
1
7#ifndef _CPREFERENCESTABDATAPROCESSING_H
8#define _CPREFERENCESTABDATAPROCESSING_H
9
11
12#include <QWidget>
13#include <QHBoxLayout>
14#include <QVBoxLayout>
15#include <QLabel>
16#include <QPushButton>
17#include <QComboBox>
18#include <QMessageBox>
19#include <QFileInfo>
20
21
25class cPreferencesTabDataProcessing : public QWidget
26{
27 Q_OBJECT
28
29public:
30
31
37 explicit cPreferencesTabDataProcessing(cGlobalPreferences& globalpreferences, QWidget *parent = 0);
38
39
44 void setPreferences(cGlobalPreferences& globalpreferences);
45
46
51 void resetPreferences(cGlobalPreferences& globalpreferences);
52
53
58
59
60private:
61
62 QVBoxLayout *mainlayout;
63
64 QWidget* gridlayoutwidget;
65 QGridLayout* gridlayout;
66
67 QLabel* labellinebafprocessingmethod;
68 QComboBox* comboboxlinebafprocessingmethod;
69
70 QLabel* labelprofilebafprocessingmethod;
71 QComboBox* comboboxprofilebafprocessingmethod;
72
73 QLabel* labelrawdataprocessingmethod;
74 QComboBox* comboboxrawdataprocessingmethod;
75
76 QWidget* hwidget;
77 QHBoxLayout* hlayout;
78 QPushButton* defaultbutton;
79
80
81private slots:
82
83
84 void defaultButtonReleased();
85
86};
87
88
89#endif
90
The representation of a set of peptide sequence candidates.
The class storing global preferences.
Definition: cGlobalPreferences.h:104
The class representing a tab used to define the data processing parameters.
Definition: cPreferencesTabDataProcessing.h:26
cPreferencesTabDataProcessing(cGlobalPreferences &globalpreferences, QWidget *parent=0)
The constructor.
Definition: cPreferencesTabDataProcessing.cpp:4
~cPreferencesTabDataProcessing()
The destructor.
Definition: cPreferencesTabDataProcessing.cpp:68
void resetPreferences(cGlobalPreferences &globalpreferences)
Reset preferences.
Definition: cPreferencesTabDataProcessing.cpp:60
void setPreferences(cGlobalPreferences &globalpreferences)
Set preferences.
Definition: cPreferencesTabDataProcessing.cpp:52