You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
950 B
26 lines
950 B
/***************************************************************** |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
Copyright (C) 2007 Bernhard Loos <nhuh.put@web.de> |
|
|
|
You can Freely distribute this program under the GNU General Public |
|
License. See the file "COPYING" for the exact licensing terms. |
|
******************************************************************/ |
|
|
|
#include "shadow_config.h" |
|
#include "presentwindows_config.h" |
|
#include "desktopgrid_config.h" |
|
|
|
#include <kwineffects.h> |
|
|
|
#include <KPluginLoader> |
|
#ifndef KDE_USE_FINAL |
|
KWIN_EFFECT_CONFIG_FACTORY |
|
#endif |
|
K_PLUGIN_FACTORY_DEFINITION(EffectFactory, registerPlugin<KWin::ShadowEffectConfig>("shadow"); |
|
registerPlugin<KWin::PresentWindowsEffectConfig>("presentwindows"); |
|
registerPlugin<KWin::DesktopGridEffectConfig>("desktopgrid"); |
|
) |
|
K_EXPORT_PLUGIN(EffectFactory("kwin")) |
|
|
|
|