summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kconfig35/app.h
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/kconfig35/app.h')
-rw-r--r--languages/cpp/app_templates/kconfig35/app.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/languages/cpp/app_templates/kconfig35/app.h b/languages/cpp/app_templates/kconfig35/app.h
deleted file mode 100644
index c1aac7e4..00000000
--- a/languages/cpp/app_templates/kconfig35/app.h
+++ /dev/null
@@ -1,61 +0,0 @@
-%{H_TEMPLATE}
-
-#ifndef _%{APPNAMEUC}_H_
-#define _%{APPNAMEUC}_H_
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <kapplication.h>
-#include <kmainwindow.h>
-
-#include "%{APPNAMELC}view.h"
-
-class KPrinter;
-class KURL;
-
-/**
- * This class serves as the main window for %{APPNAME}. It handles the
- * menus, toolbars, and status bars.
- *
- * @short Main window class
- * @author %{AUTHOR} <%{EMAIL}>
- * @version %{VERSION}
- */
-class %{APPNAMELC} : public KMainWindow
-{
- Q_OBJECT
-
-public:
- /**
- * Default Constructor
- */
- %{APPNAMELC}();
-
- /**
- * Default Destructor
- */
- virtual ~%{APPNAMELC}();
-
-private slots:
-
- void fileNew();
- void optionsPreferences();
- void newToolbarConfig();
-
- void changeStatusbar(const TQString& text);
- void changeCaption(const TQString& text);
-
-private:
-
- void setupActions();
-
-private:
- %{APPNAMELC}View *m_view;
-
- KPrinter *m_printer;
-};
-
-#endif // _%{APPNAMEUC}_H_
-