summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kapp/pref.h
blob: 2379800041c1615fd220bf346af6352771dc80f5 (plain)
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
%{H_TEMPLATE}

#ifndef _%{APPNAMEUC}PREF_H_
#define _%{APPNAMEUC}PREF_H_

#include <kdialogbase.h>
#include <tqframe.h>

class %{APPNAME}PrefPageOne;
class %{APPNAME}PrefPageTwo;

class %{APPNAME}Preferences : public KDialogBase
{
    Q_OBJECT
  TQ_OBJECT
public:
    %{APPNAME}Preferences();

private:
    %{APPNAME}PrefPageOne *m_pageOne;
    %{APPNAME}PrefPageTwo *m_pageTwo;
};

class %{APPNAME}PrefPageOne : public TQFrame
{
    Q_OBJECT
  TQ_OBJECT
public:
    %{APPNAME}PrefPageOne(TQWidget *tqparent = 0);
};

class %{APPNAME}PrefPageTwo : public TQFrame
{
    Q_OBJECT
  TQ_OBJECT
public:
    %{APPNAME}PrefPageTwo(TQWidget *tqparent = 0);
};

#endif // _%{APPNAMEUC}PREF_H_