头文件
#ifndef WIDGET_H
#define WIDGET_H
#include
#include
#include
#include
#include
QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = nullptr);
~Widget();
private:
Ui::Widget *ui;
};
#endif // WIDGET_H
主函数
#include "widget.h"
#include
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}
构造函数
#include "widget.h"
#include "ui_widget.h"
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
this->setFixedSize(540,410); //设置固定尺寸
this->setWindowIcon(QIcon("E:\\QT\\hqyj\\qtclass\\day1\\qq.png"));//设置窗口的icon
this->setWindowTitle("轻松愉快的聊天室");//窗口标题
//构造一个按钮,构造时给定父组件、文本内容、icon
QPushButton *btn1 = new QPushButton(QIcon("E:\\QT\\hqyj\\qtclass\\icon\\login.png"),
"登录", this);
btn1->resize(QSize(80,45));
btn1->move(350,350);
//构造一个按钮,构造时给定父组件、文本内容、icon
QPushButton *btn2 = new QPushButton(QIcon("E:\\QT\\hqyj\\qtclass\\icon\\cancel.png"),
"取消", this);
btn2->resize(btn1->size());
btn2->move(btn1->x()+90,btn1->y());
//构造一个标签类
QLabel *lab1 = new QLabel(this);
lab1->resize(540,150);
lab1->setPixmap(QPixmap("E:\\QT\\hqyj\\qtclass\\icon\\logo.png")); //插入图片
lab1->setScaledContents(1); //设置内容自适应
//构造一个行编辑器,构造时给定父组件
QLineEdit *edit1 = new QLineEdit(this);
edit1->setPlaceholderText("QQ/手机/邮箱"); //设置编辑器的占位文本
edit1->resize(250,40); //设置尺寸
edit1->move(180, 180); //移动位置
//构造一个行编辑器,构造时给定父组件
QLineEdit *edit2 = new QLineEdit(this);
edit2->setPlaceholderText("密码"); //设置编辑器的占位文本
edit2->resize(edit1->size()); //设置尺寸
edit2->move(edit1->x(), edit1->y()+60); //移动位置
edit2->setEchoMode(QLineEdit::Password); //设置回显模式
QLabel *lab2 = new QLabel("账号 : ",this);
lab2->resize(30,30);
lab2->move(145,185);
lab2->setPixmap(QPixmap("E:\\QT\\hqyj\\qtclass\\icon\\userName.jpg")); //插入图片
lab2->setScaledContents(1); //设置内容自适应
QLabel *lab3 = new QLabel("密码 : ",this);
lab3->resize(lab2->size());
lab3->move(lab2->x(),lab2->y()+65);
lab3->setPixmap(QPixmap("E:\\QT\\hqyj\\qtclass\\icon\\passwd.jpg")); //插入图片
lab3->setScaledContents(1); //设置内容自适应
}
Widget::~Widget()
{
delete ui;
}
QT += core gui
#QT工程所需的类库 core是核心库 gui图形化界面相关的类库
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
#版本超过4.0,会加上widgets
CONFIG += c++11
#该编译器支持c++11后的版本
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
#管理文件
SOURCES += \
main.cpp \
mywindow.cpp
#管理头文件
HEADERS += \
mywindow.h
#管理ui文件
FORMS += \
mywindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
#ifndef MYWINDOW_H
#define MYWINDOW_H //防止头文件重复包含
#include //
QT_BEGIN_NAMESPACE
namespace Ui { class Mywindow; } //命名空间的声明
QT_END_NAMESPACE
//定义属于自己的类 Mywindow是类名,公共继承自Qwidget
class Mywindow : public QWidget
{
Q_OBJECT //信号与槽的元对象
public:
Mywindow(QWidget *parent = nullptr); //构造函数的声明,有一个默认参数的形参
~Mywindow(); //析构函数的声明
private:
Ui::Mywindow *ui; //后期可通过ui指针找到ui界面上拖拽出来的组件
};
#endif // MYWINDOW_H
#include "mywindow.h" //自己的头文件
#include "ui_mywindow.h" //ui界面对应的头文件
Mywindow::Mywindow(QWidget *parent) //构造函数的定义
: QWidget(parent) //显性调用父类的构造函数完成对子类从父类继承下来的成员的初始化工作
, ui(new Ui::Mywindow) //对自己类中的构造函数完成子类从父类
{
ui->setupUi(this); //给拖拽出来的组件实例化空间,让其依附于this指向的组件
//QPushButton *bt1 = new QPushButton(this);
}
Mywindow::~Mywindow()
{
delete ui; //释放ui指针
}
#include "mywindow.h" //图形化界面的头文件
#include //应用程序的头文件
int main(int argc, char *argv[])
{
QApplication a(argc, argv); //实例化一个应用程序的对象,调用的是有参构造
Mywindow w; //在栈区实例化自己定义的类对象
w.show(); //调用show函数,展示图形化界面,该函数是父类提供的,直接用即可
return a.exec(); //为了阻塞界面不被关闭,等待相关事情发生
//等待信号与槽、事件处理、等待用户操作
}