Categories in the settings dialog are now clickable
[quassel.git] / src / qtui / systraynotificationbackend.h
index dc5fbb5..2a7784b 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
-*   Copyright (C) 2005-08 by the Quassel Project                          *
+*   Copyright (C) 2005-09 by the Quassel Project                          *
 *   devel@quassel-irc.org                                                 *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
@@ -32,18 +32,14 @@ class SystrayNotificationBackend : public AbstractNotificationBackend {
 
 public:
   SystrayNotificationBackend(QObject *parent = 0);
-  ~SystrayNotificationBackend();
 
   void notify(const Notification &);
   void close(uint notificationId);
-  SettingsPage *configWidget() const;
+  virtual SettingsPage *createConfigWidget() const;
 
 private slots:
   void showBubble();
   void closeBubble();
-  void startAnimation();
-  void stopAnimation();
-  void blink();
 
   void animateChanged(const QVariant &);
   void showBubbleChanged(const QVariant &);
@@ -51,11 +47,8 @@ private slots:
 private:
   class ConfigWidget;
 
-  SettingsPage *_configWidget;
   bool _showBubble;
   bool _animate;
-  bool _iconActive;
-  QTimer _animationTimer;
   QList<Notification> _notifications;
 };