Added some effects to graphics elements and changed default theme a bit.
[jspeed] / src / blureffect.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 <QtGui/QGraphicsBlurEffect>
22 #include <QtGui/QGraphicsItem>
23 #include "blureffect.h"
24
25 namespace
26 {
27     Effect::AttributeDetails ATTRIBUTES[BlurEffect::ATTRIBUTE_COUNT] =
28     {
29      {"radius", true}
30     };
31 }
32
33 BlurEffect::BlurEffect(): Effect()
34 {
35     effect_ = new QGraphicsBlurEffect;
36 }
37
38 bool BlurEffect::setAttribute(QString const& name, QString const& value)
39 {
40     qreal realVal = 0;
41     int attrId = -1;
42
43     if((attrId = getAttribute(name, value, ATTRIBUTES, ATTRIBUTE_COUNT, realVal)) != -1)
44     {
45         Attribute attr = static_cast<Attribute>(attrId);
46
47         switch(attr)
48         {
49         case RADIUS:
50             effect_->setBlurRadius(realVal);
51             break;
52         default:
53             qDebug() << "Unknown attribute: " << attr;
54             return false;
55         }
56
57         return true;
58     }
59     else
60     {
61         return false;
62     }
63 }
64
65 void BlurEffect::apply(QGraphicsItem* item)
66 {
67     item->setGraphicsEffect(effect_);
68 }