blob: 3c209de2a0cbaa33be986dc7a78cb65a15a7eb83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
%{H_TEMPLATE}
#ifndef %{APPNAMEUC}_H
#define %{APPNAMEUC}_H
#include <kxmlguiwindow.h>
#include "ui_prefs_base.h"
class %{APPNAME}View;
class KPrinter;
class TDEToggleAction;
class KUrl;
/**
* This class serves as the main window for %{APPNAME}. It handles the
* menus, toolbars, and status bars.
*
* @short Main window class
* @author Andreas Pakulat <apaku@gmx.de>
* @version 0.1
*/
class %{APPNAME} : public KXmlGuiWindow
{
Q_OBJECT
public:
/**
* Default Constructor
*/
%{APPNAME}();
/**
* Default Destructor
*/
virtual ~%{APPNAME}();
private slots:
void fileNew();
void optionsPreferences();
private:
void setupActions();
private:
Ui::prefs_base ui_prefs_base ;
%{APPNAME}View *m_view;
KPrinter *m_printer;
TDEToggleAction *m_toolbarAction;
TDEToggleAction *m_statusbarAction;
};
#endif // _%{APPNAMELC}_H_
|