Web page updated.
[jspeed] / src / dropshadoweffect.cpp
1 /*
2  * This file is part of jSpeed.
3  *
4  * jSpeed is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * jSpeed is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #include <QtCore/QString>
20 #include <QtCore/QDebug>
21 #include <QtCore/QRectF>
22 #include <QtGui/QGraphicsDropShadowEffect>
23 #include <QtGui/QGraphicsItem>
24 #include "dropshadoweffect.h"
25 #include "graphicselement.h"
26
27 namespace
28 {
29     Effect::AttributeDetails ATTRIBUTES[DropshadowEffect::ATTRIBUTE_COUNT] =
30     {
31      {"radius", true},
32      {"color", false},
33      {"xoffset", true},
34      {"yoffset", true}
35     };
36 }
37
38 DropshadowEffect::DropshadowEffect(): Effect()
39 {
40     effect_ = new QGraphicsDropShadowEffect;
41 }
42
43 bool DropshadowEffect::setAttribute(QString const& name, QString const& value)
44 {
45     qreal realVal = 0;
46     int attrId = -1;
47
48     if((attrId = getAttribute(name, value, ATTRIBUTES, ATTRIBUTE_COUNT, realVal)) != -1)
49     {
50         Attribute attr = static_cast<Attribute>(attrId);
51
52         switch(attr)
53         {
54         case RADIUS:
55             effect_->setBlurRadius(realVal);
56             break;
57         case COLOR:
58             effect_->setColor(QColor(value));
59             break;
60         case XOFFSET:
61             effect_->setXOffset(realVal);
62             break;
63         case YOFFSET:
64             effect_->setYOffset(realVal);
65             break;
66         default:
67             qDebug() << "Unknown attribute: " << attr;
68             return false;
69         }
70
71         return true;
72     }
73     else
74     {
75         return false;
76     }
77 }
78
79 void DropshadowEffect::apply(GraphicsElement* item)
80 {
81     item->getElement()->setGraphicsEffect(effect_);
82 }