網頁

2020年8月24日 星期一

Qt

參考 在Ubuntu中編譯您的第一個Qt程序

安裝
$ sudo apt-get update
$ sudo apt-get install build-essential
$ sudo apt-get install qtcreator
$ sudo apt-get install qt5-default

第一個程式
$ mkdir SampleProject; cd SampleProject
$ vi testmain.cpp
#include <QApplication>
#include <QLabel>
#include <QWidget>

int main(int argc, char *argv[ ])
{
    QApplication app(argc, argv);
    QLabel hello("<center>Welcome to my first Qt program</center>");
    hello.setWindowTitle("My First Qt Program");
    hello.resize(400, 400);
    hello.show();
    return app.exec();
}

$ qmake -project
產生 SampleProject.pro
$ vi SampleProject.pro
檔案後加入下列一行
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
$ qmake SampleProject.pro
產生 Makefile
$ make
產生 SampleProject
利用 Qt Creator 建立程式
開始/Qt Creator
或使用命令 qtcreator 啟動 Qt Creator
會產生
main.cpp 主程式
mainwindow.ui 畫面
mainwindow.h, mainwindow.cpp 畫面類別
SampleProject.pro 專案


沒有留言:

張貼留言