Last change
on this file was 2, checked in by dmik, 19 years ago |
Imported original Psi 0.10 sources from Affinix
|
File size:
659 bytes
|
Line | |
---|
1 | #ifndef OPT_GROUPCHAT_H
|
---|
2 | #define OPT_GROUPCHAT_H
|
---|
3 |
|
---|
4 | #include "optionstab.h"
|
---|
5 |
|
---|
6 | class QWidget;
|
---|
7 | struct Options;
|
---|
8 |
|
---|
9 | class OptionsTabGroupchat : public OptionsTab
|
---|
10 | {
|
---|
11 | Q_OBJECT
|
---|
12 | public:
|
---|
13 | OptionsTabGroupchat(QObject *parent);
|
---|
14 |
|
---|
15 | QWidget *widget();
|
---|
16 | void applyOptions(Options *opt);
|
---|
17 | void restoreOptions(const Options *opt);
|
---|
18 |
|
---|
19 | void setData(PsiCon *, QWidget *);
|
---|
20 | bool stretchable() const { return true; }
|
---|
21 |
|
---|
22 | private slots:
|
---|
23 | void addNickColor(QString);
|
---|
24 | void addGCHighlight();
|
---|
25 | void removeGCHighlight();
|
---|
26 | void addGCNickColor();
|
---|
27 | void removeGCNickColor();
|
---|
28 | void chooseGCNickColor();
|
---|
29 | void displayGCNickColor();
|
---|
30 | void selectedGCNickColor();
|
---|
31 |
|
---|
32 | private:
|
---|
33 | QWidget *w, *dlg;
|
---|
34 | };
|
---|
35 |
|
---|
36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.