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.
tqt3/qmake/examples/tutorial/main.cpp

15 lines
285 B

#include <ntqapplication.h>
#include "hello.h"
int main( int argc, char **argv )
{
TQApplication a( argc, argv );
MyPushButton* hello = new MyPushButton( "Hello world!" );
hello->resize( 100, 30 );
a.setMainWidget( hello );
hello->show();
return a.exec();
}