source: palm/trunk/UTIL/mrungui/mainwindow.h @ 1611

Last change on this file since 1611 was 1611, checked in by maronga, 9 years ago

added new palm watchdog, removed old nc2vdf scripts

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