main.cpp

来自「这是一个嵌入式linux的GUI源码comdemo.tar.gz 一个QT/Em」· C++ 代码 · 共 26 行

CPP
26
字号
#include "form1.h"#include <qapplication.h>#include <qtopia/qpeapplication.h>QTOPIA_ADD_APPLICATION("Objlist",Form1)QTOPIA_MAIN /* The program starts here. It parses the command line and builds a message  string to be displayed by the Hello widget.*/#define QT_NO_WIZARD/*int main( int argc, char **argv ){    QApplication a(argc,argv);    Form1 dlg;    QObject::connect( &dlg, SIGNAL(clicked()), &a, SLOT(quit()) );    a.setMainWidget( &dlg );    dlg.show();    return a.exec();}*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?