资源简介
flag.rar
代码片段和文件信息
#include “dialog.h“
#include “ui_dialog.h“
#include
Dialog::Dialog(QWidget *parent) :
QDialog(parent)
ui(new Ui::Dialog)
{
ui->setupUi(this);
}
Dialog::~Dialog()
{
delete ui;
}
void Dialog::paintEvent(QPaintEvent *)
{
QPainter qp(this);
QRect rc(0 0 rect().width() rect().height());
qp.fillRect(rc Qt::red); // 填充蓝色矩形
QPainterPath path1;
path1.lineTo(rect().width()*0.70);
path1.lineTo(0rect().height());
path1.lineTo(00);
//qp.setBrush(QBrush(Qt::red));
//qp.drawPath(path1);
qp.fillPath(path1 QBrush(Qt::green));
QPainterPath path2;
path2.moveTo(rect().width()*0.70);
path2.lineTo(rect().width() 0);
path2.lineTo(rect().width()*0.3 rect().height());
path2.lineTo(0rect().height());
path2.lineTo(rect().width()*0.70);
qp.fillPath(path2 QBrush(Qt::yellow));
/**
qp.setPen(Qt::yellow); qp.setFont(QFont(“Arial“ 28));
qp.drawText(rc Qt::AlignCenter “Hello QT“); //显示标题文字
//for (int i = 0; i < rect().width(); i += 20)
// qp.drawPoint(i 20); // 连续打点
QPen pen(Qt::red); qp.setPen(pen);
rc.setRect(5 40 rect().width() - 10 rect().height() - 45);
qp.drawRect(rc); // 画矩形框
pen.setWidth(3); qp.setPen(pen);
qp.drawLine(5 35 rect().width() - 10 35); // 画粗线
QBrush brush(Qt::cyan); qp.setBrush(brush);
qp.setPen(Qt::NoPen); // 关闭画笔, 不画边框
//qp.drawEllipse(rc); // 画青色椭
int r = rc.width()>rc.height() ? rc.height()/2 : rc.width()/2;//圆半径
rc.setRect(rc.center().rx() - r rc.center().ry() - r 2 * r 2 * r);
qp.setRenderHint(QPainter::Antialiasing); // 反锯齿平滑
**/
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 522128 2018-12-14 15:21 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\dialog.o
文件 599012 2018-12-14 15:21 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\flag
文件 182480 2018-12-14 13:46 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\main.o
文件 52231 2018-12-14 13:46 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\Makefile
文件 2539 2018-12-14 13:46 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\moc_dialog.cpp
文件 211704 2018-12-14 13:46 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\moc_dialog.o
文件 1239 2018-12-14 13:52 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug\ui_dialog.h
文件 1737 2018-12-14 15:21 flag\dialog.cpp
文件 287 2018-12-14 13:44 flag\dialog.h
文件 546 2018-12-14 13:52 flag\dialog.ui
文件 345 2018-12-14 13:40 flag\flag.pro
文件 18606 2018-12-14 13:40 flag\flag.pro.user
文件 166 2018-12-14 13:46 flag\main.cpp
目录 0 2018-12-14 15:21 flag\bin\build-flag-Desktop_Qt_5_5_1_GCC_32bit-Debug
目录 0 2018-12-14 13:46 flag\bin
目录 0 2018-12-14 15:21 flag
----------- --------- ---------- ----- ----
1593020 16
相关资源
- 韩顺平全套.zip
- 码上挪车4.0.zip
- cad.txt
- 底部导航栏.rar
- qq_38085795_10705901.zip
- 张宇考研数学概率论与数理统计讲义
- QT无边框拖放解决花屏.zip
- 前端代码-12月26号.rar
- 龙之谷加教程-副本.docx
- 最新老虎淘客系统+老虎app+微信淘宝客
- GameSourceCode.txt
- TPTPR_DVR_1.slx
- UCI数据集mat格式.rar
- Kmeans.rar
- psam.7z
- 兄弟连新版Linux全套资料百度云.txt
- 大灰狼(v8.71)验证器.exe
- FastICA_2.5.zip
- 前端书籍.txt
- eCognitionDeveloper9.01含crack文件.txt
- phantomjs_2.1.1_windows百度云盘地址.txt
- newbbin.rar
- WAS_IHS_8完整安装包.txt
- 百度云盘地址.txt
- SDK26.1.1网盘地址.txt
- 快思聪中控系统中文帮助
- 操作系统课设.docx
- 262a72e5d94ecea628ce87cf982df78d.txt
- Elasticsearch顶尖高手系列.rar
- HookNtQuery_File.zip
评论
共有 条评论