ODIN
odindialog_system.h
1 /***************************************************************************
2  odindialog_system.h - description
3  -------------------
4  begin : Sun Oct 2 21:30:11 CEST 2005
5  copyright : (C) 2000-2021 by Thies H. Jochimsen
6  email : thies@jochimsen.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef ODINDIALOG_SYSTEM_H
19 #define ODINDIALOG_SYSTEM_H
20 
21 #include <qobject.h>
22 
23 #include <odinqt/ldrwidget.h>
24 
25 #include <odinpara/system.h>
26 
27 
28 
29 class SystemDialog : public QObject, public GuiDialog {
30  Q_OBJECT
31 
32  public:
33  SystemDialog(QWidget *parent);
34  ~SystemDialog();
35 
36  signals:
37  void new_platform(odinPlatform pF);
38  void new_setting();
39  void finished();
40 
41  private slots:
42  void emitDone();
43  void emitChanged();
44  void change_platform(int pF);
45 
46  private:
47  void create_systemInfo_widget();
48 
49  GuiGridLayout* grid;
50  enumBox* pf;
51  GuiButton* pb_done;
52  LDRwidget* sysInfo_widget;
53 };
54 
55 #endif
odinPlatform
Definition: system.h:39