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.
55 lines
907 B
55 lines
907 B
%{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_
|