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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/* ksim - a system monitor for kde
*
* Copyright (C) 2001 Robbie Ward <linuxphreak@gmx.co.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "label.h"
#include "label.moc"
#include <ksimconfig.h>
#include "themetypes.h"
#include <qpainter.h>
#include <qstyle.h>
#include <qstylesheet.h>
#include <qsimplerichtext.h>
#include <qcursor.h>
#include <qpixmap.h>
#include <qimage.h>
#include <themeloader.h>
#include <kdebug.h>
#include <kglobal.h>
#include <kglobalsettings.h>
#include <kconfig.h>
class KSim::Label::Private
{
public:
QColor mColour;
QColor sColour;
QRect loc;
QRect shad;
QString text;
QImage meterImage;
QPixmap background;
QPixmap sidePixmap;
bool showShadow;
};
KSim::Label::Label(QWidget *parent, const char *name, WFlags fl)
: QWidget(parent, name, fl)
{
initWidget(KSim::Types::None);
}
KSim::Label::Label(int type, QWidget *parent, const char *name,
WFlags fl) : QWidget(parent, name, fl)
{
initWidget(type);
}
KSim::Label::Label(int type, const QString &text, QWidget *parent,
const char *name, WFlags fl) : QWidget(parent, name, fl)
{
initWidget(type);
setText(text);
}
KSim::Label::~Label()
{
delete d;
}
const QString &KSim::Label::text() const
{
return d->text;
}
void KSim::Label::configureObject(bool repaintWidget)
{
QString image = themeLoader().current().meterPixmap(type(), false);
if (image.isEmpty())
image = themeLoader().current().panelPixmap(type());
d->meterImage.load(image);
KSim::ThemeLoader::self().reColourImage(d->meterImage);
d->background = d->meterImage.smoothScale(size());
QSize oldSize = sizeHint();
setConfigValues();
relayoutLabel(oldSize, repaintWidget);
}
void KSim::Label::setPixmap(const QPixmap &pixmap)
{
if (pixmap.serialNumber() == d->sidePixmap.serialNumber())
return;
QSize oldSize = sizeHint();
d->sidePixmap = pixmap;
relayoutLabel(oldSize);
}
const QPixmap &KSim::Label::pixmap() const
{
return d->sidePixmap;
}
QSize KSim::Label::sizeHint() const
{
int width = fontMetrics().size(SingleLine, text()).width();
if (!pixmap().isNull())
width += pixmap().width() + 5;
int height = fontMetrics().height() + 4;
if (!pixmap().isNull() && pixmap().height() > height)
height = pixmap().height();
return QSize(width, height);
}
QSize KSim::Label::minimumSizeHint() const
{
return sizeHint();
}
void KSim::Label::clear()
{
setText(QString::null);
}
void KSim::Label::setText(const QString &text)
{
if (text == d->text)
return; // If the text is the same, no need to repaint etc
QSize oldSize = sizeHint();
// set the text of our widget and repaint
d->text = text;
relayoutLabel(oldSize);
}
void KSim::Label::extraTypeCall()
{
d->meterImage.load(themeLoader().current().meterPixmap(type()));
setConfigValues();
}
void KSim::Label::setShowShadow(bool show)
{
d->showShadow = show;
}
bool KSim::Label::showShadow() const
{
return d->showShadow;
}
void KSim::Label::setTextColour(const QColor &color)
{
d->mColour = color;
}
const QColor &KSim::Label::textColour() const
{
return d->mColour;
}
void KSim::Label::setShadowColour(const QColor &color)
{
d->sColour = color;
}
const QColor &KSim::Label::shadowColour() const
{
return d->sColour;
}
void KSim::Label::setConfigValues()
{
QFont newFont = font();
bool repaint = themeLoader().current().fontColours(this,
newFont, d->mColour, d->sColour, d->showShadow);
if (font() != newFont)
setFont(newFont);
if (repaint)
update();
}
void KSim::Label::paintEvent(QPaintEvent *)
{
QPainter painter;
painter.begin(this);
// paint our background pixmap onto the widget
painter.drawPixmap(0, 0, d->background);
drawPixmap(&painter, d->loc, pixmap());
if (d->showShadow) { // draw the shadow text on the image
drawText(&painter, d->shad, d->sColour, d->text);
}
// draw the label text onto the widget
painter.setPen(d->mColour);
drawText(&painter, d->loc, d->mColour, d->text);
painter.end();
}
void KSim::Label::resizeEvent(QResizeEvent *ev)
{
// set the location of where the shadow'ed text will be drawn
d->shad.setWidth(ev->size().width() + 3);
d->shad.setHeight(ev->size().height() + 3);
// set the location of where the text will be drawn
d->loc.setWidth(ev->size().width());
d->loc.setHeight(ev->size().height());
d->background = d->meterImage.smoothScale(ev->size());
}
void KSim::Label::drawText(QPainter *painter, const QRect &rect,
const QColor &color, const QString &text)
{
QRect location(rect);
if (!pixmap().isNull())
location.setX(pixmap().width() + 5);
style().drawItem(painter, location, AlignCenter, colorGroup(), true,
0, text, -1, &color);
}
void KSim::Label::drawPixmap(QPainter *painter, const QRect &rect,
const QPixmap &pixmap)
{
QRect location(rect);
location.setWidth(pixmap.width());
style().drawItem(painter, location, AlignCenter, colorGroup(), true,
pixmap.isNull() ? 0 : &pixmap, QString::null);
}
void KSim::Label::setTextLocation(const QRect &rect)
{
d->loc = rect;
}
const QRect &KSim::Label::textLocation() const
{
return d->loc;
}
void KSim::Label::setShadowLocation(const QRect &rect)
{
d->shad = rect;
}
const QRect &KSim::Label::shadowLocation() const
{
return d->shad;
}
void KSim::Label::setThemePixmap(const QString &image)
{
QSize oldSize = sizeHint();
d->meterImage.reset();
d->meterImage.load(image);
KSim::ThemeLoader::self().reColourImage(d->meterImage);
d->background = d->meterImage.smoothScale(size());
relayoutLabel(oldSize);
}
void KSim::Label::relayoutLabel(const QSize &old, bool repaint)
{
if (sizeHint() != old) {
updateGeometry();
}
if (repaint)
update();
}
void KSim::Label::initWidget(int type)
{
d = new Private;
setType(type);
setConfigString("StyleMeter");
// try to reduce flicker as much as possible
setBackgroundMode(NoBackground);
setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,
QSizePolicy::Fixed));
configureObject();
}
|