1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
/* This file is part of the KDE project
* Copyright (c) 2007 C. Boemann <cbo@boemann.dk>
* Copyright (C) 2007 Fredy Yanardi <fyanardi@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "KoColorPopupAction.h"
#include "KoColorSetWidget.h"
#include "KoTriangleColorSelector.h"
#include "KoColorSlider.h"
#include "KoCheckerBoardPainter.h"
#include "KoResourceServer.h"
#include "KoResourceServerProvider.h"
#include <KoColorSpaceRegistry.h>
#include <KoColor.h>
#include <WidgetsDebug.h>
#include <klocalizedstring.h>
#include <QPainter>
#include <QWidgetAction>
#include <QMenu>
#include <QHBoxLayout>
#include <QGridLayout>
#include <QToolButton>
class KoColorPopupAction::KoColorPopupActionPrivate
{
public:
KoColorPopupActionPrivate()
: colorSetWidget(0), colorChooser(0), opacitySlider(0), menu(0), checkerPainter(4)
, showFilter(true), applyMode(true), firstTime(true)
{}
~KoColorPopupActionPrivate()
{
delete colorSetWidget;
delete colorChooser;
delete opacitySlider;
delete menu;
}
KoColor currentColor;
KoColor buddyColor;
KoColorSetWidget *colorSetWidget;
KoTriangleColorSelector * colorChooser;
KoColorSlider * opacitySlider;
QMenu *menu;
KoCheckerBoardPainter checkerPainter;
bool showFilter;
bool applyMode;
bool firstTime;
};
KoColorPopupAction::KoColorPopupAction(QObject *parent)
: QAction(parent),
d(new KoColorPopupActionPrivate())
{
d->menu = new QMenu();
QWidget *widget = new QWidget(d->menu);
QWidgetAction *wdgAction = new QWidgetAction(d->menu);
d->colorSetWidget = new KoColorSetWidget(widget);
d->colorChooser = new KoTriangleColorSelector( widget );
// prevent mouse release on color selector from closing popup
d->colorChooser->setAttribute( Qt::WA_NoMousePropagation );
d->opacitySlider = new KoColorSlider( Qt::Vertical, widget );
d->opacitySlider->setFixedWidth(25);
d->opacitySlider->setRange(0, 255);
d->opacitySlider->setValue(255);
d->opacitySlider->setToolTip( i18n( "Opacity" ) );
QGridLayout * layout = new QGridLayout( widget );
layout->addWidget( d->colorSetWidget, 0, 0, 1, -1 );
layout->addWidget( d->colorChooser, 1, 0 );
layout->addWidget( d->opacitySlider, 1, 1 );
layout->setMargin(4);
wdgAction->setDefaultWidget(widget);
d->menu->addAction(wdgAction);
setMenu(d->menu);
new QHBoxLayout(d->menu);
d->menu->layout()->addWidget(widget);
d->menu->layout()->setMargin(0);
connect(this, SIGNAL(triggered()), this, SLOT(emitColorChanged()));
connect(d->colorSetWidget, SIGNAL(colorChanged(KoColor,bool)), this, SLOT(colorWasSelected(KoColor,bool)));
connect( d->colorChooser, SIGNAL(colorChanged(KoColor)),
this, SLOT(colorWasEdited(KoColor)) );
connect( d->opacitySlider, SIGNAL(valueChanged(int)),
this, SLOT(opacityWasChanged(int)));
}
KoColorPopupAction::~KoColorPopupAction()
{
delete d;
}
void KoColorPopupAction::setCurrentColor( const KoColor &color )
{
d->colorChooser->setColor( color );
KoColor minColor( color );
d->currentColor = minColor;
KoColor maxColor( color );
minColor.setOpacity( OPACITY_TRANSPARENT_U8 );
maxColor.setOpacity( OPACITY_OPAQUE_U8 );
d->opacitySlider->blockSignals( true );
d->opacitySlider->setColors( minColor, maxColor );
d->opacitySlider->setValue( color.opacityU8() );
d->opacitySlider->blockSignals( false );
updateIcon();
}
void KoColorPopupAction::setCurrentColor( const QColor &_color )
{
#ifndef NDEBUG
if (!_color.isValid()) {
warnWidgets << "Invalid color given, defaulting to black";
}
#endif
const QColor color(_color.isValid() ? _color : QColor(0,0,0,255));
setCurrentColor(KoColor(color, KoColorSpaceRegistry::instance()->rgb8() ));
}
QColor KoColorPopupAction::currentColor() const
{
return d->currentColor.toQColor();
}
KoColor KoColorPopupAction::currentKoColor() const
{
return d->currentColor;
}
void KoColorPopupAction::updateIcon()
{
QSize iconSize;
QToolButton *toolButton = dynamic_cast<QToolButton*>(parentWidget());
if (toolButton) {
iconSize = QSize(toolButton->iconSize());
} else {
iconSize = QSize(16, 16);
}
// This must be a QImage, as drawing to a QPixmap outside the
// UI thread will cause sporadic crashes.
QImage pm;
if (icon().isNull()) {
d->applyMode = false;
}
if(d->applyMode) {
pm = icon().pixmap(iconSize).toImage();
if (pm.isNull()) {
pm = QImage(iconSize, QImage::Format_ARGB32_Premultiplied);
pm.fill(Qt::transparent);
}
QPainter p(&pm);
p.fillRect(0, iconSize.height() - 4, iconSize.width(), 4, d->currentColor.toQColor());
p.end();
} else {
pm = QImage(iconSize, QImage::Format_ARGB32_Premultiplied);
pm.fill(Qt::transparent);
QPainter p(&pm);
d->checkerPainter.paint(p, QRect(QPoint(),iconSize));
p.fillRect(0, 0, iconSize.width(), iconSize.height(), d->currentColor.toQColor());
p.end();
}
setIcon(QIcon(QPixmap::fromImage(pm)));
}
void KoColorPopupAction::emitColorChanged()
{
emit colorChanged( d->currentColor );
}
void KoColorPopupAction::colorWasSelected(const KoColor &color, bool final)
{
d->currentColor = color;
if (final) {
menu()->hide();
emitColorChanged();
}
updateIcon();
}
void KoColorPopupAction::colorWasEdited( const KoColor &color )
{
d->currentColor = color;
quint8 opacity = d->opacitySlider->value();
d->currentColor.setOpacity( opacity );
KoColor minColor = d->currentColor;
minColor.setOpacity( OPACITY_TRANSPARENT_U8 );
KoColor maxColor = minColor;
maxColor.setOpacity( OPACITY_OPAQUE_U8 );
d->opacitySlider->setColors( minColor, maxColor );
emitColorChanged();
updateIcon();
}
void KoColorPopupAction::opacityWasChanged( int opacity )
{
d->currentColor.setOpacity( quint8(opacity) );
emitColorChanged();
}
void KoColorPopupAction::slotTriggered(bool)
{
if (d->firstTime) {
KoResourceServer<KoColorSet>* srv = KoResourceServerProvider::instance()->paletteServer(false);
QList<KoColorSet*> palettes = srv->resources();
if (!palettes.empty()) {
d->colorSetWidget->setColorSet(palettes.first());
}
d->firstTime = false;
}
}
|