summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/linguist/tutorial/tt2/mainwindow.cpp
blob: 41dd7d19ebe9487aa5b98fc881c60d5ddb1688cb (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
/****************************************************************
**
** Implementation of MainWindow class, translation tutorial 2
**
****************************************************************/

#include "arrowpad.h"
#include "mainwindow.h"

#include <tqaccel.h>
#include <tqapplication.h>
#include <tqmenubar.h>
#include <tqpopupmenu.h>

MainWindow::MainWindow( TQWidget *parent, const char *name )
    : TQMainWindow( parent, name )
{
    ArrowPad *ap = new ArrowPad( this, "arrow pad" );
    setCentralWidget( ap );

    TQPopupMenu *file = new TQPopupMenu( this );
    file->insertItem( tqtr("E&xit"), tqApp, TQT_SLOT(quit()),
		      tqtr("Ctrl+Q", "Quit") );
    menuBar()->insertItem( tqtr("&File"), file );
    menuBar()->setSeparator( TQMenuBar::InWindowsStyle );
}