Fix tray icon behavior for non-KDE StatusNotifier
[quassel.git] / src / qtui / systraynotificationbackend.h
index 46591b3..319942b 100644 (file)
@@ -41,13 +41,12 @@ protected:
   virtual bool eventFilter(QObject *obj, QEvent *event);
 
 private slots:
-  void showBubble();
-  void closeBubble();
-  void notificationActivated();
+  void notificationActivated(uint notificationId);
   void notificationActivated(SystemTray::ActivationReason);
 
   void animateChanged(const QVariant &);
   void showBubbleChanged(const QVariant &);
+  void updateToolTip();
 
 private:
   class ConfigWidget;
@@ -72,8 +71,8 @@ private slots:
   void widgetChanged();
 
 private:
-  QCheckBox *_showBubbleBox, *_animateBox;
-  bool _showBubble, _animate;
+  QCheckBox *_showBubbleBox;
+  bool _showBubble;
 };
 
 #endif