CycloBranch
cHTMLExportDialog.h
Go to the documentation of this file.
1
7#ifndef _CHTMLEXPORTDIALOG_H
8#define _CHTMLEXPORTDIALOG_H
9
10#include <QWidget>
11#include <QDialog>
12#include <QHBoxLayout>
13#include <QFormLayout>
14#include <QDialogButtonBox>
15#include <QGroupBox>
16#include <QCheckBox>
17
18
22class cHTMLExportDialog : public QDialog
23{
24 Q_OBJECT
25
26private:
27
28 QWidget* parent;
29
30 QFormLayout* form1;
31 QFormLayout* form2;
32
33 QGroupBox* group1;
34 QGroupBox* group2;
35
36 QHBoxLayout* hbox;
37 QDialogButtonBox* buttonbox;
38 QVBoxLayout* vbox;
39
40public:
41
46
47
51 QCheckBox* checkboxdenovo;
52
53
58
59
64
65
70
71
76
77
82
83
88
89
93 QCheckBox* checkboxdetails;
94
95
100 cHTMLExportDialog(QWidget* parent = (QWidget *)0);
101
102
107
108};
109
110#endif
111
The implementation of HTML export dialog.
Definition: cHTMLExportDialog.h:23
QCheckBox * checkboxunmatchedtheoretical
Export matched experimental peaks.
Definition: cHTMLExportDialog.h:87
QCheckBox * checkboxsummaryresultstable
Export output report table.
Definition: cHTMLExportDialog.h:63
QCheckBox * checkboxparameters
Export parameters.
Definition: cHTMLExportDialog.h:45
QCheckBox * checkboxsummarypeakstable
Export summary table of matched peaks.
Definition: cHTMLExportDialog.h:69
QCheckBox * checkboxunmatchedexperimental
Export unmatched experimental peaks.
Definition: cHTMLExportDialog.h:81
QCheckBox * checkboxpeakstable
Export peakss table.
Definition: cHTMLExportDialog.h:75
QCheckBox * checkboxdetails
Export details of identification.
Definition: cHTMLExportDialog.h:93
~cHTMLExportDialog()
The destructor.
Definition: cHTMLExportDialog.cpp:55
QCheckBox * checkboxlogwindow
Export log window.
Definition: cHTMLExportDialog.h:57
cHTMLExportDialog(QWidget *parent=(QWidget *) 0)
The constructor.
Definition: cHTMLExportDialog.cpp:4
QCheckBox * checkboxdenovo
Export de novo graph.
Definition: cHTMLExportDialog.h:51