Reserve one virtual function in the interface that I plan to use after 3.2.
svn path=/trunk/kdebase/kwin/; revision=273149
This commit is contained in:
parent
7224e77a6b
commit
2197c646eb
2 changed files with 10 additions and 0 deletions
|
@ -281,6 +281,11 @@ bool KDecoration::animateMinimize( bool )
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool KDecoration::windowDocked( Position side )
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void KDecoration::helperShowHide( bool show )
|
void KDecoration::helperShowHide( bool show )
|
||||||
{
|
{
|
||||||
bridge_->helperShowHide( show );
|
bridge_->helperShowHide( show );
|
||||||
|
|
|
@ -576,6 +576,11 @@ class KDecoration
|
||||||
* @see workspaceWidget(), geometry() and helperShowHide().
|
* @see workspaceWidget(), geometry() and helperShowHide().
|
||||||
*/
|
*/
|
||||||
virtual bool animateMinimize( bool minimize );
|
virtual bool animateMinimize( bool minimize );
|
||||||
|
/**
|
||||||
|
* @internal Reserved.
|
||||||
|
*/
|
||||||
|
// TODO position will need also values for top+left+bottom etc. docking ?
|
||||||
|
virtual bool windowDocked( Position side );
|
||||||
/**
|
/**
|
||||||
* This function is called to reset the decoration on settings changes.
|
* This function is called to reset the decoration on settings changes.
|
||||||
* It is usually invoked by calling KDecorationFactory::resetDecorations().
|
* It is usually invoked by calling KDecorationFactory::resetDecorations().
|
||||||
|
|
Loading…
Reference in a new issue