summaryrefslogtreecommitdiffstats
path: root/kommander/widget/kmdrmainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widget/kmdrmainwindow.h')
-rw-r--r--kommander/widget/kmdrmainwindow.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/kommander/widget/kmdrmainwindow.h b/kommander/widget/kmdrmainwindow.h
new file mode 100644
index 00000000..059b514e
--- /dev/null
+++ b/kommander/widget/kmdrmainwindow.h
@@ -0,0 +1,37 @@
+//
+// C++ Interface: KmdrMainWindow
+//
+// Description:
+//
+//
+// Author: Andras Mantia <amantia@kdewebdev.org>, (C) 2008
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef KmdrMainWindow_H
+#define KmdrMainWindow_H
+
+#include <kmainwindow.h>
+
+/**
+ @author Andras Mantia <amantia@kdewebdev.org>
+*/
+class KmdrMainWindow : public KMainWindow
+{
+Q_OBJECT
+public:
+ KmdrMainWindow(QWidget *parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose);
+
+ ~KmdrMainWindow();
+
+protected:
+ virtual bool queryClose();
+
+signals:
+ void initialize();
+ void destroy();
+
+};
+
+#endif