blob: 29663e1f516edf7425661f9589e273b304ee3b50 (
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
|
#ifndef I18N_H
#define I18N_H
#include <ntqmainwindow.h>
class TQWorkspace;
class TQAction;
class TQPopupMenu;
class Wrapper;
class I18nDemo : public TQMainWindow
{
Q_OBJECT
public:
I18nDemo(TQWidget *, const char * = 0);
~I18nDemo();
void initActions();
void initMenuBar();
void showEvent(TQShowEvent *);
void hideEvent(TQHideEvent *);
TQWorkspace *workspace;
TQAction *actionClose, *actionCloseAll, *actionTile, *actionCascade;
TQPopupMenu *windowMenu, *newMenu;
Wrapper *lastwrapper;
public slots:
void newSlot(int);
void windowSlot(int);
void windowActivated(TQWidget *);
void closeSlot();
void closeAllSlot();
void tileSlot();
void cascadeSlot();
void wrapperDead();
};
#endif // I18N_H
|