summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/qmakeapp/qmakeapp.h
blob: 48bf459a117716f553a9c1e03ad30d1d7817376c (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 <tqmainwindow.h>

class QTextEdit;

class %{APPNAME}: public QMainWindow
{
    Q_OBJECT

public:
    %{APPNAME}();
    ~%{APPNAME}();

protected:
    void closeEvent( TQCloseEvent* );

private slots:
    void newDoc();
    void choose();
    void load( const TQString &fileName );
    void save();
    void saveAs();
    void print();

    void about();
    void aboutQt();

private:
    TQPrinter *printer;
    TQTextEdit *e;
    TQString filename;
};


#endif