⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 基于qt的hello world 程序,在arm 的开发板上运行,
💻 CPP
字号:
//#include <qconfig-qpe.h>//#include "GUcdragonDlg.h"#include "hello.h"#include <qapplication.h>#include <qtopia/qpeapplication.h>QTOPIA_ADD_APPLICATION("hello",Hello)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_WIZARDint main( int argc, char **argv ){    QApplication a(argc,argv);    Hello dlg;    QObject::connect( &dlg, SIGNAL(clicked()), &a, SLOT(quit()) );    a.setMainWidget( &dlg );    dlg.show();    return a.exec();}*/

⌨️ 快捷键说明

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