Last change
on this file was 2, checked in by dmik, 19 years ago |
Imported original Psi 0.10 sources from Affinix
|
File size:
471 bytes
|
Line | |
---|
1 | #ifndef OPT_APPLICATION_H
|
---|
2 | #define OPT_APPLICATION_H
|
---|
3 |
|
---|
4 | #include "optionstab.h"
|
---|
5 |
|
---|
6 | class QWidget;
|
---|
7 | struct Options;
|
---|
8 | class QButtonGroup;
|
---|
9 |
|
---|
10 | class OptionsTabApplication : public OptionsTab
|
---|
11 | {
|
---|
12 | Q_OBJECT
|
---|
13 | public:
|
---|
14 | OptionsTabApplication(QObject *parent);
|
---|
15 | ~OptionsTabApplication();
|
---|
16 |
|
---|
17 | QWidget *widget();
|
---|
18 | void applyOptions(Options *opt);
|
---|
19 | void restoreOptions(const Options *opt);
|
---|
20 |
|
---|
21 | private slots:
|
---|
22 | void selectBrowser(int);
|
---|
23 | void hideMenubarToggled(bool);
|
---|
24 |
|
---|
25 | private:
|
---|
26 | QWidget *w;
|
---|
27 | };
|
---|
28 |
|
---|
29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.