代码搜索:qapplication

找到约 2,601 项符合「qapplication」的源代码

代码结果 2,601
www.eeworm.com/read/136865/5840854

cpp main.cpp

#include #include "vcr.h" int main( int argc, char ** argv ) { QApplication app( argc, argv ); Vcr *vcr = new Vcr; vcr->show(); return app.exec(); }
www.eeworm.com/read/136865/5840872

cpp main.cpp

#include #include "filechooser.h" int main( int argc, char ** argv ) { QApplication a( argc, argv ); FileChooser *fc = new FileChooser; fc->show(); return a.exec(); }
www.eeworm.com/read/136865/5840893

cpp main.cpp

#include #include "sizeaware.h" int main( int argc, char ** argv ) { QApplication app( argc, argv ); SizeAware *sizeaware = new SizeAware( 0, 0, TRUE ); sizeaware->exec()
www.eeworm.com/read/136865/5840898

cpp main.cpp

#include #include "mainform.h" int main( int argc, char ** argv ) { QApplication a( argc, argv ); MainForm *w = new MainForm; w->show(); return a.exec(); }
www.eeworm.com/read/136865/5841744

cpp main.cpp

#include #include "hello.h" int main( int argc, char **argv ) { QApplication a( argc, argv ); MyPushButton* hello = new MyPushButton( "Hello world!" ); hello->resize( 10
www.eeworm.com/read/136865/5841750

cpp main.cpp

#include #include #include #include "myobject.h" #include "mydialog.h" int main(int argc, char **argv) { QApplication app(argc, argv); MyObjec
www.eeworm.com/read/136815/5855446

cpp main.cpp

#include #include "startup.h" int main( int argc, char **argv ) { QApplication a( argc, argv ); StartUp s; QObject::connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(qui
www.eeworm.com/read/136815/5855478

cpp main.cpp

/**************************************************************** ** ** Translation tutorial 2 ** ****************************************************************/ #include "mainwindow.h" #include
www.eeworm.com/read/136815/5855485

cpp main.cpp

/**************************************************************** ** ** Translation tutorial 3 ** ****************************************************************/ #include "mainwindow.h" #include
www.eeworm.com/read/136815/5855550

cpp main.cpp

#include #include "addressbook.h" int main( int argc, char ** argv ) { QApplication a( argc, argv ); AddressBook *w = new AddressBook; w->show(); a.connect( &a, SIGNA