diff options
author | Mavridis Philippe <[email protected]> | 2021-03-30 13:58:33 +0300 |
---|---|---|
committer | Mavridis Philippe <[email protected]> | 2021-03-30 13:58:33 +0300 |
commit | 74b22318b8df6c1e9355b73a16bb755a5178b8d6 (patch) | |
tree | 538c9e62d606c6718fa64f8c8f2ad42e4aefc1ad /src/kompose.cpp | |
download | kompose-74b22318b8df6c1e9355b73a16bb755a5178b8d6.tar.gz kompose-74b22318b8df6c1e9355b73a16bb755a5178b8d6.zip |
Initial commit (KDE3 version)
Signed-off-by: Mavridis Philippe <[email protected]>
Diffstat (limited to 'src/kompose.cpp')
-rw-r--r-- | src/kompose.cpp | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/src/kompose.cpp b/src/kompose.cpp new file mode 100644 index 0000000..60cec12 --- /dev/null +++ b/src/kompose.cpp @@ -0,0 +1,88 @@ +/*************************************************************************** + * Copyright (C) 2004 by Hans Oischinger * + * [email protected] * + * * + * 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, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "kompose.h" + +#include "komposeglobal.h" +#include "komposesettings.h" +#include "komposetaskmanager.h" + +#include <klocale.h> +#include <kuniqueapplication.h> + +#include <X11/Xlib.h> +#include <X11/Xutil.h> +#ifdef COMPOSITE +#include <X11/Xatom.h> +#include <X11/extensions/Xcomposite.h> +#include <X11/extensions/Xdamage.h> +#include <X11/extensions/Xrender.h> +#endif + +Kompose::Kompose() +{ +} + +Kompose::~Kompose() +{} + +bool Kompose::x11EventFilter (XEvent *event) +{ +#ifdef COMPOSITE + if ( KomposeGlobal::instance()->hasXcomposite() && KomposeSettings::instance()->getUseComposite() ) + { + if ( event->type == KomposeGlobal::instance()->getDamageEvent() + XDamageNotify ) + { + KomposeTaskManager::instance()->processX11Event( event ); + // XDamageNotifyEvent *e = reinterpret_cast<XDamageNotifyEvent*>( event ); + // // e->drawable is the window ID of the damaged window + // // e->geometry is the geometry of the damaged window + // // e->area is the bounding rect for the damaged area + // // e->damage is the damage handle returned by XDamageCreate() + // + // // Subtract all the damage, repairing the window. + // XDamageSubtract( dpy, e->damage, None, None ); + } + // + // else if ( event->type == shape_event + ShapeNotify ) + // { + // XShapeEvent *e = reinterpret_cast<XShapeEvent*>( event ); + // // It's probably safe to assume that the window shape region + // // is invalid at this point... + // } + + else if ( event->type == ConfigureNotify ) + { + // XConfigureEvent *e = &event->xconfigure; + // The windows size, position or Z index in the stacking + // order has changed + KomposeTaskManager::instance()->processX11Event( event ); + } + + } +#endif + + // This costed me nerves: + // Call this or kwinmodule won't work + return KApplication::x11EventFilter(event); +} + + +#include "kompose.moc" |