|
Last change
on this file since 117 was 2, checked in by dmik, 19 years ago |
|
Imported original Psi 0.10 sources from Affinix
|
|
File size:
429 bytes
|
| Line | |
|---|
| 1 | #ifndef OPTIONSDLG_H
|
|---|
| 2 | #define OPTIONSDLG_H
|
|---|
| 3 |
|
|---|
| 4 | #include "ui_options.h"
|
|---|
| 5 |
|
|---|
| 6 | class PsiCon;
|
|---|
| 7 | struct Options;
|
|---|
| 8 |
|
|---|
| 9 | class OptionsDlg : public OptionsUI
|
|---|
| 10 | {
|
|---|
| 11 | Q_OBJECT
|
|---|
| 12 | public:
|
|---|
| 13 | OptionsDlg(PsiCon *, const Options &, QWidget *parent = 0, const char *name = 0);
|
|---|
| 14 | ~OptionsDlg();
|
|---|
| 15 |
|
|---|
| 16 | signals:
|
|---|
| 17 | void applyOptions(const Options &);
|
|---|
| 18 |
|
|---|
| 19 | private slots:
|
|---|
| 20 | void doOk();
|
|---|
| 21 | void doApply();
|
|---|
| 22 |
|
|---|
| 23 | public:
|
|---|
| 24 | class Private;
|
|---|
| 25 | private:
|
|---|
| 26 | Private *d;
|
|---|
| 27 | friend class Private;
|
|---|
| 28 | };
|
|---|
| 29 |
|
|---|
| 30 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.