~ari-tczew/ubuntu/natty/clementine/lp-747113

« back to all changes in this revision

Viewing changes to src/ui/qtsystemtrayicon.h

  • Committer: Artur Rona
  • Date: 2011-04-04 20:05:33 UTC
  • Revision ID: ari-tczew@ubuntu.com-20110404200533-6aclzasj5pp8t1hq
* New upstream release. (LP: #747113)
* Drop all patches, have been applied upstream.
* Update debian/copyright.
* Refresh description in debian/control in order to avoid lintian error.
* Bump debhelper to 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
protected:
44
44
  // SystemTrayIcon
45
45
  void UpdateIcon();
 
46
  void SetPaused();
 
47
  void SetPlaying(bool enable_play_pause = false, bool enable_ban = false,
 
48
                  bool enable_love = false);
 
49
  void SetStopped();
46
50
 
47
51
  // QObject
48
52
  bool eventFilter(QObject *, QEvent *);
53
57
private:
54
58
  QSystemTrayIcon* tray_;
55
59
  QMenu* menu_;
 
60
  QAction* action_play_pause_;
 
61
  QAction* action_stop_;
 
62
  QAction* action_stop_after_this_track_;
 
63
  QAction* action_love_;
 
64
  QAction* action_ban_;
56
65
 
57
66
  QString pattern_;
58
67