• 大小: 28KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-15
  • 语言: 其他
  • 标签:

资源简介

用Qt实现绘图工具,可以绘画矩形、椭圆、箭头、线条、文字,还带有颜色选取器,可供颜色变换。

资源截图

代码片段和文件信息

#include 
#include “aboutdialog.h“

AboutDialog::AboutDialog(QWidget *parent) :
    QDialog(parent)
{
    this->setWindowFlags(Qt::Window | Qt::WindowCloseButtonHint);
    this->setFixedSize(250 80);

    initAboutDialog();
}

AboutDialog::~AboutDialog()
{

}

void AboutDialog::initAboutDialog()
{
    m_imgLabel = new QLabel(this);
    m_imgLabel->setFixedSize(50 50);
    m_imgLabel->setPixmap(QPixmap(tr(“:/image/paint.png“)));

    QVBoxLayout *vLayout1 = new QVBoxLayout();
    m_aboutLabel = new QLabel(tr(“Note“) this);
    m_copyrightLabel = new QLabel(tr(“Copyright 2018“) this);
    vLayout1->addWidget(m_aboutLabel);
    vLayout1->addWidget(m_copyrightLabel);

    QHBoxLayout *hLayout1 = new QHBoxLayout();
    hLayout1->setContentsMargins(4 4 4 4);
    hLayout1->addWidget(m_imgLabel);
    hLayout1->addLayout(vLayout1);

    QVBoxLayout *vLayout2 = new QVBoxLayout();
    vLayout2->addLayout(hLayout1);

    this->setLayout(vLayout2);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1009  2018-10-01 16:48  Paint\aboutdialog.cpp

     文件        405  2018-10-01 16:47  Paint\aboutdialog.h

     文件       1365  2018-10-28 13:02  Paint\coloritem.cpp

     文件        642  2018-10-28 13:02  Paint\coloritem.h

     文件      10407  2018-11-18 12:08  Paint\colorwidget.cpp

     文件        407  2018-11-18 11:46  Paint\colorwidget.h

     文件       2981  2018-12-12 18:50  Paint\image\clear.png

     文件       3142  2018-12-12 17:12  Paint\image\color.png

     文件       1733  2017-10-10 15:33  Paint\image\paint.png

     文件       3140  2018-12-12 18:39  Paint\image\restore.png

     文件       1248  2018-12-12 17:25  Paint\image\rotate.png

     文件       1120  2018-12-12 18:47  Paint\image\shear.png

     文件       3076  2018-12-12 17:48  Paint\image\zoomin.png

     文件       3100  2018-12-12 17:56  Paint\image\zoomout.png

     文件        185  2018-09-29 20:04  Paint\main.cpp

     文件        567  2018-10-28 13:02  Paint\Paint.pro

     文件        371  2018-12-12 18:50  Paint\paint.qrc

     文件      13750  2018-11-18 12:08  Paint\paintarea.cpp

     文件       2755  2018-10-28 14:44  Paint\paintarea.h

     文件       9457  2018-12-12 18:50  Paint\paintwindow.cpp

     文件       1785  2018-11-17 15:21  Paint\paintwindow.h

     目录          0  2019-06-12 23:43  Paint\image

     目录          0  2019-07-18 22:39  Paint

----------- ---------  ---------- -----  ----

                62645                    23


评论

共有 条评论

相关资源