~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/qtui/legacysystemtray.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-02-17 12:49:50 UTC
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20100217124950-v9hajw5d2xa6fszn
Tags: upstream-0.6~beta1
ImportĀ upstreamĀ versionĀ 0.6~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2005-2010 by the Quassel Project                        *
 
3
 *   devel@quassel-irc.org                                                 *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) version 3.                                           *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef LEGACYSYSTEMTRAY_H_
 
22
#define LEGACYSYSTEMTRAY_H_
 
23
 
 
24
#ifndef QT_NO_SYSTEMTRAYICON
 
25
 
 
26
#ifdef HAVE_KDE
 
27
#  include <KSystemTrayIcon>
 
28
#else
 
29
#  include <QSystemTrayIcon>
 
30
#endif
 
31
 
 
32
#include <QTimer>
 
33
 
 
34
#include "systemtray.h"
 
35
 
 
36
class LegacySystemTray : public SystemTray {
 
37
  Q_OBJECT
 
38
 
 
39
public:
 
40
  explicit LegacySystemTray(QWidget *parent);
 
41
  virtual ~LegacySystemTray() {}
 
42
  virtual void init();
 
43
 
 
44
  virtual bool isVisible() const;
 
45
  virtual inline bool isSystemTrayAvailable() const;
 
46
  virtual Icon stateIcon() const; // overriden to care about blinkState
 
47
 
 
48
public slots:
 
49
  virtual void setState(State state);
 
50
  virtual void setVisible(bool visible = true);
 
51
  virtual void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int millisecondsTimeoutHint = 10000);
 
52
 
 
53
protected slots:
 
54
 
 
55
protected:
 
56
  virtual void setMode(Mode mode);
 
57
 
 
58
private slots:
 
59
  void on_blinkTimeout();
 
60
  void on_activated(QSystemTrayIcon::ActivationReason);
 
61
 
 
62
private:
 
63
  void syncLegacyIcon();
 
64
 
 
65
  QTimer _blinkTimer;
 
66
  bool _blinkState;
 
67
  bool _isVisible;
 
68
 
 
69
#ifdef HAVE_KDE
 
70
  KSystemTrayIcon *_trayIcon;
 
71
#else
 
72
  QSystemTrayIcon *_trayIcon;
 
73
#endif
 
74
 
 
75
};
 
76
 
 
77
// inlines
 
78
 
 
79
bool LegacySystemTray::isSystemTrayAvailable() const { return QSystemTrayIcon::isSystemTrayAvailable(); }
 
80
 
 
81
#endif /* QT_NO_SYSTEMTRAYICON */
 
82
 
 
83
#endif /* LEGACYSYSTEMTRAY_H_ */