基本Qt程序的创建
参考这篇博文。
main.cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| #include "mainwindow.h" #include <QApplication>
int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.show(); return a.exec(); }
|
mainwindow.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| #ifndef MAINWINDOW_H #define MAINWINDOW_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE namespace Ui {
class MainWindow; } QT_END_NAMESPACE
class MainWindow : public QMainWindow { Q_OBJECT
public: MainWindow(QWidget *parent = nullptr); ~MainWindow();
private: Ui::MainWindow *ui; }; #endif
|
mainwindow.cpp
testwidget.h
和testwidget.h
实现略。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| #include "mainwindow.h" #include "ui_mainwindow.h" #include "testwidget.h" #include "testdialog.h"
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::MainWindow) { ui->setupUi(this);
#if 1 TestWidget *w = new TestWidget; w->show(); # else TestWidget *w = new TestWidget(this); #endif
#if 0 TestDialog *dlg = new TestDialog(this); dlg->show(); #else TestDialog *dlg = new TestDialog(this); dlg->exec(); #endif
}
MainWindow::~MainWindow() { delete ui; }
|
Qt的坐标体系
mainwindow.cpp
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| #include "mainwindow.h" #include "ui_mainwindow.h" #include <QPushButton>
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::MainWindow) { ui->setupUi(this);
this->move(120, 240);
QPushButton *btnA = new QPushButton(this); btnA->move(10, 40); btnA->setFixedSize(200, 200);
QPushButton *btnB = new QPushButton(btnA); btnB->move(50, 20); btnB->setFixedSize(100, 100);
QPushButton *btnC = new QPushButton(btnB); btnC->move(25, 25); btnC->setFixedSize(50, 50); }
MainWindow::~MainWindow() { delete ui; }
|
Qt内存回收
Qt中有内存回收机制, 但是不是所有被new
出的对象被自动回收, 满足条件才可以回收, 如果想要在Qt中实现内存的自动回收, 需要满足以下两个条件:
- 创建的对象必须是QObject类的子类(间接子类也可以);
- 创建出的类对象, 必须要指定其父对象是谁(通过构造函数或
setParent()
方法)。