Fixed text file permissions
[snark14.git] / tools / Display / selectEvalExecutions.hpp
1 /** @file selectEvalExecutions.hpp
2     @package snark14Display
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 SELECTEVALEXECUTIONSWINDOW_HPP
9 #define SELECTEVALEXECUTIONSWINDOW_HPP
10
11 #include <qvariant.h>
12 #include <qdialog.h>
13 class QVBoxLayout; 
14 class QHBoxLayout; 
15 class QGridLayout; 
16 class QFrame;
17 class QListBox;
18 class QListBoxItem;
19 class QPushButton;
20 class SnarkDisplay;
21
22 class selectEvalExecutionsWindow : public QDialog
23
24     Q_OBJECT
25
26 public:
27     selectEvalExecutionsWindow( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 , int x = 0 , int y = 0 );
28     ~selectEvalExecutionsWindow();
29
30     QWidget* Parent;
31     QFrame* Line6; // ?
32     QListBox* evalExecutionsListBox;
33     QPushButton* openbutton;
34     QPushButton* selectbutton;
35     QPushButton* clearselectbutton;
36     QPushButton* closebutton;
37 public slots:
38     void openEvalExecutions(); //?
39 ///    void setEvalExecutionsNames(); //?
40     void selectAll();
41     void clearSelected();
42 };
43
44 #endif // SELECTEVALEXECUTIONSWINDOW_HPP