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