[2] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[561] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
[2] | 6 | **
|
---|
| 7 | ** This file is part of the demonstration applications of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
[561] | 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
[2] | 27 | **
|
---|
| 28 | ** GNU General Public License Usage
|
---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 32 | ** packaging of this file. Please review the following information to
|
---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
| 35 | **
|
---|
[561] | 36 | ** If you have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
[2] | 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | #include "headingitem.h"
|
---|
| 43 | #include "colors.h"
|
---|
| 44 |
|
---|
| 45 | HeadingItem::HeadingItem(const QString &text, QGraphicsScene *scene, QGraphicsItem *parent)
|
---|
| 46 | : DemoItem(scene, parent)
|
---|
| 47 | {
|
---|
| 48 | this->text = text;
|
---|
| 49 | this->noSubPixeling = true;
|
---|
| 50 | }
|
---|
| 51 |
|
---|
| 52 | QImage *HeadingItem::createImage(const QMatrix &matrix) const
|
---|
| 53 | {
|
---|
| 54 | float sx = qMin(matrix.m11(), matrix.m22());
|
---|
| 55 | float sy = matrix.m22() < sx ? sx : matrix.m22();
|
---|
| 56 | QFontMetrics fm(Colors::headingFont());
|
---|
| 57 |
|
---|
| 58 | float w = fm.width(this->text) + 1;
|
---|
| 59 | float h = fm.height();
|
---|
| 60 | float xShadow = 3.0f;
|
---|
| 61 | float yShadow = 3.0f;
|
---|
| 62 |
|
---|
| 63 | QImage *image = new QImage(int((w + xShadow) * sx), int((h + yShadow) * sy), QImage::Format_ARGB32_Premultiplied);
|
---|
| 64 | image->fill(QColor(0, 0, 0, 0).rgba());
|
---|
| 65 | QPainter painter(image);
|
---|
| 66 | painter.setFont(Colors::headingFont());
|
---|
| 67 | painter.scale(sx, sy);
|
---|
| 68 |
|
---|
| 69 | //draw shadow
|
---|
| 70 | QLinearGradient brush_shadow(xShadow, yShadow, w, yShadow);
|
---|
| 71 | brush_shadow.setSpread(QLinearGradient::PadSpread);
|
---|
| 72 | if (Colors::useEightBitPalette)
|
---|
| 73 | brush_shadow.setColorAt(0.0f, QColor(0, 0, 0));
|
---|
| 74 | else
|
---|
| 75 | brush_shadow.setColorAt(0.0f, QColor(0, 0, 0, 100));
|
---|
| 76 | QPen pen_shadow;
|
---|
| 77 | pen_shadow.setBrush(brush_shadow);
|
---|
| 78 | painter.setPen(pen_shadow);
|
---|
| 79 | painter.drawText(int(xShadow), int(yShadow), int(w), int(h), Qt::AlignLeft, this->text);
|
---|
| 80 |
|
---|
| 81 | // draw text
|
---|
| 82 | QLinearGradient brush_text(0, 0, w, w);
|
---|
| 83 | brush_text.setSpread(QLinearGradient::PadSpread);
|
---|
| 84 | brush_text.setColorAt(0.0f, QColor(255, 255, 255));
|
---|
| 85 | brush_text.setColorAt(0.2f, QColor(255, 255, 255));
|
---|
| 86 | brush_text.setColorAt(0.5f, QColor(190, 190, 190));
|
---|
| 87 | QPen pen_text;
|
---|
| 88 | pen_text.setBrush(brush_text);
|
---|
| 89 | painter.setPen(pen_text);
|
---|
| 90 | painter.drawText(0, 0, int(w), int(h), Qt::AlignLeft, this->text);
|
---|
| 91 | return image;
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 |
|
---|
| 95 | void HeadingItem::animationStarted(int)
|
---|
| 96 | {
|
---|
| 97 | this->noSubPixeling = false;
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 |
|
---|
| 101 | void HeadingItem::animationStopped(int)
|
---|
| 102 | {
|
---|
| 103 | this->noSubPixeling = true;
|
---|
| 104 | }
|
---|