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.
22 lines
429 B
22 lines
429 B
13 years ago
|
/****************************************************************
|
||
|
**
|
||
|
** TQt tutorial 1
|
||
|
**
|
||
|
****************************************************************/
|
||
|
|
||
|
#include <qapplication.h>
|
||
|
#include <qpushbutton.h>
|
||
|
|
||
|
|
||
|
int main( int argc, char **argv )
|
||
|
{
|
||
|
TQApplication a( argc, argv );
|
||
|
|
||
|
TQPushButton hello( "Hello world!", 0 );
|
||
|
hello.resize( 100, 30 );
|
||
|
|
||
|
a.setMainWidget( &hello );
|
||
|
hello.show();
|
||
|
return a.exec();
|
||
|
}
|