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