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:
Luboš Luňák 2003-12-15 15:18:10 +00:00
parent 7224e77a6b
commit 2197c646eb
2 changed files with 10 additions and 0 deletions

View file

@ -281,6 +281,11 @@ bool KDecoration::animateMinimize( bool )
return false;
}
bool KDecoration::windowDocked( Position side )
{
return false;
}
void KDecoration::helperShowHide( bool show )
{
bridge_->helperShowHide( show );

View file

@ -576,6 +576,11 @@ class KDecoration
* @see workspaceWidget(), geometry() and helperShowHide().
*/
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.
* It is usually invoked by calling KDecorationFactory::resetDecorations().