Fixed text file permissions
[snark14.git] / tools / Input / mode.h
1 /** @file mode.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 MODEWINDOW_H
9 #define MODEWINDOW_H
10
11 #include <qvariant.h>
12 #include <qdialog.h>
13 class QVBoxLayout; 
14 class QHBoxLayout; 
15 class QGridLayout; 
16 class QCheckBox;
17 class QFrame;
18 class QLabel;
19 class QLineEdit;
20 class QPushButton;
21 class QRadioButton;
22
23 class modewindow : public QDialog
24
25     Q_OBJECT
26
27 public:
28     modewindow( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
29     ~modewindow();
30     QString getOutput();
31
32     QLabel* modelabel;
33     QCheckBox* lowerbox;
34     QCheckBox* upperbox;
35     QLabel* uppervaluelabel;
36     QLineEdit* uppervalue;
37     QLineEdit* lowervalue;
38     QLabel* lowervaluelabel;
39     QFrame* Line9;
40     QPushButton* okbutton;
41     QPushButton* cancelbutton;
42 private slots:
43       //void activateFields();
44     void activateLowerFields();
45     void activateUpperFields();
46     void checkValues();
47 };
48
49 #endif // MODEWINDOW_H