source: psi/trunk/src/options/optionsdlg.h@ 14

Last change on this file since 14 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
6class PsiCon;
7struct Options;
8
9class OptionsDlg : public OptionsUI
10{
11 Q_OBJECT
12public:
13 OptionsDlg(PsiCon *, const Options &, QWidget *parent = 0, const char *name = 0);
14 ~OptionsDlg();
15
16signals:
17 void applyOptions(const Options &);
18
19private slots:
20 void doOk();
21 void doApply();
22
23public:
24 class Private;
25private:
26 Private *d;
27 friend class Private;
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.