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>
|
2007-09-20 17:48:27 +00:00
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
|
|
******************************************************************/
|
|
|
|
|
2007-11-13 16:20:52 +00:00
|
|
|
#include <config-X11.h>
|
|
|
|
|
2007-09-20 17:48:27 +00:00
|
|
|
#include "shadow_config.h"
|
|
|
|
#include "presentwindows_config.h"
|
2007-09-25 17:52:19 +00:00
|
|
|
#include "desktopgrid_config.h"
|
2007-10-22 13:34:26 +00:00
|
|
|
#include "maketransparent_config.h"
|
2007-11-13 16:20:52 +00:00
|
|
|
#include "diminactive_config.h"
|
|
|
|
#include "thumbnailaside_config.h"
|
2007-11-12 15:11:00 +00:00
|
|
|
#include "zoom_config.h"
|
2007-09-20 17:48:27 +00:00
|
|
|
|
2007-11-13 17:37:53 +00:00
|
|
|
#ifdef HAVE_OPENGL
|
2007-11-13 18:14:56 +00:00
|
|
|
#include "invert_config.h"
|
2007-11-13 17:37:53 +00:00
|
|
|
#include "lookingglass_config.h"
|
|
|
|
#include "mousemark_config.h"
|
|
|
|
#include "magnifier_config.h"
|
|
|
|
#endif
|
|
|
|
|
2007-09-20 17:48:27 +00:00
|
|
|
#include <kwineffects.h>
|
|
|
|
|
|
|
|
#include <KPluginLoader>
|
2007-10-03 20:18:56 +00:00
|
|
|
#ifndef KDE_USE_FINAL
|
2007-09-20 18:06:36 +00:00
|
|
|
KWIN_EFFECT_CONFIG_FACTORY
|
2007-10-03 20:18:56 +00:00
|
|
|
#endif
|
2007-11-13 16:20:52 +00:00
|
|
|
K_PLUGIN_FACTORY_DEFINITION(EffectFactory,
|
|
|
|
registerPlugin<KWin::DesktopGridEffectConfig>("desktopgrid");
|
|
|
|
registerPlugin<KWin::DimInactiveEffectConfig>("diminactive");
|
|
|
|
registerPlugin<KWin::MakeTransparentEffectConfig>("maketransparent");
|
|
|
|
registerPlugin<KWin::PresentWindowsEffectConfig>("presentwindows");
|
|
|
|
registerPlugin<KWin::ShadowEffectConfig>("shadow");
|
|
|
|
registerPlugin<KWin::ThumbnailAsideEffectConfig>("thumbnailaside");
|
|
|
|
registerPlugin<KWin::ZoomEffectConfig>("zoom");
|
|
|
|
#ifdef HAVE_OPENGL
|
2007-11-13 18:14:56 +00:00
|
|
|
registerPlugin<KWin::InvertEffectConfig>("invert");
|
2007-11-13 16:20:52 +00:00
|
|
|
registerPlugin<KWin::LookingGlassEffectConfig>("lookingglass");
|
|
|
|
registerPlugin<KWin::MouseMarkEffectConfig>("mousemark");
|
|
|
|
registerPlugin<KWin::MagnifierEffectConfig>("magnifier");
|
|
|
|
#endif
|
|
|
|
)
|
2007-09-25 17:52:19 +00:00
|
|
|
K_EXPORT_PLUGIN(EffectFactory("kwin"))
|