代码搜索:qapplication

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

代码结果 2,601
www.eeworm.com/read/118801/6094438

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/118801/6095653

cpp main.cpp

#include #include #include "mainwindow.h" int main( int argc, char **argv ) { XtSetLanguageProc( NULL, NULL, NULL ); QMotif integrator( "dialog" ); QApplica
www.eeworm.com/read/174657/6328264

cpp main.cpp

#include #include "mainwindow.h" #include int main( int argc, char **argv ) { QApplication app( argc, argv ); MainWindow *window = new MainWindow; app.
www.eeworm.com/read/493539/6395200

cpp main.cpp

#include #include "dialog.h" int main( int argc, char ** argv) { QApplication app( argc, argv); ShowJpeg showJpeg; app.setMainWidget( &showJpeg ); showJpeg.show();
www.eeworm.com/read/490077/6458157

cpp main.cpp

#include #include "form1.h" int main( int argc, char ** argv ) { QApplication a( argc, argv ); Form1 w; w.show(); a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLO
www.eeworm.com/read/485618/6554992

html qevent.html

www.eeworm.com/read/485618/6555085

html tutorial1-01.html

www.eeworm.com/read/477648/6729675

cpp main.cpp

#include #include "frmclient.h" int main( int argc, char ** argv ) { QApplication a( argc, argv ); frmclient w; w.show(); a.connect( &a, SIGNAL( lastWindowClosed() ),
www.eeworm.com/read/265046/11284545

cpp main.cpp

#include #include int main(int argc, char *argv[]) { QApplication app (argc, argv); QLabel *label = new QLabel("Hello Qt!", 0); app.setMainWidget(label);
www.eeworm.com/read/265046/11284578

cpp main.cpp

#include #include int main(int argc, char* argv[]) { QApplication app(argc,argv); QPushButton* button = new QPushButton("Quit", 0); QObject::connect(button, SIGN