http://hugo-kde.blogspot.com.es/2013/08/some-news-from-oxygen-world.html#comment-form
https://bugs.kde.org/show_bug.cgi?id=188594
Hugo points out that there is no a visual representation idea for that. I suggest several visual representations here:
![]() |
Inverted gradient |
I really like this one. I think it is a hint which does not interfere with other visual hints.
![]() |
Mouse-over-like |
Mouse over-like
Using the mouse-over visuals to highlight the default button. A different color might be used, respect the mouse-over case.
![]() |
Tinted button |
Tint the button
This is what other styles, as polyester do. Also gnome's Cleanlooks and Murrine do like this. Sorry for my clumsy edition at Gimp, however the idea is clear
A la Motif
![]() |
A la Motif |
Workarounding/testing
As a matter of fact, this tint thing can be easily tested or workarounded using a proxy style:
class OxygenStylefix: public QProxyStyle
{
public:
OxygenStylefix(QStyle *baseStyle=0):QProxyStyle(baseStyle){
setObjectName("oxygen fix");
}
virtual void drawControl(QStyle::ControlElement element,
const QStyleOption *option,
QPainter *painter,
const QWidget *widget) const
{
if( element == QStyle::CE_PushButton &&
widget && option)
{
const QPushButton *pb = qobject_cast<const QPushButton*>(widget);
if( pb && pb->isDefault() )
{
const QStyleOptionButton * sob = (QStyleOptionButton *) option;
QStyleOptionButton option2(*sob);
const QColor & btn_color =
option2.palette.color(QPalette::Button);
const QColor & hig_color =
option2.palette.color(QPalette::Highlight);
// Blending parameters
const int f=90; // Percentage of button color to use
const int q=100-f;
QColor new_color(
(f*btn_color.red() +q*hig_color.red() )/100,
(f*btn_color.green()+q*hig_color.green())/100,
(f*btn_color.blue() +q*hig_color.blue() )/100,
255);
option2.palette.setColor(QPalette::Button,
new_color);
return QProxyStyle::drawControl(element,&option2,
painter,widget);
}
}
return QProxyStyle::drawControl(element,option,painter,widget);
}
};