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
|
Rev | Line | |
---|
[793] | 1 | //----------------------------------------------------------------------------// |
---|
| 2 | // Current revisions: |
---|
| 3 | // ----------------- |
---|
[1612] | 4 | // |
---|
[793] | 5 | // |
---|
| 6 | // Former revisions: |
---|
| 7 | // ----------------- |
---|
| 8 | // $Id: mainwindow.h 1612 2015-07-07 12:25:21Z raasch $ |
---|
| 9 | // |
---|
[1612] | 10 | // 1611 2015-07-07 12:23:22Z maronga |
---|
| 11 | // Added slot start_watchdog |
---|
| 12 | // |
---|
[794] | 13 | // 793 2011-12-12 15:15:24Z maronga |
---|
| 14 | // Initial revision |
---|
| 15 | // |
---|
[793] | 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(); |
---|
[1611] | 64 | int start_watchdog(); |
---|
[793] | 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.