Add BoxSwitch effect: a tabbox replacement. It's still rough, but works reasonably well.
svn path=/branches/work/kwin_composite/; revision=640630
This commit is contained in:
parent
ce89ed0716
commit
6f122ecd3e
2 changed files with 3 additions and 0 deletions
|
@ -74,6 +74,7 @@ set(kwin_KDEINIT_SRCS
|
|||
effects/presentwindows.cpp
|
||||
effects/minimizeanimation.cpp
|
||||
effects/desktopchangeslide.cpp
|
||||
effects/boxswitch.cpp
|
||||
effects/test_input.cpp
|
||||
effects/test_thumbnail.cpp
|
||||
)
|
||||
|
|
|
@ -15,6 +15,7 @@ License. See the file "COPYING" for the exact licensing terms.
|
|||
#include "scene.h"
|
||||
#include "options.h"
|
||||
|
||||
#include "effects/boxswitch.h"
|
||||
#include "effects/desktopchangeslide.h"
|
||||
#include "effects/dialogparent.h"
|
||||
#include "effects/fade.h"
|
||||
|
@ -190,6 +191,7 @@ EffectsHandler::EffectsHandler()
|
|||
registerEffect("ScaleIn", new GenericEffectFactory<ScaleInEffect>);
|
||||
registerEffect("DialogParent", new GenericEffectFactory<DialogParentEffect>);
|
||||
registerEffect("DesktopChangeSlide", new GenericEffectFactory<DesktopChangeSlideEffect>);
|
||||
registerEffect("BoxSwitch", new GenericEffectFactory<BoxSwitchEffect>);
|
||||
|
||||
registerEffect("TestInput", new GenericEffectFactory<TestInputEffect>);
|
||||
registerEffect("TestThumbnail", new GenericEffectFactory<TestThumbnailEffect>);
|
||||
|
|
Loading…
Reference in a new issue