summaryrefslogtreecommitdiffstats
path: root/examples/demo/i18n/i18n.h
blob: b716fc04ecccbcec72346cfabcdf8fb469bd53d0 (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
{
    TQ_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