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.
40 lines
527 B
40 lines
527 B
%{H_TEMPLATE}
|
|
|
|
#ifndef %{APPNAMEUC}_H
|
|
#define %{APPNAMEUC}_H
|
|
|
|
#include <qmainwindow.h>
|
|
|
|
class QTextEdit;
|
|
|
|
class %{APPNAME}: public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
%{APPNAME}();
|
|
~%{APPNAME}();
|
|
|
|
protected:
|
|
void closeEvent( QCloseEvent* );
|
|
|
|
private slots:
|
|
void newDoc();
|
|
void choose();
|
|
void load( const QString &fileName );
|
|
void save();
|
|
void saveAs();
|
|
void print();
|
|
|
|
void about();
|
|
void aboutQt();
|
|
|
|
private:
|
|
QPrinter *printer;
|
|
QTextEdit *e;
|
|
QString filename;
|
|
};
|
|
|
|
|
|
#endif
|