Changed media player to initialize in boot.
[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 #include "graphicselement.h"
25
26 namespace
27 {
28     Effect::AttributeDetails ATTRIBUTES[BlurEffect::ATTRIBUTE_COUNT] =
29     {
30      {"radius", true}
31     };
32 }
33
34 BlurEffect::BlurEffect(): Effect()
35 {
36     effect_ = new QGraphicsBlurEffect;
37 }
38
39 bool BlurEffect::setAttribute(QString const& name, QString const& value)
40 {
41     qreal realVal = 0;
42     int attrId = -1;
43
44     if((attrId = getAttribute(name, value, ATTRIBUTES, ATTRIBUTE_COUNT, realVal)) != -1)
45     {
46         Attribute attr = static_cast<Attribute>(attrId);
47
48         switch(attr)
49         {
50         case RADIUS:
51             effect_->setBlurRadius(realVal);
52             break;
53         default:
54             qDebug() << "Unknown attribute: " << attr;
55             return false;
56         }
57
58         return true;
59     }
60     else
61     {
62         return false;
63     }
64 }
65
66 void BlurEffect::apply(GraphicsElement* item)
67 {
68     item->getElement()->setGraphicsEffect(effect_);
69 }