summaryrefslogtreecommitdiffstats
path: root/tools/linguist/tutorial/tt2/mainwindow.cpp
blob: a2507331cfb277f7937f9492288ab637a3768518 (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 <ntqaccel.h>
#include <ntqapplication.h>
#include <ntqmenubar.h>
#include <ntqpopupmenu.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( tr("E&xit"), tqApp, TQ_SLOT(quit()),
		      tr("Ctrl+Q", "Quit") );
    menuBar()->insertItem( tr("&File"), file );
    menuBar()->setSeparator( TQMenuBar::InWindowsStyle );
}