These options are not used anymore.
svn path=/trunk/kdebase/kwin/; revision=273142
This commit is contained in:
parent
b2b86e00e9
commit
92390e6d86
2 changed files with 0 additions and 30 deletions
12
options.cpp
12
options.cpp
|
@ -148,8 +148,6 @@ unsigned long Options::updateSettings()
|
||||||
// "EffectNoTooltip" setting from kdeglobals.
|
// "EffectNoTooltip" setting from kdeglobals.
|
||||||
KConfig globalConfig("kdeglobals");
|
KConfig globalConfig("kdeglobals");
|
||||||
globalConfig.setGroup("KDE");
|
globalConfig.setGroup("KDE");
|
||||||
fade_tooltips = globalConfig.readBoolEntry("EffectFadeTooltip", false);
|
|
||||||
animate_tooltips = globalConfig.readBoolEntry("EffectAnimateTooltip", false);
|
|
||||||
topmenus = globalConfig.readBoolEntry( "macStyle", false );
|
topmenus = globalConfig.readBoolEntry( "macStyle", false );
|
||||||
|
|
||||||
KConfig kdesktopcfg( "kdesktoprc", true );
|
KConfig kdesktopcfg( "kdesktoprc", true );
|
||||||
|
@ -222,16 +220,6 @@ bool Options::showGeometryTip()
|
||||||
return show_geometry_tip;
|
return show_geometry_tip;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Options::fadeTooltips()
|
|
||||||
{
|
|
||||||
return fade_tooltips;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Options::animateTooltips()
|
|
||||||
{
|
|
||||||
return animate_tooltips;
|
|
||||||
}
|
|
||||||
|
|
||||||
int Options::electricBorders()
|
int Options::electricBorders()
|
||||||
{
|
{
|
||||||
return electric_borders;
|
return electric_borders;
|
||||||
|
|
18
options.h
18
options.h
|
@ -226,22 +226,6 @@ class Options : public KDecorationOptions
|
||||||
*/
|
*/
|
||||||
bool showGeometryTip();
|
bool showGeometryTip();
|
||||||
|
|
||||||
/**
|
|
||||||
* @returns true if window button tooltips should use a fade-in effect
|
|
||||||
* @see #animateTooltips
|
|
||||||
* @see #showTooltips
|
|
||||||
*/
|
|
||||||
bool fadeTooltips(); // FRAME tohle asi muze jit
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @returns true if window button tooltips should use an animated effect.
|
|
||||||
* When this is true, tooltips should use a animated scroll effect. If
|
|
||||||
* fadeToolTips is also true, tooltips should be faded-in instead.
|
|
||||||
* @see #fadeTooltips
|
|
||||||
* @see #showTooltips
|
|
||||||
*/
|
|
||||||
bool animateTooltips();
|
|
||||||
|
|
||||||
enum { ElectricDisabled = 0, ElectricMoveOnly = 1, ElectricAlways = 2 };
|
enum { ElectricDisabled = 0, ElectricMoveOnly = 1, ElectricAlways = 2 };
|
||||||
/**
|
/**
|
||||||
* @returns true if electric borders are enabled. With electric borders
|
* @returns true if electric borders are enabled. With electric borders
|
||||||
|
@ -276,8 +260,6 @@ class Options : public KDecorationOptions
|
||||||
MouseCommand CmdAll3;
|
MouseCommand CmdAll3;
|
||||||
uint CmdAllModKey;
|
uint CmdAllModKey;
|
||||||
|
|
||||||
bool fade_tooltips;
|
|
||||||
bool animate_tooltips;
|
|
||||||
int electric_borders;
|
int electric_borders;
|
||||||
int electric_border_delay;
|
int electric_border_delay;
|
||||||
bool show_geometry_tip;
|
bool show_geometry_tip;
|
||||||
|
|
Loading…
Reference in a new issue