Last change
on this file since 1736 was
1612,
checked in by maronga, 9 years ago
|
last commit documented
|
-
Property svn:keywords set to
Id
|
File size:
1.4 KB
|
Line | |
---|
1 | //----------------------------------------------------------------------------// |
---|
2 | // Current revisions: |
---|
3 | // ----------------- |
---|
4 | // |
---|
5 | // |
---|
6 | // Former revisions: |
---|
7 | // ----------------- |
---|
8 | // $Id: mainwindow.h 1612 2015-07-07 12:25:21Z raasch $ |
---|
9 | // |
---|
10 | // 1611 2015-07-07 12:23:22Z maronga |
---|
11 | // Added slot start_watchdog |
---|
12 | // |
---|
13 | // 793 2011-12-12 15:15:24Z maronga |
---|
14 | // Initial revision |
---|
15 | // |
---|
16 | // Description: |
---|
17 | // ------------ |
---|
18 | // UI mainwindow header file |
---|
19 | //----------------------------------------------------------------------------// |
---|
20 | |
---|
21 | #ifndef MAINWINDOW_H |
---|
22 | #define MAINWINDOW_H |
---|
23 | |
---|
24 | #include <QMainWindow> |
---|
25 | |
---|
26 | |
---|
27 | namespace Ui { |
---|
28 | class MainWindow; |
---|
29 | } |
---|
30 | |
---|
31 | |
---|
32 | |
---|
33 | class MainWindow : public QMainWindow |
---|
34 | { |
---|
35 | Q_OBJECT |
---|
36 | |
---|
37 | |
---|
38 | public: |
---|
39 | explicit MainWindow(QWidget *parent = 0); |
---|
40 | ~MainWindow(); |
---|
41 | |
---|
42 | private: |
---|
43 | Ui::MainWindow *ui; |
---|
44 | int change_commandline(QString id,QString fwstring); |
---|
45 | int delete_commandline(QString id); |
---|
46 | int activate_flag(QString id); |
---|
47 | int deactivate_flag(QString id); |
---|
48 | int setup_gui(QString mrunline); |
---|
49 | int recent_jobs(int noj); |
---|
50 | |
---|
51 | |
---|
52 | private slots: |
---|
53 | int startmrun(); |
---|
54 | int enable_advanced(); |
---|
55 | int enable_coupled(); |
---|
56 | int choosejob(); |
---|
57 | int choosejob_list(); |
---|
58 | int change_rc_list(); |
---|
59 | int check_flags(); |
---|
60 | int change_lineinput(); |
---|
61 | int reset_window(); |
---|
62 | int save_to_file(); |
---|
63 | int save_default(); |
---|
64 | int start_watchdog(); |
---|
65 | int open_from_file(); |
---|
66 | int open_last(); |
---|
67 | int help(); |
---|
68 | int about_gui(); |
---|
69 | }; |
---|
70 | |
---|
71 | #endif // MAINWINDOW_H |
---|
72 | |
---|
73 | |
---|
Note: See
TracBrowser
for help on using the repository browser.