You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
653 B
41 lines
653 B
%{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
|
|
|
|
public:
|
|
%{APPNAME}Preferences();
|
|
|
|
private:
|
|
%{APPNAME}PrefPageOne *m_pageOne;
|
|
%{APPNAME}PrefPageTwo *m_pageTwo;
|
|
};
|
|
|
|
class %{APPNAME}PrefPageOne : public TQFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}PrefPageOne(TQWidget *parent = 0);
|
|
};
|
|
|
|
class %{APPNAME}PrefPageTwo : public TQFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}PrefPageTwo(TQWidget *parent = 0);
|
|
};
|
|
|
|
#endif // _%{APPNAMEUC}PREF_H_
|