source: psi/trunk/src/options/opt_chat.h

Last change on this file was 2, checked in by dmik, 19 years ago

Imported original Psi 0.10 sources from Affinix

File size: 402 bytes
Line 
1#ifndef OPT_CHAT_H
2#define OPT_CHAT_H
3
4#include "optionstab.h"
5
6class QWidget;
7struct Options;
8class QButtonGroup;
9
10class OptionsTabChat : public OptionsTab
11{
12 Q_OBJECT
13public:
14 OptionsTabChat(QObject *parent);
15 ~OptionsTabChat();
16
17 QWidget *widget();
18 void applyOptions(Options *opt);
19 void restoreOptions(const Options *opt);
20
21private:
22 QWidget *w;
23 QButtonGroup *bg_defAct, *bg_delChats;
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.