⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 colorswatch.cpp

📁 奇趣公司比较新的qt/emd版本
💻 CPP
📖 第 1 页 / 共 2 页
字号:
/******************************************************************************** Copyright (C) 2004-2007 Trolltech ASA. All rights reserved.**** This file is part of the demonstration applications of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "colorswatch.h"#include <QAction>#include <QtEvents>#include <QFrame>#include <QMainWindow>#include <QMenu>#include <QPainter>#include <QImage>#include <QColor>#include <QDialog>#include <QGridLayout>#include <QSpinBox>#include <QLabel>#include <QPainterPath>#include <QPushButton>#include <QHBoxLayout>#include <QtDebug>#undef DEBUG_SIZEHINTSQColor bgColorForName(const QString &name){    if (name == "Black")        return QColor("#D8D8D8");    else if (name == "White")        return QColor("#F1F1F1");    else if (name == "Red")        return QColor("#F1D8D8");    else if (name == "Green")        return QColor("#D8E4D8");    else if (name == "Blue")        return QColor("#D8D8F1");    else if (name == "Yellow")        return QColor("#F1F0D8");    return QColor(name).light(110);}QColor fgColorForName(const QString &name){    if (name == "Black")        return QColor("#6C6C6C");    else if (name == "White")        return QColor("#F8F8F8");    else if (name == "Red")        return QColor("#F86C6C");    else if (name == "Green")        return QColor("#6CB26C");    else if (name == "Blue")        return QColor("#6C6CF8");    else if (name == "Yellow")        return QColor("#F8F76C");    return QColor(name);}class ColorDock : public QFrame{    Q_OBJECTpublic:    ColorDock(const QString &c, QWidget *parent);    virtual QSize sizeHint() const;    virtual QSize minimumSizeHint() const;    void setCustomSizeHint(const QSize &size);public slots:    void changeSizeHints();protected:    void paintEvent(QPaintEvent *);    QString color;    QSize szHint, minSzHint;};ColorDock::ColorDock(const QString &c, QWidget *parent)    : QFrame(parent) , color(c){    QFont font = this->font();    font.setPointSize(8);    setFont(font);    szHint = QSize(-1, -1);    minSzHint = QSize(125, 75);}QSize ColorDock::sizeHint() const{    return szHint;}QSize ColorDock::minimumSizeHint() const{    return minSzHint;}void ColorDock::paintEvent(QPaintEvent *){    QPainter p(this);    p.setRenderHint(QPainter::Antialiasing);    p.fillRect(rect(), bgColorForName(color));    p.save();    extern void render_qt_text(QPainter *, int, int, const QColor &);    render_qt_text(&p, width(), height(), fgColorForName(color));    p.restore();#ifdef DEBUG_SIZEHINTS    p.setRenderHint(QPainter::Antialiasing, false);    QSize sz = size();    QSize szHint = sizeHint();    QSize minSzHint = minimumSizeHint();    QSize maxSz = maximumSize();    QString text = QString::fromLatin1("sz: %1x%2\nszHint: %3x%4\nminSzHint: %5x%6\n"                                        "maxSz: %8x%9")                    .arg(sz.width()).arg(sz.height())                    .arg(szHint.width()).arg(szHint.height())                    .arg(minSzHint.width()).arg(minSzHint.height())                    .arg(maxSz.width()).arg(maxSz.height());    QRect r = fontMetrics().boundingRect(rect(), Qt::AlignLeft|Qt::AlignTop, text);    r.adjust(-2, -2, 1, 1);    p.translate(4, 4);    QColor bg = Qt::yellow;    bg.setAlpha(120);    p.setBrush(bg);    p.setPen(Qt::black);    p.drawRect(r);    p.drawText(rect(), Qt::AlignLeft|Qt::AlignTop, text);#endif // DEBUG_SIZEHINTS}static QSpinBox *createSpinBox(int value, QWidget *parent, int max = 1000){    QSpinBox *result = new QSpinBox(parent);    result->setMinimum(-1);    result->setMaximum(max);    result->setValue(value);    return result;}void ColorDock::changeSizeHints(){    QDialog dialog(this);    dialog.setWindowTitle(color);    QVBoxLayout *topLayout = new QVBoxLayout(&dialog);    QGridLayout *inputLayout = new QGridLayout();    topLayout->addLayout(inputLayout);    inputLayout->addWidget(new QLabel(tr("Size Hint:"), &dialog), 0, 0);    inputLayout->addWidget(new QLabel(tr("Min Size Hint:"), &dialog), 1, 0);    inputLayout->addWidget(new QLabel(tr("Max Size:"), &dialog), 2, 0);    inputLayout->addWidget(new QLabel(tr("Dockwgt Max Size:"), &dialog), 3, 0);    QSpinBox *szHintW = createSpinBox(szHint.width(), &dialog);    inputLayout->addWidget(szHintW, 0, 1);    QSpinBox *szHintH = createSpinBox(szHint.height(), &dialog);    inputLayout->addWidget(szHintH, 0, 2);    QSpinBox *minSzHintW = createSpinBox(minSzHint.width(), &dialog);    inputLayout->addWidget(minSzHintW, 1, 1);    QSpinBox *minSzHintH = createSpinBox(minSzHint.height(), &dialog);    inputLayout->addWidget(minSzHintH, 1, 2);    QSize maxSz = maximumSize();    QSpinBox *maxSzW = createSpinBox(maxSz.width(), &dialog, QWIDGETSIZE_MAX);    inputLayout->addWidget(maxSzW, 2, 1);    QSpinBox *maxSzH = createSpinBox(maxSz.height(), &dialog, QWIDGETSIZE_MAX);    inputLayout->addWidget(maxSzH, 2, 2);    QSize dwMaxSz = parentWidget()->maximumSize();    QSpinBox *dwMaxSzW = createSpinBox(dwMaxSz.width(), &dialog, QWIDGETSIZE_MAX);    inputLayout->addWidget(dwMaxSzW, 3, 1);    QSpinBox *dwMaxSzH = createSpinBox(dwMaxSz.height(), &dialog, QWIDGETSIZE_MAX);    inputLayout->addWidget(dwMaxSzH, 3, 2);    inputLayout->setColumnStretch(1, 1);    inputLayout->setColumnStretch(2, 1);    topLayout->addStretch();    QHBoxLayout *buttonBox = new QHBoxLayout();    topLayout->addLayout(buttonBox);    QPushButton *okButton = new QPushButton(tr("Ok"), &dialog);    QPushButton *cancelButton = new QPushButton(tr("Cancel"), &dialog);    connect(okButton, SIGNAL(clicked()), &dialog, SLOT(accept()));    connect(cancelButton, SIGNAL(clicked()), &dialog, SLOT(reject()));    buttonBox->addStretch();    buttonBox->addWidget(cancelButton);    buttonBox->addWidget(okButton);    if (!dialog.exec())        return;    szHint = QSize(szHintW->value(), szHintH->value());    minSzHint = QSize(minSzHintW->value(), minSzHintH->value());    maxSz = QSize(maxSzW->value(), maxSzH->value());    setMaximumSize(maxSz);    dwMaxSz = QSize(dwMaxSzW->value(), dwMaxSzH->value());    parentWidget()->setMaximumSize(dwMaxSz);    updateGeometry();    update();}void ColorDock::setCustomSizeHint(const QSize &size){    szHint = size;    updateGeometry();}ColorSwatch::ColorSwatch(const QString &colorName, QWidget *parent, Qt::WindowFlags flags)    : QDockWidget(parent, flags){    setObjectName(colorName + QLatin1String(" Dock Widget"));    setWindowTitle(objectName() + QLatin1String(" [*]"));    QFrame *swatch = new ColorDock(colorName, this);    swatch->setFrameStyle(QFrame::Box | QFrame::Sunken);    setWidget(swatch);    changeSizeHintsAction = new QAction(tr("Change Size Hints"), this);    connect(changeSizeHintsAction, SIGNAL(triggered()), swatch, SLOT(changeSizeHints()));    closableAction = new QAction(tr("Closable"), this);    closableAction->setCheckable(true);    connect(closableAction, SIGNAL(triggered(bool)), SLOT(changeClosable(bool)));    movableAction = new QAction(tr("Movable"), this);    movableAction->setCheckable(true);    connect(movableAction, SIGNAL(triggered(bool)), SLOT(changeMovable(bool)));    floatableAction = new QAction(tr("Floatable"), this);    floatableAction->setCheckable(true);    connect(floatableAction, SIGNAL(triggered(bool)), SLOT(changeFloatable(bool)));    verticalTitleBarAction = new QAction(tr("Vertical title bar"), this);    verticalTitleBarAction->setCheckable(true);    connect(verticalTitleBarAction, SIGNAL(triggered(bool)),            SLOT(changeVerticalTitleBar(bool)));    floatingAction = new QAction(tr("Floating"), this);    floatingAction->setCheckable(true);    connect(floatingAction, SIGNAL(triggered(bool)), SLOT(changeFloating(bool)));    allowedAreasActions = new QActionGroup(this);    allowedAreasActions->setExclusive(false);    allowLeftAction = new QAction(tr("Allow on Left"), this);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -