From 5582f69f9221ddae3e763538042dedee2db816ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sat, 31 Oct 2009 17:06:31 +0000 Subject: [PATCH] Let's use the reset method for compositing change instead of the KSelectionWatcher hack svn path=/trunk/KDE/kdebase/workspace/; revision=1043060 --- clients/aurorae/src/aurorae.cpp | 26 +++----------------------- clients/aurorae/src/aurorae.h | 6 ------ 2 files changed, 3 insertions(+), 29 deletions(-) diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp index 7354292201..2e98b7bf48 100644 --- a/clients/aurorae/src/aurorae.cpp +++ b/clients/aurorae/src/aurorae.cpp @@ -27,11 +27,8 @@ along with this program. If not, see . #include #include #include -#include #include -#include -#include namespace Aurorae { @@ -464,20 +461,6 @@ void AuroraeButton::paintButton(QPainter &painter, Plasma::FrameSvg *frame, Butt AuroraeClient::AuroraeClient(KDecorationBridge *bridge, KDecorationFactory *factory) : KCommonDecorationUnstable(bridge, factory) { - Display *dpy = QX11Info::display(); - int screen = DefaultScreen(dpy); - char net_wm_cm_name[100]; - sprintf(net_wm_cm_name, "_NET_WM_CM_S%d", screen); - m_compositingWatch = new KSelectionWatcher(net_wm_cm_name, -1, this); - // HACK: we have to delay the update to the mask and repaint of window a little bit - // otherwise we would be faster than KWin core resulting in not painted shadows - // the selection watcher and the timer should be removed when KWin provides the info - m_compositingTimer = new QTimer(this); - m_compositingTimer->setSingleShot(true); - m_compositingTimer->setInterval(100); - connect(m_compositingWatch, SIGNAL(newOwner(Window)), m_compositingTimer, SLOT(start())); - connect(m_compositingWatch, SIGNAL(lostOwner()), m_compositingTimer, SLOT(start())); - connect(m_compositingTimer, SIGNAL(timeout()), this, SLOT(compositingChanged())); } AuroraeClient::~AuroraeClient() @@ -491,6 +474,9 @@ void AuroraeClient::init() void AuroraeClient::reset(unsigned long changed) { + if (changed & SettingCompositing) { + updateWindowShape(); + } widget()->update(); KCommonDecoration::reset(changed); @@ -805,12 +791,6 @@ void AuroraeClient::updateWindowShape() setMask(mask); } -void AuroraeClient::compositingChanged() -{ - updateWindowShape(); - widget()->update(); -} - } // namespace Aurorae extern "C" diff --git a/clients/aurorae/src/aurorae.h b/clients/aurorae/src/aurorae.h index 3004985e99..76e94014e7 100644 --- a/clients/aurorae/src/aurorae.h +++ b/clients/aurorae/src/aurorae.h @@ -127,12 +127,6 @@ protected: void reset(unsigned long changed); void paintEvent(QPaintEvent *event); -private Q_SLOTS: - void compositingChanged(); - -private: - KSelectionWatcher *m_compositingWatch; - QTimer *m_compositingTimer; }; }