Developer Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
QtColorChooserButton.cc
1 /*===========================================================================*\
2  * *
3  * OpenFlipper *
4  * Copyright (c) 2001-2015, RWTH-Aachen University *
5  * Department of Computer Graphics and Multimedia *
6  * All rights reserved. *
7  * www.openflipper.org *
8  * *
9  *---------------------------------------------------------------------------*
10  * This file is part of OpenFlipper. *
11  *---------------------------------------------------------------------------*
12  * *
13  * Redistribution and use in source and binary forms, with or without *
14  * modification, are permitted provided that the following conditions *
15  * are met: *
16  * *
17  * 1. Redistributions of source code must retain the above copyright notice, *
18  * this list of conditions and the following disclaimer. *
19  * *
20  * 2. Redistributions in binary form must reproduce the above copyright *
21  * notice, this list of conditions and the following disclaimer in the *
22  * documentation and/or other materials provided with the distribution. *
23  * *
24  * 3. Neither the name of the copyright holder nor the names of its *
25  * contributors may be used to endorse or promote products derived from *
26  * this software without specific prior written permission. *
27  * *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
31  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
32  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
33  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
34  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
35  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
36  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
37  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
38  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
39  * *
40 \*===========================================================================*/
41 
42 /*===========================================================================*\
43  * *
44  * $Revision$ *
45  * $Author$ *
46  * $Date$ *
47  * *
48 \*===========================================================================*/
49 
50 
51 /*
52  * ColorChooserButton.cc
53  *
54  * Created on: Sep 15, 2011
55  * Author: ebke
56  */
57 
58 #include "QtColorChooserButton.hh"
59 
60 #include <QStyleOption>
61 #include <QStylePainter>
62 #include <QColorDialog>
63 
64 #include <iostream>
65 
66 QtColorChooserButton::QtColorChooserButton(QWidget *parent) :
67  QPushButton(parent), color_(0xE0, 0x20, 0x20) {
68 
69  init();
70 }
71 QtColorChooserButton::QtColorChooserButton(const QString &text, QWidget *parent) :
72  QPushButton(text, parent), color_(0xE0, 0x20, 0x20) {
73 
74  init();
75 }
76 QtColorChooserButton::QtColorChooserButton(const QIcon& icon, const QString &text, QWidget *parent) :
77  QPushButton(icon, text, parent), color_(0xE0, 0x20, 0x20) {
78 
79  init();
80 }
81 
82 QtColorChooserButton::~QtColorChooserButton() {
83 }
84 
85 void QtColorChooserButton::init() {
86  connect(this, SIGNAL( clicked() ), this, SLOT( onClick() ) );
87 }
88 
89 void QtColorChooserButton::onClick() {
90  QColor newColor = QColorDialog::getColor(color_, this, "Pick Color", QColorDialog::ShowAlphaChannel);
91  if (newColor.isValid()) {
92  color_ = newColor;
93  emit colorChanged(color_);
94  }
95 }
96 
97 void QtColorChooserButton::paintEvent(QPaintEvent *ev) {
98  QStyleOptionButton buttonOptions;
99  initStyleOption(&buttonOptions);
100  QStylePainter painter(this);
101 
102  const int textWd = buttonOptions.fontMetrics.width(buttonOptions.text);
103  QRect textRect = buttonOptions.rect;
104  textRect.setWidth(std::min(textRect.width(), textWd));
105  painter.drawItemText(textRect, Qt::TextSingleLine | Qt::TextShowMnemonic | Qt::AlignVCenter,
106  this->palette(), this->isEnabled(), buttonOptions.text, QPalette::ButtonText);
107 
108  buttonOptions.rect.adjust(textWd, 0, 0, 0);
109  painter.drawControl(QStyle::CE_PushButtonBevel, buttonOptions);
110 
111  QRect colorRect = this->style()->subElementRect(QStyle::SE_PushButtonFocusRect, &buttonOptions, this);
112  QStyleOptionFrameV3 frameOptions;
113  frameOptions.state = QStyle::State_Sunken;
114  frameOptions.rect = colorRect;
115  frameOptions.features = QStyleOptionFrameV2::None;
116 
117  /*
118  * Draw checker board pattern.
119  */
120  if (this->isEnabled()) {
121  static const int checkerSize = 7;
122  static const QColor checkerColA(0xFF, 0xFF, 0xFF);
123  static const QColor checkerColB(0x30, 0x30, 0x30);
124  painter.setClipRect(colorRect, Qt::IntersectClip);
125  for (int x = 0; x < colorRect.width() / checkerSize + 1; ++x) {
126  for (int y = 0; y < colorRect.height() / checkerSize + 1; ++y) {
127  painter.fillRect(colorRect.x() + x * checkerSize, colorRect.y() + y * checkerSize,
128  checkerSize, checkerSize,
129  (x % 2 == y % 2) ? checkerColA : checkerColB);
130  }
131  }
132 
133  painter.fillRect(colorRect, color_);
134  }
135  painter.drawPrimitive(QStyle::PE_FrameButtonBevel, frameOptions);
136 }
Clear all attribute bits.
Definition: Attributes.hh:86