From 6f122ecd3e27b6af487c863f9444bc8bd6fa60c4 Mon Sep 17 00:00:00 2001 From: Philip Falkner Date: Thu, 8 Mar 2007 16:52:09 +0000 Subject: [PATCH] Add BoxSwitch effect: a tabbox replacement. It's still rough, but works reasonably well. svn path=/branches/work/kwin_composite/; revision=640630 --- CMakeLists.txt | 1 + effects.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8790e28efa..30e31eb031 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 ) diff --git a/effects.cpp b/effects.cpp index fa59878734..ce3a940b1e 100644 --- a/effects.cpp +++ b/effects.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); registerEffect("DialogParent", new GenericEffectFactory); registerEffect("DesktopChangeSlide", new GenericEffectFactory); + registerEffect("BoxSwitch", new GenericEffectFactory); registerEffect("TestInput", new GenericEffectFactory); registerEffect("TestThumbnail", new GenericEffectFactory);