blob: b2951f6e9cbfeb7c8099ad8fab14379feeca93e9 (
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, SLOT(quit()),
tr("Ctrl+Q", "Quit") );
menuBar()->insertItem( tr("&File"), file );
menuBar()->setSeparator( TQMenuBar::InWindowsStyle );
}
|