summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/cmakeqt3app/cmakeqt3app.h
blob: 2d372da9730a5c6afc9042cb4d3109e7c9262696 (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
%{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