1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
knconfigpages.h
KNode, the KDE newsreader
Copyright (c) 2004 Volker Krause <volker.krause@rwth-aachen.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
*/
#ifndef KNCONFIGPAGES_H
#define KNCONFIGPAGES_H
#include <kcmodule.h>
class BaseWidget;
class IdentityWidget;
namespace KNConfig {
/*
* BasePageWithTabs represents a kcm with several tabs.
* It simply forwards load and save operations to all tabs.
* Code mostly taken from kmail.
*/
class KDE_EXPORT BasePageWithTabs : public KCModule {
Q_OBJECT
TQ_OBJECT
public:
BasePageWithTabs( TQWidget * tqparent=0, const char * name=0 );
~BasePageWithTabs() {};
virtual void load();
virtual void save();
virtual void defaults();
protected:
void addTab( KCModule* tab, const TQString & title );
private:
TQTabWidget *mTabWidget;
};
// accounts page
class AccountsPage : public BasePageWithTabs {
Q_OBJECT
TQ_OBJECT
public:
AccountsPage(TQWidget *tqparent = 0, const char *name = 0);
};
// read news page
class KDE_EXPORT ReadNewsPage : public BasePageWithTabs {
Q_OBJECT
TQ_OBJECT
public:
ReadNewsPage(TQWidget *tqparent = 0, const char *name = 0);
};
// post news page
class KDE_EXPORT PostNewsPage : public BasePageWithTabs {
Q_OBJECT
TQ_OBJECT
public:
PostNewsPage(TQWidget *tqparent = 0, const char *name = 0);
};
} //KNConfig
#endif //KNCONFIGPAGES_H
|