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
433 B
22 lines
433 B
/****************************************************************
|
|
**
|
|
** TQt tutorial 1
|
|
**
|
|
****************************************************************/
|
|
|
|
#include <ntqapplication.h>
|
|
#include <ntqpushbutton.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();
|
|
}
|