introduce KDecorationOptions::defaultTitleButtonsLeft() and KDecorationOptions::defaultTitleButtonsRight() so as to centralize this default
svn path=/trunk/KDE/kdebase/workspace/; revision=737205
This commit is contained in:
parent
2d1a7e1ea4
commit
003a0ea7d0
2 changed files with 18 additions and 1 deletions
|
@ -428,11 +428,21 @@ QString KDecorationOptions::titleButtonsLeft() const
|
||||||
return d->title_buttons_left;
|
return d->title_buttons_left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString KDecorationOptions::defaultTitleButtonsLeft()
|
||||||
|
{
|
||||||
|
return "MS"; //aseigo: proposed new default "AIS__HM";
|
||||||
|
}
|
||||||
|
|
||||||
QString KDecorationOptions::titleButtonsRight() const
|
QString KDecorationOptions::titleButtonsRight() const
|
||||||
{
|
{
|
||||||
return d->title_buttons_right;
|
return d->title_buttons_right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString KDecorationOptions::defaultTitleButtonsRight()
|
||||||
|
{
|
||||||
|
return "HIAX"; //aseigo: proposed new default "X"
|
||||||
|
}
|
||||||
|
|
||||||
bool KDecorationOptions::showTooltips() const
|
bool KDecorationOptions::showTooltips() const
|
||||||
{
|
{
|
||||||
return d->show_tooltips;
|
return d->show_tooltips;
|
||||||
|
|
|
@ -243,6 +243,10 @@ public:
|
||||||
* The changed flags for this setting is SettingButtons.
|
* The changed flags for this setting is SettingButtons.
|
||||||
*/
|
*/
|
||||||
QString titleButtonsLeft() const;
|
QString titleButtonsLeft() const;
|
||||||
|
/**
|
||||||
|
* Returns the default left button sequence
|
||||||
|
*/
|
||||||
|
static QString defaultTitleButtonsLeft();
|
||||||
/**
|
/**
|
||||||
* If customButtonPositions() returns true, titleButtonsRight
|
* If customButtonPositions() returns true, titleButtonsRight
|
||||||
* returns which buttons should be on the right side of the titlebar from left
|
* returns which buttons should be on the right side of the titlebar from left
|
||||||
|
@ -255,7 +259,10 @@ public:
|
||||||
* The changed flags for this setting is SettingButtons.
|
* The changed flags for this setting is SettingButtons.
|
||||||
*/
|
*/
|
||||||
QString titleButtonsRight() const;
|
QString titleButtonsRight() const;
|
||||||
|
/**
|
||||||
|
* Returns the default right button sequence.
|
||||||
|
*/
|
||||||
|
static QString defaultTitleButtonsRight();
|
||||||
/**
|
/**
|
||||||
* @returns true if the style should use tooltips for window buttons
|
* @returns true if the style should use tooltips for window buttons
|
||||||
* The changed flags for this setting is SettingTooltips.
|
* The changed flags for this setting is SettingTooltips.
|
||||||
|
|
Loading…
Reference in a new issue