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.
tdevelop/languages/cpp/app_templates/kapp/pref.h

41 lines
656 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
{
TQ_OBJECT
public:
%{APPNAME}Preferences();
private:
%{APPNAME}PrefPageOne *m_pageOne;
%{APPNAME}PrefPageTwo *m_pageTwo;
};
class %{APPNAME}PrefPageOne : public TQFrame
{
TQ_OBJECT
public:
%{APPNAME}PrefPageOne(TQWidget *parent = 0);
};
class %{APPNAME}PrefPageTwo : public TQFrame
{
TQ_OBJECT
public:
%{APPNAME}PrefPageTwo(TQWidget *parent = 0);
};
#endif // _%{APPNAMEUC}PREF_H_