summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/audiowidget.cpp
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/audiowidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/audiowidget.cpp126
1 files changed, 63 insertions, 63 deletions
diff --git a/core/multimedia/opieplayer/audiowidget.cpp b/core/multimedia/opieplayer/audiowidget.cpp
index 1e0757f..582660c 100644
--- a/core/multimedia/opieplayer/audiowidget.cpp
+++ b/core/multimedia/opieplayer/audiowidget.cpp
@@ -1,28 +1,28 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#include <qwidget.h> 20#include <qwidget.h>
21#include <qpixmap.h> 21#include <qpixmap.h>
22#include <qbutton.h> 22#include <qbutton.h>
23#include <qpainter.h> 23#include <qpainter.h>
24#include <qframe.h> 24#include <qframe.h>
25#include <qpe/resource.h> 25#include <qpe/resource.h>
26#include "audiowidget.h" 26#include "audiowidget.h"
27#include "mediaplayerstate.h" 27#include "mediaplayerstate.h"
28 28
@@ -39,238 +39,238 @@ struct MediaButton {
39 bool isToggle, isBig, isHeld, isDown; 39 bool isToggle, isBig, isHeld, isDown;
40}; 40};
41 41
42 42
43// Layout information for the audioButtons (and if it is a toggle button or not) 43// Layout information for the audioButtons (and if it is a toggle button or not)
44MediaButton audioButtons[] = { 44MediaButton audioButtons[] = {
45 { 3*30-15+xo, 3*30-13+yo, 0, TRUE, TRUE, FALSE, FALSE }, // play 45 { 3*30-15+xo, 3*30-13+yo, 0, TRUE, TRUE, FALSE, FALSE }, // play
46 { 1*30+xo, 5*30+yo, 2, FALSE, FALSE, FALSE, FALSE }, // stop 46 { 1*30+xo, 5*30+yo, 2, FALSE, FALSE, FALSE, FALSE }, // stop
47 { 5*30+xo, 5*30+yo, 2, TRUE, FALSE, FALSE, FALSE }, // pause 47 { 5*30+xo, 5*30+yo, 2, TRUE, FALSE, FALSE, FALSE }, // pause
48 { 6*30-5+xo, 3*30+yo, 1, FALSE, FALSE, FALSE, FALSE }, // next 48 { 6*30-5+xo, 3*30+yo, 1, FALSE, FALSE, FALSE, FALSE }, // next
49 { 0*30+5+xo, 3*30+yo, 1, FALSE, FALSE, FALSE, FALSE }, // previous 49 { 0*30+5+xo, 3*30+yo, 1, FALSE, FALSE, FALSE, FALSE }, // previous
50 { 3*30+xo, 0*30+5+yo, 3, FALSE, FALSE, FALSE, FALSE }, // volume up 50 { 3*30+xo, 0*30+5+yo, 3, FALSE, FALSE, FALSE, FALSE }, // volume up
51 { 3*30+xo, 6*30-5+yo, 3, FALSE, FALSE, FALSE, FALSE }, // volume down 51 { 3*30+xo, 6*30-5+yo, 3, FALSE, FALSE, FALSE, FALSE }, // volume down
52 { 5*30+xo, 1*30+yo, 0, TRUE, FALSE, FALSE, FALSE }, // repeat/loop 52 { 5*30+xo, 1*30+yo, 0, TRUE, FALSE, FALSE, FALSE }, // repeat/loop
53 { 1*30+xo, 1*30+yo, 0, FALSE, FALSE, FALSE, FALSE } // playlist 53 { 1*30+xo, 1*30+yo, 0, FALSE, FALSE, FALSE, FALSE } // playlist
54}; 54};
55 55
56 56
57static const int numButtons = (sizeof(audioButtons)/sizeof(MediaButton)); 57static const int numButtons = (sizeof(audioButtons)/sizeof(MediaButton));
58 58
59 59
60AudioWidget::AudioWidget(QWidget* parent, const char* name, WFlags f) : 60AudioWidget::AudioWidget(QWidget* parent, const char* name, WFlags f) :
61 QWidget( parent, name, f ) 61 QWidget( parent, name, f )
62{ 62{
63 setCaption( tr("MediaPlayer") ); 63 setCaption( tr("OpiePlayer") );
64 setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/metalFinish" ) ); 64 setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/metalFinish" ) );
65 pixmaps[0] = new QPixmap( Resource::loadPixmap( "mpegplayer/mediaButtonsAll" ) ); 65 pixmaps[0] = new QPixmap( Resource::loadPixmap( "mpegplayer/mediaButtonsAll" ) );
66 pixmaps[1] = new QPixmap( Resource::loadPixmap( "mpegplayer/mediaButtonsBig" ) ); 66 pixmaps[1] = new QPixmap( Resource::loadPixmap( "mpegplayer/mediaButtonsBig" ) );
67 pixmaps[2] = new QPixmap( Resource::loadPixmap( "mpegplayer/mediaControls" ) ); 67 pixmaps[2] = new QPixmap( Resource::loadPixmap( "mpegplayer/mediaControls" ) );
68 pixmaps[3] = new QPixmap( Resource::loadPixmap( "mpegplayer/animatedButton" ) ); 68 pixmaps[3] = new QPixmap( Resource::loadPixmap( "mpegplayer/animatedButton" ) );
69 69
70 songInfo = new Ticker( this ); 70 songInfo = new Ticker( this );
71 songInfo->setFocusPolicy( QWidget::NoFocus ); 71 songInfo->setFocusPolicy( QWidget::NoFocus );
72 songInfo->setGeometry( QRect( 7, 3, 220, 20 ) ); 72 songInfo->setGeometry( QRect( 7, 3, 220, 20 ) );
73 73
74 slider = new QSlider( Qt::Horizontal, this ); 74 slider = new QSlider( Qt::Horizontal, this );
75 slider->setFixedWidth( 220 ); 75 slider->setFixedWidth( 220 );
76 slider->setFixedHeight( 20 ); 76 slider->setFixedHeight( 20 );
77 slider->setMinValue( 0 ); 77 slider->setMinValue( 0 );
78 slider->setMaxValue( 1 ); 78 slider->setMaxValue( 1 );
79 slider->setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/metalFinish" ) ); 79 slider->setBackgroundPixmap( Resource::loadPixmap( "mpegplayer/metalFinish" ) );
80 slider->setFocusPolicy( QWidget::NoFocus ); 80 slider->setFocusPolicy( QWidget::NoFocus );
81 slider->setGeometry( QRect( 7, 262, 220, 20 ) ); 81 slider->setGeometry( QRect( 7, 262, 220, 20 ) );
82 82
83 connect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) ); 83 connect( slider, SIGNAL( sliderPressed() ), this, SLOT( sliderPressed() ) );
84 connect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) ); 84 connect( slider, SIGNAL( sliderReleased() ), this, SLOT( sliderReleased() ) );
85 85
86 connect( mediaPlayerState, SIGNAL( lengthChanged(long) ), this, SLOT( setLength(long) ) ); 86 connect( mediaPlayerState, SIGNAL( lengthChanged(long) ), this, SLOT( setLength(long) ) );
87 connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 87 connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
88 connect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 88 connect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
89 connect( mediaPlayerState, SIGNAL( viewChanged(char) ), this, SLOT( setView(char) ) ); 89 connect( mediaPlayerState, SIGNAL( viewChanged(char) ), this, SLOT( setView(char) ) );
90 connect( mediaPlayerState, SIGNAL( loopingToggled(bool) ), this, SLOT( setLooping(bool) ) ); 90 connect( mediaPlayerState, SIGNAL( loopingToggled(bool) ), this, SLOT( setLooping(bool) ) );
91 connect( mediaPlayerState, SIGNAL( pausedToggled(bool) ), this, SLOT( setPaused(bool) ) ); 91 connect( mediaPlayerState, SIGNAL( pausedToggled(bool) ), this, SLOT( setPaused(bool) ) );
92 connect( mediaPlayerState, SIGNAL( playingToggled(bool) ), this, SLOT( setPlaying(bool) ) ); 92 connect( mediaPlayerState, SIGNAL( playingToggled(bool) ), this, SLOT( setPlaying(bool) ) );
93 93
94 // Intialise state 94 // Intialise state
95 setLength( mediaPlayerState->length() ); 95 setLength( mediaPlayerState->length() );
96 setPosition( mediaPlayerState->position() ); 96 setPosition( mediaPlayerState->position() );
97 setLooping( mediaPlayerState->fullscreen() ); 97 setLooping( mediaPlayerState->fullscreen() );
98 setPaused( mediaPlayerState->paused() ); 98 setPaused( mediaPlayerState->paused() );
99 setPlaying( mediaPlayerState->playing() ); 99 setPlaying( mediaPlayerState->playing() );
100 100
101} 101}
102 102
103 103
104AudioWidget::~AudioWidget() { 104AudioWidget::~AudioWidget() {
105 for ( int i = 0; i < 4; i++ ) 105 for ( int i = 0; i < 4; i++ )
106 delete pixmaps[i]; 106 delete pixmaps[i];
107} 107}
108 108
109 109
110static bool audioSliderBeingMoved = FALSE; 110static bool audioSliderBeingMoved = FALSE;
111 111
112 112
113void AudioWidget::sliderPressed() { 113void AudioWidget::sliderPressed() {
114 audioSliderBeingMoved = TRUE; 114 audioSliderBeingMoved = TRUE;
115} 115}
116 116
117 117
118void AudioWidget::sliderReleased() { 118void AudioWidget::sliderReleased() {
119 audioSliderBeingMoved = FALSE; 119 audioSliderBeingMoved = FALSE;
120 if ( slider->width() == 0 ) 120 if ( slider->width() == 0 )
121 return; 121 return;
122 long val = long((double)slider->value() * mediaPlayerState->length() / slider->width()); 122 long val = long((double)slider->value() * mediaPlayerState->length() / slider->width());
123 mediaPlayerState->setPosition( val ); 123 mediaPlayerState->setPosition( val );
124} 124}
125 125
126 126
127void AudioWidget::setPosition( long i ) { 127void AudioWidget::setPosition( long i ) {
128 updateSlider( i, mediaPlayerState->length() ); 128 updateSlider( i, mediaPlayerState->length() );
129} 129}
130 130
131 131
132void AudioWidget::setLength( long max ) { 132void AudioWidget::setLength( long max ) {
133 updateSlider( mediaPlayerState->position(), max ); 133 updateSlider( mediaPlayerState->position(), max );
134} 134}
135 135
136 136
137void AudioWidget::setView( char view ) { 137void AudioWidget::setView( char view ) {
138 if ( view == 'a' ) { 138 if ( view == 'a' ) {
139 startTimer( 150 ); 139 startTimer( 150 );
140 showMaximized(); 140 showMaximized();
141 } else { 141 } else {
142 killTimers(); 142 killTimers();
143 hide(); 143 hide();
144 } 144 }
145} 145}
146 146
147 147
148void AudioWidget::updateSlider( long i, long max ) { 148void AudioWidget::updateSlider( long i, long max ) {
149 if ( max == 0 ) 149 if ( max == 0 )
150 return; 150 return;
151 // Will flicker too much if we don't do this 151 // Will flicker too much if we don't do this
152 // Scale to something reasonable 152 // Scale to something reasonable
153 int width = slider->width(); 153 int width = slider->width();
154 int val = int((double)i * width / max); 154 int val = int((double)i * width / max);
155 if ( !audioSliderBeingMoved ) { 155 if ( !audioSliderBeingMoved ) {
156 if ( slider->value() != val ) 156 if ( slider->value() != val )
157 slider->setValue( val ); 157 slider->setValue( val );
158 if ( slider->maxValue() != width ) 158 if ( slider->maxValue() != width )
159 slider->setMaxValue( width ); 159 slider->setMaxValue( width );
160 } 160 }
161} 161}
162 162
163 163
164void AudioWidget::setToggleButton( int i, bool down ) { 164void AudioWidget::setToggleButton( int i, bool down ) {
165 if ( down != audioButtons[i].isDown ) 165 if ( down != audioButtons[i].isDown )
166 toggleButton( i ); 166 toggleButton( i );
167} 167}
168 168
169 169
170void AudioWidget::toggleButton( int i ) { 170void AudioWidget::toggleButton( int i ) {
171 audioButtons[i].isDown = !audioButtons[i].isDown; 171 audioButtons[i].isDown = !audioButtons[i].isDown;
172 QPainter p(this); 172 QPainter p(this);
173 paintButton ( &p, i ); 173 paintButton ( &p, i );
174} 174}
175 175
176 176
177void AudioWidget::paintButton( QPainter *p, int i ) { 177void AudioWidget::paintButton( QPainter *p, int i ) {
178 int x = audioButtons[i].xPos; 178 int x = audioButtons[i].xPos;
179 int y = audioButtons[i].yPos; 179 int y = audioButtons[i].yPos;
180 int offset = 22 + 14 * audioButtons[i].isBig + audioButtons[i].isDown; 180 int offset = 22 + 14 * audioButtons[i].isBig + audioButtons[i].isDown;
181 int buttonSize = 64 + audioButtons[i].isBig * (90 - 64); 181 int buttonSize = 64 + audioButtons[i].isBig * (90 - 64);
182 p->drawPixmap( x, y, *pixmaps[audioButtons[i].isBig], buttonSize * (audioButtons[i].isDown + 2 * audioButtons[i].color), 0, buttonSize, buttonSize ); 182 p->drawPixmap( x, y, *pixmaps[audioButtons[i].isBig], buttonSize * (audioButtons[i].isDown + 2 * audioButtons[i].color), 0, buttonSize, buttonSize );
183 p->drawPixmap( x + offset, y + offset, *pixmaps[2], 18 * i, 0, 18, 18 ); 183 p->drawPixmap( x + offset, y + offset, *pixmaps[2], 18 * i, 0, 18, 18 );
184} 184}
185 185
186 186
187void AudioWidget::timerEvent( QTimerEvent * ) { 187void AudioWidget::timerEvent( QTimerEvent * ) {
188 static int frame = 0; 188 static int frame = 0;
189 if ( !mediaPlayerState->paused() && audioButtons[ AudioPlay ].isDown ) { 189 if ( !mediaPlayerState->paused() && audioButtons[ AudioPlay ].isDown ) {
190 frame = frame >= 7 ? 0 : frame + 1; 190 frame = frame >= 7 ? 0 : frame + 1;
191 int x = audioButtons[AudioPlay].xPos; 191 int x = audioButtons[AudioPlay].xPos;
192 int y = audioButtons[AudioPlay].yPos; 192 int y = audioButtons[AudioPlay].yPos;
193 QPainter p( this ); 193 QPainter p( this );
194 // Optimize to only draw the little bit of the changing images which is different 194 // Optimize to only draw the little bit of the changing images which is different
195 p.drawPixmap( x + 14, y + 8, *pixmaps[3], 32 * frame, 0, 32, 32 ); 195 p.drawPixmap( x + 14, y + 8, *pixmaps[3], 32 * frame, 0, 32, 32 );
196 p.drawPixmap( x + 37, y + 37, *pixmaps[2], 18 * AudioPlay, 0, 6, 3 ); 196 p.drawPixmap( x + 37, y + 37, *pixmaps[2], 18 * AudioPlay, 0, 6, 3 );
197 } 197 }
198} 198}
199 199
200 200
201void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { 201void AudioWidget::mouseMoveEvent( QMouseEvent *event ) {
202 for ( int i = 0; i < numButtons; i++ ) { 202 for ( int i = 0; i < numButtons; i++ ) {
203 int size = audioButtons[i].isBig; 203 int size = audioButtons[i].isBig;
204 int x = audioButtons[i].xPos; 204 int x = audioButtons[i].xPos;
205 int y = audioButtons[i].yPos; 205 int y = audioButtons[i].yPos;
206 if ( event->state() == QMouseEvent::LeftButton ) { 206 if ( event->state() == QMouseEvent::LeftButton ) {
207 // The test to see if the mouse click is inside the circular button or not 207 // The test to see if the mouse click is inside the circular button or not
208 // (compared with the radius squared to avoid a square-root of our distance) 208 // (compared with the radius squared to avoid a square-root of our distance)
209 int radius = 32 + 13 * size; 209 int radius = 32 + 13 * size;
210 QPoint center = QPoint( x + radius, y + radius ); 210 QPoint center = QPoint( x + radius, y + radius );
211 QPoint dXY = center - event->pos(); 211 QPoint dXY = center - event->pos();
212 int dist = dXY.x() * dXY.x() + dXY.y() * dXY.y(); 212 int dist = dXY.x() * dXY.x() + dXY.y() * dXY.y();
213 bool isOnButton = dist <= (radius * radius); 213 bool isOnButton = dist <= (radius * radius);
214 // QRect r( x, y, 64 + 22*size, 64 + 22*size ); 214// QRect r( x, y, 64 + 22*size, 64 + 22*size );
215 // bool isOnButton = r.contains( event->pos() ); // Rectangular Button code 215// bool isOnButton = r.contains( event->pos() ); // Rectangular Button code
216 if ( isOnButton && !audioButtons[i].isHeld ) { 216 if ( isOnButton && !audioButtons[i].isHeld ) {
217 audioButtons[i].isHeld = TRUE; 217 audioButtons[i].isHeld = TRUE;
218 toggleButton(i); 218 toggleButton(i);
219 switch (i) { 219 switch (i) {
220 case AudioVolumeUp: emit moreClicked(); return; 220 case AudioVolumeUp: emit moreClicked(); return;
221 case AudioVolumeDown: emit lessClicked(); return; 221 case AudioVolumeDown: emit lessClicked(); return;
222 } 222 }
223 } else if ( !isOnButton && audioButtons[i].isHeld ) { 223 } else if ( !isOnButton && audioButtons[i].isHeld ) {
224 audioButtons[i].isHeld = FALSE; 224 audioButtons[i].isHeld = FALSE;
225 toggleButton(i); 225 toggleButton(i);
226 } 226 }
227 } else { 227 } else {
228 if ( audioButtons[i].isHeld ) { 228 if ( audioButtons[i].isHeld ) {
229 audioButtons[i].isHeld = FALSE; 229 audioButtons[i].isHeld = FALSE;
230 if ( !audioButtons[i].isToggle ) 230 if ( !audioButtons[i].isToggle )
231 setToggleButton( i, FALSE ); 231 setToggleButton( i, FALSE );
232 switch (i) { 232 switch (i) {
233 case AudioPlay: mediaPlayerState->setPlaying(audioButtons[i].isDown); return; 233 case AudioPlay: mediaPlayerState->setPlaying(audioButtons[i].isDown); return;
234 case AudioStop: mediaPlayerState->setPlaying(FALSE); return; 234 case AudioStop: mediaPlayerState->setPlaying(FALSE); return;
235 case AudioPause: mediaPlayerState->setPaused(audioButtons[i].isDown); return; 235 case AudioPause: mediaPlayerState->setPaused(audioButtons[i].isDown); return;
236 case AudioNext: mediaPlayerState->setNext(); return; 236 case AudioNext: mediaPlayerState->setNext(); return;
237 case AudioPrevious: mediaPlayerState->setPrev(); return; 237 case AudioPrevious: mediaPlayerState->setPrev(); return;
238 case AudioLoop: mediaPlayerState->setLooping(audioButtons[i].isDown); return; 238 case AudioLoop: mediaPlayerState->setLooping(audioButtons[i].isDown); return;
239 case AudioVolumeUp: emit moreReleased(); return; 239 case AudioVolumeUp: emit moreReleased(); return;
240 case AudioVolumeDown: emit lessReleased(); return; 240 case AudioVolumeDown: emit lessReleased(); return;
241 case AudioPlayList: mediaPlayerState->setList(); return; 241 case AudioPlayList: mediaPlayerState->setList(); return;
242 } 242 }
243 } 243 }
244 } 244 }
245 } 245 }
246} 246}
247 247
248 248
249void AudioWidget::mousePressEvent( QMouseEvent *event ) { 249void AudioWidget::mousePressEvent( QMouseEvent *event ) {
250 mouseMoveEvent( event ); 250 mouseMoveEvent( event );
251} 251}
252 252
253 253
254void AudioWidget::mouseReleaseEvent( QMouseEvent *event ) { 254void AudioWidget::mouseReleaseEvent( QMouseEvent *event ) {
255 mouseMoveEvent( event ); 255 mouseMoveEvent( event );
256} 256}
257 257
258 258
259void AudioWidget::showEvent( QShowEvent* ) { 259void AudioWidget::showEvent( QShowEvent* ) {
260 QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 ); 260 QMouseEvent event( QEvent::MouseMove, QPoint( 0, 0 ), 0, 0 );
261 mouseMoveEvent( &event ); 261 mouseMoveEvent( &event );
262} 262}
263 263
264 264
265void AudioWidget::closeEvent( QCloseEvent* ) { 265void AudioWidget::closeEvent( QCloseEvent* ) {
266 mediaPlayerState->setList(); 266 mediaPlayerState->setList();
267} 267}
268 268
269 269
270void AudioWidget::paintEvent( QPaintEvent * ) { 270void AudioWidget::paintEvent( QPaintEvent * ) {
271 QPainter p( this ); 271 QPainter p( this );
272 for ( int i = 0; i < numButtons; i++ ) 272 for ( int i = 0; i < numButtons; i++ )
273 paintButton( &p, i ); 273 paintButton( &p, i );
274} 274}
275 275
276 276