Fixed text file permissions
[snark14.git] / tools / Input / trace.h
1 /** @file trace.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 TRACEWINDOW_H
9 #define TRACEWINDOW_H
10
11 #include <qvariant.h>
12 #include <qdialog.h>
13 class QVBoxLayout; 
14 class QHBoxLayout; 
15 class QGridLayout; 
16 class QButtonGroup;
17 class QFrame;
18 class QLabel;
19 class QPushButton;
20 class QRadioButton;
21
22 class tracewindow : public QDialog
23
24     Q_OBJECT
25
26 public:
27     tracewindow( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
28     ~tracewindow();
29     QString getOutput();
30
31     QLabel* tracelabel;
32     QFrame* Line18;
33     QGridLayout* tracebuttonslayout;
34     QButtonGroup* tracebuttongroup;
35     QRadioButton* tl0button;
36     QRadioButton* tl1button;
37     //    QRadioButton* tl2button;
38     //    QRadioButton* tl4button;
39     QRadioButton* tl5button;
40     QRadioButton* tl6button;
41     QRadioButton* tl7button;
42     QRadioButton* tl8button;
43     QRadioButton* tl10button;
44     QPushButton* okbutton;
45     QPushButton* cancelbutton;
46 private slots:
47       //void activateFields();
48   //    void setTraceLevel(int l);
49 };
50
51 #endif // TRACEWINDOW_H