2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-09-20 17:48:27 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2007 Bernhard Loos <nhuh.put@web.de>
|
2007-11-13 16:20:52 +00:00
|
|
|
Copyright (C) 2007 Christian Nitschkowski <christian.nitschkowski@kdemail.net>
|
2009-02-05 15:35:38 +00:00
|
|
|
Copyright (C) 2009 Lucas Murray <lmurray@undefinedfire.com>
|
2007-09-20 17:48:27 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-09-20 17:48:27 +00:00
|
|
|
|
2007-12-17 14:14:53 +00:00
|
|
|
#include <kwinconfig.h>
|
2007-11-13 16:20:52 +00:00
|
|
|
|
2010-07-23 19:52:20 +00:00
|
|
|
#include "dashboard/dashboard_config.h"
|
2009-02-05 15:35:38 +00:00
|
|
|
#include "desktopgrid/desktopgrid_config.h"
|
|
|
|
#include "diminactive/diminactive_config.h"
|
|
|
|
#include "magiclamp/magiclamp_config.h"
|
|
|
|
#include "presentwindows/presentwindows_config.h"
|
2010-12-18 09:25:41 +00:00
|
|
|
#include "resize/resize_config.h"
|
2011-01-06 10:58:03 +00:00
|
|
|
#include "showfps/showfps_config.h"
|
2010-12-04 11:32:50 +00:00
|
|
|
#include "thumbnailaside/thumbnailaside_config.h"
|
2011-02-06 15:36:16 +00:00
|
|
|
#include "windowgeometry/windowgeometry_config.h"
|
2010-12-18 09:25:41 +00:00
|
|
|
#include "zoom/zoom_config.h"
|
2010-12-04 11:32:50 +00:00
|
|
|
|
2011-01-08 18:56:22 +00:00
|
|
|
#include "blur/blur_config.h"
|
2010-12-18 09:25:41 +00:00
|
|
|
#include "coverswitch/coverswitch_config.h"
|
2010-12-18 09:18:54 +00:00
|
|
|
#include "cube/cube_config.h"
|
|
|
|
#include "cube/cubeslide_config.h"
|
2009-02-05 15:35:38 +00:00
|
|
|
#include "flipswitch/flipswitch_config.h"
|
2010-05-11 18:45:39 +00:00
|
|
|
#include "glide/glide_config.h"
|
2011-02-01 19:13:26 +00:00
|
|
|
#include "invert/invert_config.h"
|
2011-01-06 16:18:27 +00:00
|
|
|
#include "lookingglass/lookingglass_config.h"
|
2011-01-06 13:29:13 +00:00
|
|
|
#include "magnifier/magnifier_config.h"
|
2012-07-27 05:58:21 +00:00
|
|
|
#include "mouseclick/mouseclick_config.h"
|
2010-12-18 09:25:41 +00:00
|
|
|
#include "mousemark/mousemark_config.h"
|
|
|
|
#include "trackmouse/trackmouse_config.h"
|
|
|
|
#include "wobblywindows/wobblywindows_config.h"
|
2007-11-13 17:37:53 +00:00
|
|
|
|
2007-09-20 17:48:27 +00:00
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <KPluginLoader>
|
2007-11-22 23:28:34 +00:00
|
|
|
|
2009-02-05 15:35:38 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
2007-11-22 23:28:34 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT_CONFIG_MULTIPLE(builtins,
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(dashboard, DashboardEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(desktopgrid, DesktopGridEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(diminactive, DimInactiveEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(magiclamp, MagicLampEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(presentwindows, PresentWindowsEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(resize, ResizeEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(showfps, ShowFpsEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(thumbnailaside, ThumbnailAsideEffectConfig)
|
2011-02-06 15:39:41 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(windowgeometry, WindowGeometryConfig)
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(zoom, ZoomEffectConfig)
|
2008-03-26 00:55:39 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(blur, BlurEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(coverswitch, CoverSwitchEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(cube, CubeEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(cubeslide, CubeSlideEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(flipswitch, FlipSwitchEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(glide, GlideEffectConfig)
|
2011-02-01 19:13:26 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(invert, InvertEffectConfig)
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(lookingglass, LookingGlassEffectConfig)
|
2012-07-27 05:58:21 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(mouseclick, MouseClickEffectConfig)
|
2011-01-30 14:34:42 +00:00
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(magnifier, MagnifierEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(mousemark, MouseMarkEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(trackmouse, TrackMouseEffectConfig)
|
|
|
|
KWIN_EFFECT_CONFIG_SINGLE(wobblywindows, WobblyWindowsEffectConfig)
|
|
|
|
)
|
2008-06-06 11:07:15 +00:00
|
|
|
|
2009-02-05 15:35:38 +00:00
|
|
|
} // namespace
|
2013-08-08 11:47:25 +00:00
|
|
|
|
|
|
|
#include "configs_builtins.moc"
|