1 Star 0 Fork 5

zjxiangjian/message

forked from 屁股大象/message 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
mainwindow.cpp 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
屁股大象 提交于 2022-08-10 22:30 . 刷新
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "message.h"
#include <QPushButton>
Message* pMsg = nullptr;
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
setFixedSize(1366, 768);
ui->centralwidget->setStyleSheet("QWidget{background-color:white;}");
pMsg = new Message(this);
pMsg->SetDuration(3000);
QPushButton* pBtn1 = new QPushButton("成功", this);
QPushButton* pBtn2 = new QPushButton("错误", this);
QPushButton* pBtn3 = new QPushButton("警告", this);
QPushButton* pBtn4 = new QPushButton("信息", this);
connect(pBtn1, &QPushButton::clicked, this, [&](){
pMsg->Push(MessageType::MESSAGE_TYPE_SUCCESS, QString("成功"));
});
connect(pBtn2, &QPushButton::clicked, this, [&](){
pMsg->Push(MessageType::MESSAGE_TYPE_ERROR, QString("错误"));
});
connect(pBtn3, &QPushButton::clicked, this, [&](){
pMsg->Push(MessageType::MESSAGE_TYPE_WARNING, QString("警告\nSFKROEGKROEGKRTGKRTKHROTKHORTKHORTKHORTKHORTKHORTKHOKRTOHKROTHKROKHRHKKOKKO"));
});
connect(pBtn4, &QPushButton::clicked, this, [&](){
pMsg->Push(MessageType::MESSAGE_TYPE_INFORMATION, QString("信息"));
});
int cnt = 0;
for(auto && btn : findChildren<QPushButton*>())
{
btn->setCursor(QCursor(Qt::PointingHandCursor));
btn->setFixedSize(60, 40);
btn->move(50 + cnt++ * 90, 500);
}
}
MainWindow::~MainWindow()
{
delete ui;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zjxiangjian/message.git
git@gitee.com:zjxiangjian/message.git
zjxiangjian
message
message
master

搜索帮助