Fixed text file permissions
[snark14.git] / tools / Input / experiment.h
1 /** @file experiment.h
2     @package snark14Input
3     @author Bruno M. Carvalho and Deniz Sarioz
4     licensed under (open-source) QPL v1.0
5     which accompanies this distribution in the file QPL
6 */
7
8 #ifndef EXPERIMENTWINDOW_H
9 #define EXPERIMENTWINDOW_H
10
11 #include <qvariant.h>
12 #include <qdialog.h>
13 class QVBoxLayout; 
14 class QHBoxLayout; 
15 class QGridLayout; 
16 class QFrame;
17 class QLabel;
18 class QLineEdit;
19 class QPushButton;
20
21 class experimentwindow : public QDialog
22
23     Q_OBJECT
24
25 public:
26     experimentwindow( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
27     ~experimentwindow();
28     QString getOutput();
29
30     QLineEdit* comments;
31     QFrame* Line9;
32     QPushButton* okbutton;
33     QPushButton* cancelbutton;
34     QLabel* TextLabel1;
35 protected:
36     bool event( QEvent* );
37 };
38
39 #endif // EXPERIMENTWINDOW_H