source: trunk/src/declarative/graphicsitems/qdeclarativescalegrid.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: 6.0 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 QtDeclarative module 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**
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.
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**
36** If you have questions regarding the use of this file, please contact
37** Nokia at qt-info@nokia.com.
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "private/qdeclarativescalegrid_p_p.h"
43
44#include <qdeclarative.h>
45
46#include <QBuffer>
47#include <QDebug>
48
49QT_BEGIN_NAMESPACE
50/*!
51 \internal
52 \class QDeclarativeScaleGrid
53 \brief The QDeclarativeScaleGrid class allows you to specify a 3x3 grid to use in scaling an image.
54*/
55
56QDeclarativeScaleGrid::QDeclarativeScaleGrid(QObject *parent) : QObject(parent), _left(0), _top(0), _right(0), _bottom(0)
57{
58}
59
60QDeclarativeScaleGrid::~QDeclarativeScaleGrid()
61{
62}
63
64bool QDeclarativeScaleGrid::isNull() const
65{
66 return !_left && !_top && !_right && !_bottom;
67}
68
69void QDeclarativeScaleGrid::setLeft(int pos)
70{
71 if (_left != pos) {
72 _left = pos;
73 emit borderChanged();
74 }
75}
76
77void QDeclarativeScaleGrid::setTop(int pos)
78{
79 if (_top != pos) {
80 _top = pos;
81 emit borderChanged();
82 }
83}
84
85void QDeclarativeScaleGrid::setRight(int pos)
86{
87 if (_right != pos) {
88 _right = pos;
89 emit borderChanged();
90 }
91}
92
93void QDeclarativeScaleGrid::setBottom(int pos)
94{
95 if (_bottom != pos) {
96 _bottom = pos;
97 emit borderChanged();
98 }
99}
100
101QDeclarativeGridScaledImage::QDeclarativeGridScaledImage()
102: _l(-1), _r(-1), _t(-1), _b(-1),
103 _h(QDeclarativeBorderImage::Stretch), _v(QDeclarativeBorderImage::Stretch)
104{
105}
106
107QDeclarativeGridScaledImage::QDeclarativeGridScaledImage(const QDeclarativeGridScaledImage &o)
108: _l(o._l), _r(o._r), _t(o._t), _b(o._b), _h(o._h), _v(o._v), _pix(o._pix)
109{
110}
111
112QDeclarativeGridScaledImage &QDeclarativeGridScaledImage::operator=(const QDeclarativeGridScaledImage &o)
113{
114 _l = o._l;
115 _r = o._r;
116 _t = o._t;
117 _b = o._b;
118 _h = o._h;
119 _v = o._v;
120 _pix = o._pix;
121 return *this;
122}
123
124QDeclarativeGridScaledImage::QDeclarativeGridScaledImage(QIODevice *data)
125: _l(-1), _r(-1), _t(-1), _b(-1), _h(QDeclarativeBorderImage::Stretch), _v(QDeclarativeBorderImage::Stretch)
126{
127 int l = -1;
128 int r = -1;
129 int t = -1;
130 int b = -1;
131 QString imgFile;
132
133 QByteArray raw;
134 while(raw = data->readLine(), !raw.isEmpty()) {
135 QString line = QString::fromUtf8(raw.trimmed());
136 if (line.isEmpty() || line.startsWith(QLatin1Char('#')))
137 continue;
138
139 int colonId = line.indexOf(QLatin1Char(':'));
140 if (colonId <= 0)
141 return;
142 QStringList list;
143 list.append(line.left(colonId).trimmed());
144 list.append(line.mid(colonId+1).trimmed());
145
146 if (list[0] == QLatin1String("border.left"))
147 l = list[1].toInt();
148 else if (list[0] == QLatin1String("border.right"))
149 r = list[1].toInt();
150 else if (list[0] == QLatin1String("border.top"))
151 t = list[1].toInt();
152 else if (list[0] == QLatin1String("border.bottom"))
153 b = list[1].toInt();
154 else if (list[0] == QLatin1String("source"))
155 imgFile = list[1];
156 else if (list[0] == QLatin1String("horizontalTileRule"))
157 _h = stringToRule(list[1]);
158 else if (list[0] == QLatin1String("verticalTileRule"))
159 _v = stringToRule(list[1]);
160 }
161
162 if (l < 0 || r < 0 || t < 0 || b < 0 || imgFile.isEmpty())
163 return;
164
165 _l = l; _r = r; _t = t; _b = b;
166
167 _pix = imgFile;
168}
169
170QDeclarativeBorderImage::TileMode QDeclarativeGridScaledImage::stringToRule(const QString &s)
171{
172 if (s == QLatin1String("Stretch"))
173 return QDeclarativeBorderImage::Stretch;
174 if (s == QLatin1String("Repeat"))
175 return QDeclarativeBorderImage::Repeat;
176 if (s == QLatin1String("Round"))
177 return QDeclarativeBorderImage::Round;
178
179 qWarning("QDeclarativeGridScaledImage: Invalid tile rule specified. Using Stretch.");
180 return QDeclarativeBorderImage::Stretch;
181}
182
183bool QDeclarativeGridScaledImage::isValid() const
184{
185 return _l >= 0;
186}
187
188int QDeclarativeGridScaledImage::gridLeft() const
189{
190 return _l;
191}
192
193int QDeclarativeGridScaledImage::gridRight() const
194{
195 return _r;
196}
197
198int QDeclarativeGridScaledImage::gridTop() const
199{
200 return _t;
201}
202
203int QDeclarativeGridScaledImage::gridBottom() const
204{
205 return _b;
206}
207
208QString QDeclarativeGridScaledImage::pixmapUrl() const
209{
210 return _pix;
211}
212
213QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.