/src/tomahawktrayicon.h

http://github.com/tomahawk-player/tomahawk · C Header · 77 lines · 41 code · 18 blank · 18 comment · 0 complexity · d9b3c1a91897e55ae79b3bd98db40417 MD5 · raw file

  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
  4. * Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
  5. *
  6. * Tomahawk is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Tomahawk is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef TOMAHAWK_TRAYICON_H
  20. #define TOMAHAWK_TRAYICON_H
  21. #include <QSystemTrayIcon>
  22. #include <QTimer>
  23. #include <QMenu>
  24. #include "Result.h"
  25. class TomahawkTrayIcon : public QSystemTrayIcon
  26. {
  27. Q_OBJECT
  28. public:
  29. TomahawkTrayIcon( QObject* parent );
  30. virtual bool event( QEvent* e );
  31. void setShowHideWindow( bool show = true );
  32. public slots:
  33. void setResult( const Tomahawk::result_ptr& result );
  34. private slots:
  35. void onAnimationTimer();
  36. void onActivated( QSystemTrayIcon::ActivationReason reason );
  37. void showWindow();
  38. void onPause();
  39. void onPlay();
  40. void onStop();
  41. void onResume();
  42. void onSocialActionsLoaded();
  43. void onStopContinueAfterTrackChanged();
  44. void stopContinueAfterTrackActionTriggered();
  45. void loveTrackTriggered();
  46. void menuAboutToShow();
  47. private:
  48. void refreshToolTip();
  49. ~TomahawkTrayIcon();
  50. QTimer m_animationTimer;
  51. Tomahawk::result_ptr m_currentTrack;
  52. QList<QPixmap> m_animationPixmaps;
  53. int m_currentAnimationFrame;
  54. QMenu* m_contextMenu;
  55. QAction* m_showWindowAction;
  56. QAction* m_stopContinueAfterTrackAction;
  57. QAction* m_loveTrackAction;
  58. };
  59. #endif // TOMAHAWK_TRAYICON_H