summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kconfig35/appview.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:06:29 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:06:29 -0600
commitc0b24fe164924298d7e6ae33964b3c65fadbcba3 (patch)
tree2ba50375d78b077b266b224e4413150ef3e60a15 /languages/cpp/app_templates/kconfig35/appview.h
parent33d15e862e09fbcbb05e209f832414bd8a01291e (diff)
downloadtdevelop-c0b24fe164924298d7e6ae33964b3c65fadbcba3.tar.gz
tdevelop-c0b24fe164924298d7e6ae33964b3c65fadbcba3.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'languages/cpp/app_templates/kconfig35/appview.h')
-rw-r--r--languages/cpp/app_templates/kconfig35/appview.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/languages/cpp/app_templates/kconfig35/appview.h b/languages/cpp/app_templates/kconfig35/appview.h
deleted file mode 100644
index a486ec43..00000000
--- a/languages/cpp/app_templates/kconfig35/appview.h
+++ /dev/null
@@ -1,53 +0,0 @@
-%{H_TEMPLATE}
-
-#ifndef _%{APPNAMEUC}VIEW_H_
-#define _%{APPNAMEUC}VIEW_H_
-
-#include <tqwidget.h>
-
-#include "%{APPNAMELC}view_base.h"
-
-class TQPainter;
-class KURL;
-
-/**
- * This is the main view class for %{APPNAME}. Most of the non-menu,
- * non-toolbar, and non-statusbar (e.g., non frame) GUI code should go
- * here.
- *
- * @short Main view
- * @author %{AUTHOR} <%{EMAIL}>
- * @version %{VERSION}
- */
-class %{APPNAMELC}View : public %{APPNAMELC}view_base
-{
- Q_OBJECT
-
-public:
- /**
- * Default constructor
- */
- %{APPNAMELC}View(TQWidget *parent);
-
- /**
- * Destructor
- */
- virtual ~%{APPNAMELC}View();
-
-signals:
- /**
- * Use this signal to change the content of the statusbar
- */
- void signalChangeStatusbar(const TQString& text);
-
- /**
- * Use this signal to change the content of the caption
- */
- void signalChangeCaption(const TQString& text);
-
-private slots:
- void switchColors();
- void settingsChanged();
-};
-
-#endif // _%{APPNAMEUC}VIEW_H_