source: trunk/examples/widgets/charactermap/characterwidget.cpp@ 1147

Last change on this file since 1147 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.8 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation (qt-info@nokia.com)
6**
7** This file is part of the examples of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:BSD$
10** You may use this file under the terms of the BSD license as follows:
11**
12** "Redistribution and use in source and binary forms, with or without
13** modification, are permitted provided that the following conditions are
14** met:
15** * Redistributions of source code must retain the above copyright
16** notice, this list of conditions and the following disclaimer.
17** * Redistributions in binary form must reproduce the above copyright
18** notice, this list of conditions and the following disclaimer in
19** the documentation and/or other materials provided with the
20** distribution.
21** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22** the names of its contributors may be used to endorse or promote
23** products derived from this software without specific prior written
24** permission.
25**
26** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37** $QT_END_LICENSE$
38**
39****************************************************************************/
40
41#include <QtGui>
42
43#include "characterwidget.h"
44
45//! [0]
46CharacterWidget::CharacterWidget(QWidget *parent)
47 : QWidget(parent)
48{
49 squareSize = 24;
50 columns = 16;
51 lastKey = -1;
52 setMouseTracking(true);
53}
54//! [0]
55
56//! [1]
57void CharacterWidget::updateFont(const QFont &font)
58{
59 displayFont.setFamily(font.family());
60 squareSize = qMax(24, QFontMetrics(displayFont).xHeight() * 3);
61 adjustSize();
62 update();
63}
64//! [1]
65
66//! [2]
67void CharacterWidget::updateSize(const QString &fontSize)
68{
69 displayFont.setPointSize(fontSize.toInt());
70 squareSize = qMax(24, QFontMetrics(displayFont).xHeight() * 3);
71 adjustSize();
72 update();
73}
74//! [2]
75
76void CharacterWidget::updateStyle(const QString &fontStyle)
77{
78 QFontDatabase fontDatabase;
79 const QFont::StyleStrategy oldStrategy = displayFont.styleStrategy();
80 displayFont = fontDatabase.font(displayFont.family(), fontStyle, displayFont.pointSize());
81 displayFont.setStyleStrategy(oldStrategy);
82 squareSize = qMax(24, QFontMetrics(displayFont).xHeight() * 3);
83 adjustSize();
84 update();
85}
86
87void CharacterWidget::updateFontMerging(bool enable)
88{
89 if (enable)
90 displayFont.setStyleStrategy(QFont::PreferDefault);
91 else
92 displayFont.setStyleStrategy(QFont::NoFontMerging);
93 adjustSize();
94 update();
95}
96
97//! [3]
98QSize CharacterWidget::sizeHint() const
99{
100 return QSize(columns*squareSize, (65536/columns)*squareSize);
101}
102//! [3]
103
104//! [4]
105void CharacterWidget::mouseMoveEvent(QMouseEvent *event)
106{
107 QPoint widgetPosition = mapFromGlobal(event->globalPos());
108 uint key = (widgetPosition.y()/squareSize)*columns + widgetPosition.x()/squareSize;
109
110 QString text = QString::fromLatin1("<p>Character: <span style=\"font-size: 24pt; font-family: %1\">").arg(displayFont.family())
111 + QChar(key)
112 + QString::fromLatin1("</span><p>Value: 0x")
113 + QString::number(key, 16);
114 QToolTip::showText(event->globalPos(), text, this);
115}
116//! [4]
117
118//! [5]
119void CharacterWidget::mousePressEvent(QMouseEvent *event)
120{
121 if (event->button() == Qt::LeftButton) {
122 lastKey = (event->y()/squareSize)*columns + event->x()/squareSize;
123 if (QChar(lastKey).category() != QChar::NoCategory)
124 emit characterSelected(QString(QChar(lastKey)));
125 update();
126 }
127 else
128 QWidget::mousePressEvent(event);
129}
130//! [5]
131
132//! [6]
133void CharacterWidget::paintEvent(QPaintEvent *event)
134{
135 QPainter painter(this);
136 painter.fillRect(event->rect(), QBrush(Qt::white));
137 painter.setFont(displayFont);
138//! [6]
139
140//! [7]
141 QRect redrawRect = event->rect();
142 int beginRow = redrawRect.top()/squareSize;
143 int endRow = redrawRect.bottom()/squareSize;
144 int beginColumn = redrawRect.left()/squareSize;
145 int endColumn = redrawRect.right()/squareSize;
146//! [7]
147
148//! [8]
149 painter.setPen(QPen(Qt::gray));
150 for (int row = beginRow; row <= endRow; ++row) {
151 for (int column = beginColumn; column <= endColumn; ++column) {
152 painter.drawRect(column*squareSize, row*squareSize, squareSize, squareSize);
153 }
154//! [8] //! [9]
155 }
156//! [9]
157
158//! [10]
159 QFontMetrics fontMetrics(displayFont);
160 painter.setPen(QPen(Qt::black));
161 for (int row = beginRow; row <= endRow; ++row) {
162
163 for (int column = beginColumn; column <= endColumn; ++column) {
164
165 int key = row*columns + column;
166 painter.setClipRect(column*squareSize, row*squareSize, squareSize, squareSize);
167
168 if (key == lastKey)
169 painter.fillRect(column*squareSize + 1, row*squareSize + 1, squareSize, squareSize, QBrush(Qt::red));
170
171 painter.drawText(column*squareSize + (squareSize / 2) - fontMetrics.width(QChar(key))/2,
172 row*squareSize + 4 + fontMetrics.ascent(),
173 QString(QChar(key)));
174 }
175 }
176}
177//! [10]
Note: See TracBrowser for help on using the repository browser.