|
a/src/qtgui/confgui/confguiindex.h |
|
b/src/qtgui/confgui/confguiindex.h |
|
... |
|
... |
8 |
*/
|
8 |
*/
|
9 |
|
9 |
|
10 |
#include <qwidget.h>
|
10 |
#include <qwidget.h>
|
11 |
#include <qstring.h>
|
11 |
#include <qstring.h>
|
12 |
#if QT_VERSION < 0x040000
|
12 |
#if QT_VERSION < 0x040000
|
|
|
13 |
#include <qgroupbox.h>
|
13 |
#include <qtabdialog.h>
|
14 |
#include <qtabdialog.h>
|
14 |
#define QTABDIALOG QTabDialog
|
15 |
#define QTABDIALOG QTabDialog
|
15 |
#else // Qt4 ->
|
16 |
#else // Qt4 ->
|
|
|
17 |
#include <Q3GroupBox>
|
16 |
#include <Q3TabDialog>
|
18 |
#include <Q3TabDialog>
|
17 |
#define QTABDIALOG Q3TabDialog
|
19 |
#define QTABDIALOG Q3TabDialog
|
18 |
#endif // QT 3/4
|
20 |
#endif // QT 3/4
|
19 |
|
21 |
|
20 |
#include <string>
|
22 |
#include <string>
|
|
... |
|
... |
24 |
|
26 |
|
25 |
class ConfNull;
|
27 |
class ConfNull;
|
26 |
class RclConfig;
|
28 |
class RclConfig;
|
27 |
class ConfParamW;
|
29 |
class ConfParamW;
|
28 |
class ConfParamDNLW;
|
30 |
class ConfParamDNLW;
|
29 |
class QGroupBox;
|
|
|
30 |
|
31 |
|
31 |
namespace confgui {
|
32 |
namespace confgui {
|
32 |
|
33 |
|
33 |
class ConfIndexW : public QTABDIALOG {
|
34 |
class ConfIndexW : public QTABDIALOG {
|
34 |
Q_OBJECT
|
35 |
Q_OBJECT
|
|
... |
|
... |
51 |
class ConfTopPanelW : public QWidget {
|
52 |
class ConfTopPanelW : public QWidget {
|
52 |
Q_OBJECT
|
53 |
Q_OBJECT
|
53 |
public:
|
54 |
public:
|
54 |
ConfTopPanelW(QWidget *parent, ConfNull *config);
|
55 |
ConfTopPanelW(QWidget *parent, ConfNull *config);
|
55 |
};
|
56 |
};
|
56 |
|
|
|
57 |
#if QT_VERSION < 0x040000
|
|
|
58 |
#include <qgroupbox.h>
|
|
|
59 |
#else
|
|
|
60 |
#include <Q3GroupBox>
|
|
|
61 |
#endif
|
|
|
62 |
|
57 |
|
63 |
/**
|
58 |
/**
|
64 |
* A panel for the parameters that can be changed in subdirectories:
|
59 |
* A panel for the parameters that can be changed in subdirectories:
|
65 |
*/
|
60 |
*/
|
66 |
class ConfSubPanelW : public QWidget {
|
61 |
class ConfSubPanelW : public QWidget {
|