blob: 82bcdb3d1daa400e1e19ede26d1297a380603b7c (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef APPLICATION_H
#define APPLICATION_H
#include <ntqmainwindow.h>
#include <ntqptrlist.h>
class TQTextEdit;
class TQToolBar;
class TQPopupMenu;
class TQWorkspace;
class TQPopupMenu;
class TQMovie;
class MDIWindow: public TQMainWindow
{
Q_OBJECT
public:
MDIWindow( TQWidget* parent, const char* name, int wflags );
~MDIWindow();
void load( const TQString& fn );
void save();
void saveAs();
void print( TQPrinter* );
protected:
void closeEvent( TQCloseEvent * );
signals:
void message(const TQString&, int );
private:
TQTextEdit* medit;
TQMovie * mmovie;
TQString filename;
};
class ApplicationWindow: public TQMainWindow
{
Q_OBJECT
public:
ApplicationWindow();
~ApplicationWindow();
protected:
void closeEvent( TQCloseEvent * );
private slots:
MDIWindow* newDoc();
void load();
void save();
void saveAs();
void print();
void closeWindow();
void tileHorizontal();
void about();
void aboutTQt();
void windowsMenuAboutToShow();
void windowsMenuActivated( int id );
private:
TQPrinter *printer;
TQWorkspace* ws;
TQToolBar *fileTools;
TQPopupMenu* windowsMenu;
};
#endif
|