标签:style blog class code java color
1.新建空Qt工程
2.新建C++类HelloQt
3.新建ui文件,添加部件,重命名主窗体(对话框)类名HelloQt,构建生成ui头文件
4.修改头文件helloqt.h
1 #ifndef HELLOQT_H
2 #define HELLOQT_H
3
4 #include <QDialog>
5
6 namespace Ui{
7 class HelloQt;
8 }
9 class HelloQt : public QDialog
10 {
11 Q_OBJECT
12 public:
13 explicit HelloQt(QWidget *parent = 0);
14
15 signals:
16
17 public slots:
18
19 private:
20 Ui::HelloQt *ui;
21 };
22
23 #endif // HELLOQT_H
给HelloQt类新增Ui::HelloQt(头文件ui_helloqt中的Ui::HelloQt)的指针变量*ui,使得类可以在执行构造函数的时候,调用ui头文件中的setUi方法生成界面
5.修改helloqt.cpp,实现helloqt.h头文件中HelloQt的构造函数
1 #include "helloqt.h"
2 #include "ui_helloqt.h"
3 HelloQt::HelloQt(QWidget *parent) :
4 QDialog(parent)
5 {
6 ui = new Ui::HelloQt();
7 ui->setupUi(this);
8 }
或者
1 #include "helloqt.h"
2 #include "ui_helloqt.h"
3 HelloQt::HelloQt(QWidget *parent) :
4 QDialog(parent),
5 ui(new Ui::HelloQt)
6 {
7 ui->setupUi(this);
8 }
C++ new的时候居然可以不带括号!!
6.新建main.cpp,直接调用定义好的C++类生成图像界面
1 #include <QApplication>
2 #include "helloqt.h"
3 int main(int argc, char * argv[])
4 {
5 QApplication app(argc, argv);
6 HelloQt dlg;
7 dlg.setWindowTitle(QObject::trUtf8("白季飞龙"));
8 dlg.show();
9 return app.exec();
10 }
C/C++ -- Gui编程 -- Qt库的使用 -- 使用自定义类,布布扣,bubuko.com
C/C++ -- Gui编程 -- Qt库的使用 -- 使用自定义类
标签:style blog class code java color
原文地址:http://www.cnblogs.com/baijifeilong/p/3710662.html