since seezer was too slow: fixing double click buffer switches in the chatmonitor
[quassel.git] / src / qtui / systraynotificationbackend.h
index c96958d..4c8ff79 100644 (file)
@@ -37,6 +37,9 @@ public:
   void close(uint notificationId);
   virtual SettingsPage *createConfigWidget() const;
 
+protected:
+  virtual bool eventFilter(QObject *obj, QEvent *event);
+
 private slots:
   void showBubble();
   void closeBubble();
@@ -45,6 +48,7 @@ private slots:
 
   void animateChanged(const QVariant &);
   void showBubbleChanged(const QVariant &);
+  void updateToolTip();
 
 private:
   class ConfigWidget;
@@ -52,6 +56,7 @@ private:
   bool _showBubble;
   bool _animate;
   QList<Notification> _notifications;
+  bool _blockActivation;
 };
 
 class SystrayNotificationBackend::ConfigWidget : public SettingsPage {