OSDN Git Service

Initial revision
[kita/kita.git] / src / pref.h
1 /*
2  * Copyright (C) 2001 Hideki Ikemoto <ikemo@wakaba.jp>
3  */
4
5 #ifndef _KITAPREF_H_
6 #define _KITAPREF_H_
7
8 #include <kdialogbase.h>
9 #include <qframe.h>
10
11 class KitaPrefPageOne;
12 class KitaPrefPageTwo;
13
14 class KitaPreferences : public KDialogBase
15 {
16     Q_OBJECT
17 public:
18     KitaPreferences();
19
20 private:
21     KitaPrefPageOne *m_pageOne;
22     KitaPrefPageTwo *m_pageTwo;
23 };
24
25 class KitaPrefPageOne : public QFrame
26 {
27     Q_OBJECT
28 public:
29     KitaPrefPageOne(QWidget *parent = 0);
30 };
31
32 class KitaPrefPageTwo : public QFrame
33 {
34     Q_OBJECT
35 public:
36     KitaPrefPageTwo(QWidget *parent = 0);
37 };
38
39 #endif // _KITAPREF_H_