modifying painter event in a LED class from solid color to Glowing color
-
Have a look at QPainterPath and QRadialgradient:
QPainterPath path; path.addEllipse(rectangle); QRadialGradient gradient(rectangle.center(), m_diameter, rectangle.center()); gradient.setColorAt(0, m_on_color); gradient.setColorAt(1, Qt::transparent); painter.fillPath(path,QBrush(gradient));
wrote on 31 Mar 2019, 05:21 last edited by VikramSamy@mpergand said in modifying painter event in a LED class from solid color to Glowing color:
Have a look at QPainterPath and QRadialgradient:
QPainterPath path; path.addEllipse(rectangle); QRadialGradient gradient(rectangle.center(), m_diameter, rectangle.center()); gradient.setColorAt(0, m_on_color); gradient.setColorAt(1, Qt::transparent); painter.fillPath(path,QBrush(gradient));
hi can help give some tips on how can i can integrate this into my code previously which i shared here, meaning i still use the rectangle which i built and this code suppose will add another layer on my rectangle..i try few ways to add your code but finally i just get the same solid colors which is used in my code... can u give some simple explanation on how use it and integrate it in my code... anyway timebeing il still on the process of trying it...
-
@jazzycamel your code can be directly used by any QT version, coz when i try to use it i can compile it, i get the below errors:-
S:\QTProjects\led_glow_v1\ledglow.cpp:42: error: 'RichMetal' is not a member of 'QGradient'
innerBezelGrad.setStops(QGradient(QGradient::RichMetal).stops());
^
S:\QTProjects\led_glow_v1\ledglow.cpp:35: error: 'RiskyConcrete' is not a member of 'QGradient'
outerBezelGrad.setStops(QGradient(QGradient::RiskyConcrete).stops());
^and i get few of this warning:-
S:\QTProjects\led_glow_v1\ledglow.h:15: warning: override controls (override/final) only available with -std=c++11 or -std=gnu++11
QSize minimumSizeHint() const override;
^
anyway i just trying it... see hopefully i can make it compile...wrote on 1 Apr 2019, 08:33 last edited by@VikramSamy
What version of Qt are you using?- If the named gradients aren't available in your Qt version then you can construct your own in the same way I do for the main colour as follows:
//outerBezelGrad.setStops(QGradient(QGradient::RiskyConcrete).stops()); outerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#c4c5c7")) << QGradientStop(0.52, QColor("#dcdddf")) << QGradientStop(1, QColor("#ebebeb")) ); ... //innerBezelGrad.setStops(QGradient(QGradient::RichMetal).stops()); innerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#d7d2cc")) << QGradientStop(1, QColor("#304352")) );
- You can either add
CONFIG += c++11
to your project (.pro) file or remove the wordoverride
from the header files to get rid of the warning.
Hope this helps ;o)
-
Have a look at QPainterPath and QRadialgradient:
QPainterPath path; path.addEllipse(rectangle); QRadialGradient gradient(rectangle.center(), m_diameter, rectangle.center()); gradient.setColorAt(0, m_on_color); gradient.setColorAt(1, Qt::transparent); painter.fillPath(path,QBrush(gradient));
wrote on 1 Apr 2019, 09:38 last edited by VikramSamy 4 Jan 2019, 09:52ok thanks, i managed to use the code u shared and integrated into my code...
the output is as follows:-and im wana continue to have a ring like smudge effect around the led as in this pic:-
i did find another code from google and trying to use it currently, but if u know any easier modifications to be made in your code that u shared to have this similar effects, hopefully u can modify it....
-
@VikramSamy
What version of Qt are you using?- If the named gradients aren't available in your Qt version then you can construct your own in the same way I do for the main colour as follows:
//outerBezelGrad.setStops(QGradient(QGradient::RiskyConcrete).stops()); outerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#c4c5c7")) << QGradientStop(0.52, QColor("#dcdddf")) << QGradientStop(1, QColor("#ebebeb")) ); ... //innerBezelGrad.setStops(QGradient(QGradient::RichMetal).stops()); innerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#d7d2cc")) << QGradientStop(1, QColor("#304352")) );
- You can either add
CONFIG += c++11
to your project (.pro) file or remove the wordoverride
from the header files to get rid of the warning.
Hope this helps ;o)
wrote on 1 Apr 2019, 09:51 last edited by@jazzycamel said in modifying painter event in a LED class from solid color to Glowing color:
@VikramSamy
What version of Qt are you using?- If the named gradients aren't available in your Qt version then you can construct your own in the same way I do for the main colour as follows:
//outerBezelGrad.setStops(QGradient(QGradient::RiskyConcrete).stops()); outerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#c4c5c7")) << QGradientStop(0.52, QColor("#dcdddf")) << QGradientStop(1, QColor("#ebebeb")) ); ... //innerBezelGrad.setStops(QGradient(QGradient::RichMetal).stops()); innerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#d7d2cc")) << QGradientStop(1, QColor("#304352")) );
- You can either add
CONFIG += c++11
to your project (.pro) file or remove the wordoverride
from the header files to get rid of the warning.
Hope this helps ;o)
im using this version:-
Qt Creator 3.5.1 (opensource)
Based on Qt 5.5.1 (MSVC 2013, 32 bit)ok thank you and il try to compile again...
-
@jazzycamel said in modifying painter event in a LED class from solid color to Glowing color:
@VikramSamy
What version of Qt are you using?- If the named gradients aren't available in your Qt version then you can construct your own in the same way I do for the main colour as follows:
//outerBezelGrad.setStops(QGradient(QGradient::RiskyConcrete).stops()); outerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#c4c5c7")) << QGradientStop(0.52, QColor("#dcdddf")) << QGradientStop(1, QColor("#ebebeb")) ); ... //innerBezelGrad.setStops(QGradient(QGradient::RichMetal).stops()); innerBezelGrad.setStops( QGradientStops() << QGradientStop(0, QColor("#d7d2cc")) << QGradientStop(1, QColor("#304352")) );
- You can either add
CONFIG += c++11
to your project (.pro) file or remove the wordoverride
from the header files to get rid of the warning.
Hope this helps ;o)
im using this version:-
Qt Creator 3.5.1 (opensource)
Based on Qt 5.5.1 (MSVC 2013, 32 bit)ok thank you and il try to compile again...
@VikramSamy said in modifying painter event in a LED class from solid color to Glowing color:
Qt Creator 3.5.1 (opensource)
Based on Qt 5.5.1 (MSVC 2013, 32 bit)This is the Qt version used to build QtCreator. Check your Kit to see which Qt version you're really using.
-
wrote on 1 Apr 2019, 12:46 last edited by mpergand 4 Jan 2019, 12:51
I think there's something wrong whith QRadialGradient.
With radial, the end stop color is wrong. (should be transparent like with Linear)
Code for Radial:QRadialGradient gradient1(rec.center(), rec.width()); gradient1.setColorAt(.0,Qt::red); gradient1.setColorAt(.9, Qt::transparent); painter.fillPath(path1,QBrush(gradient1));
Code for Linear:
QLinearGradient gradient2(rec.topRight(),rec.bottomRight()); gradient2.setColorAt(0, Qt::red); gradient2.setColorAt(.9, Qt::transparent); painter.fillPath(path1,QBrush(gradient2));
-
@VikramSamy said in modifying painter event in a LED class from solid color to Glowing color:
Qt Creator 3.5.1 (opensource)
Based on Qt 5.5.1 (MSVC 2013, 32 bit)This is the Qt version used to build QtCreator. Check your Kit to see which Qt version you're really using.
wrote on 2 Apr 2019, 03:21 last edited by@jsulm said in modifying painter event in a LED class from solid color to Glowing color:
@VikramSamy said in modifying painter event in a LED class from solid color to Glowing color:
Qt Creator 3.5.1 (opensource)
Based on Qt 5.5.1 (MSVC 2013, 32 bit)This is the Qt version used to build QtCreator. Check your Kit to see which Qt version you're really using.
the kit version is Desktop Qt 5.5.1 MinGw 32bits
-
I think there's something wrong whith QRadialGradient.
With radial, the end stop color is wrong. (should be transparent like with Linear)
Code for Radial:QRadialGradient gradient1(rec.center(), rec.width()); gradient1.setColorAt(.0,Qt::red); gradient1.setColorAt(.9, Qt::transparent); painter.fillPath(path1,QBrush(gradient1));
Code for Linear:
QLinearGradient gradient2(rec.topRight(),rec.bottomRight()); gradient2.setColorAt(0, Qt::red); gradient2.setColorAt(.9, Qt::transparent); painter.fillPath(path1,QBrush(gradient2));
wrote on 2 Apr 2019, 09:15 last edited by@mpergand said in modifying painter event in a LED class from solid color to Glowing color:
QRadialGradient gradient1(rec.center(), rec.width());
gradient1.setColorAt(.0,Qt::red);
gradient1.setColorAt(.9, Qt::transparent);
painter.fillPath(path1,QBrush(gradient1));There is nothing wrong with QRadialGradient, just the way you are using it. When you construct the QRadialGradient, the first argument is the center point and the second argument is the radius not the diameter you want. If you change your first line to the following you will get the effect you expect:
... QRadialGradient gradient1(rec.center(), rec.width()/2); ...
Hope this clears things up ;o)
-
@mpergand said in modifying painter event in a LED class from solid color to Glowing color:
QRadialGradient gradient1(rec.center(), rec.width());
gradient1.setColorAt(.0,Qt::red);
gradient1.setColorAt(.9, Qt::transparent);
painter.fillPath(path1,QBrush(gradient1));There is nothing wrong with QRadialGradient, just the way you are using it. When you construct the QRadialGradient, the first argument is the center point and the second argument is the radius not the diameter you want. If you change your first line to the following you will get the effect you expect:
... QRadialGradient gradient1(rec.center(), rec.width()/2); ...
Hope this clears things up ;o)
wrote on 2 Apr 2019, 09:30 last edited by@jazzycamel
I was convinced there's something obvious i missed :)
Thanks ! -
@mpergand said in modifying painter event in a LED class from solid color to Glowing color:
QRadialGradient gradient1(rec.center(), rec.width());
gradient1.setColorAt(.0,Qt::red);
gradient1.setColorAt(.9, Qt::transparent);
painter.fillPath(path1,QBrush(gradient1));There is nothing wrong with QRadialGradient, just the way you are using it. When you construct the QRadialGradient, the first argument is the center point and the second argument is the radius not the diameter you want. If you change your first line to the following you will get the effect you expect:
... QRadialGradient gradient1(rec.center(), rec.width()/2); ...
Hope this clears things up ;o)
wrote on 4 Apr 2019, 04:05 last edited by@jazzycamel said in modifying painter event in a LED class from solid color to Glowing color:
@mpergand said in modifying painter event in a LED class from solid color to Glowing color:
QRadialGradient gradient1(rec.center(), rec.width());
gradient1.setColorAt(.0,Qt::red);
gradient1.setColorAt(.9, Qt::transparent);
painter.fillPath(path1,QBrush(gradient1));There is nothing wrong with QRadialGradient, just the way you are using it. When you construct the QRadialGradient, the first argument is the center point and the second argument is the radius not the diameter you want. If you change your first line to the following you will get the effect you expect:
... QRadialGradient gradient1(rec.center(), rec.width()/2); ...
Hope this clears things up ;o)
yup got the effects....thanks...
14/14