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.
43 lines
922 B
43 lines
922 B
13 years ago
|
/****************************************************************
|
||
|
**
|
||
|
** TQt tutorial 4
|
||
|
**
|
||
|
****************************************************************/
|
||
|
|
||
|
#include <qapplication.h>
|
||
|
#include <qpushbutton.h>
|
||
|
#include <qfont.h>
|
||
|
|
||
|
|
||
|
class MyWidget : public TQWidget
|
||
|
{
|
||
|
public:
|
||
|
MyWidget( TQWidget *parent=0, const char *name=0 );
|
||
|
};
|
||
|
|
||
|
|
||
|
MyWidget::MyWidget( TQWidget *parent, const char *name )
|
||
|
: TQWidget( parent, name )
|
||
|
{
|
||
|
setMinimumSize( 200, 120 );
|
||
|
setMaximumSize( 200, 120 );
|
||
|
|
||
|
TQPushButton *tquit = new TQPushButton( "Quit", this, "tquit" );
|
||
|
tquit->setGeometry( 62, 40, 75, 30 );
|
||
|
tquit->setFont( TQFont( "Times", 18, TQFont::Bold ) );
|
||
|
|
||
|
connect( tquit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
|
||
|
}
|
||
|
|
||
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
|
TQApplication a( argc, argv );
|
||
|
|
||
|
MyWidget w;
|
||
|
w.setGeometry( 100, 100, 200, 120 );
|
||
|
a.setMainWidget( &w );
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|