~ubuntu-branches/ubuntu/wily/udj-desktop-client/wily

« back to all changes in this revision

Viewing changes to src/PlaybackWidget.hpp

  • Committer: Package Import Robot
  • Author(s): Nathan Handler
  • Date: 2012-11-14 15:29:07 UTC
  • mfrom: (1.2.1) (4.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20121114152907-8uj9bwcima77vu28
Tags: 0.6.3-1
* New upstream release
* debian/copyright: Add stanzas for new upstream files
* debian/rules:
  - Do not install ./usr/share/doc/udj/UDJ.1
  - Remove /usr/share/doc/udj directory if it is empty
* debian/control:
  - Bump Standards-Version to 3.9.4 (no changes)
  - Use my @debian.org address for the Maintainer field

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
  PlaybackWidget(DataStore *dataStore, QWidget *parent=0);
59
59
 
60
60
  //@}
 
61
  
 
62
public slots:
 
63
  /** @name Public Slots */
 
64
  //@{ 
 
65
 
 
66
  /**
 
67
   * \brief Toggles the playback state of playback widget.
 
68
   */
 
69
  void togglePlaybackState();
 
70
 
 
71
  //@}
61
72
 
62
73
private slots:
63
74
 
64
75
  /** @name Private Slots */
65
76
  //@{
66
77
 
 
78
   /** \brief Enables playback. */
 
79
   void play();
 
80
 
 
81
   /** \brief Pauses playback. */
 
82
   void pause();
 
83
 
67
84
  /**
68
85
   * \brief Handles whenever the state of the primary
69
86
   * MediaObject is changed. 
117
134
  /** @name Private Functions */
118
135
  //@{
119
136
 
120
 
   /** \brief Enables playback. */
121
 
   void play();
122
 
 
123
 
   /** \brief Pauses playback. */
124
 
   void pause();
125
 
 
126
137
  /** \brief Sets up all the actions used by the MetaWindow. */
127
138
  void createActions();
128
139
 
158
169
  /** \brief The artist of the current song being played. */
159
170
  QString currentSongArtist;
160
171
 
 
172
  /** \brief The duration of the current song being played. */
 
173
  QString currentSongDuration;
161
174
 
162
175
  /** \brief Causes playback to start */
163
176
  QAction *playAction;