You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
775 B
27 lines
775 B
/****************************************************************
|
|
**
|
|
** 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 );
|
|
}
|