-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.cpp | 13 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediawidget.cpp | 33 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/mediawidget.h | 5 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/videowidget.cpp | 32 |
4 files changed, 42 insertions, 41 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp index bb686f1..bb07882 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.cpp +++ b/noncore/multimedia/opieplayer2/audiowidget.cpp | |||
@@ -117,55 +117,46 @@ QPixmap combineImageWithBackground( QImage img, QPixmap bg, QPoint offset ) { | |||
117 | QPixmap pix( img.width(), img.height() ); | 117 | QPixmap pix( img.width(), img.height() ); |
118 | QPainter p( &pix ); | 118 | QPainter p( &pix ); |
119 | p.drawTiledPixmap( pix.rect(), bg, offset ); | 119 | p.drawTiledPixmap( pix.rect(), bg, offset ); |
120 | p.drawImage( 0, 0, img ); | 120 | p.drawImage( 0, 0, img ); |
121 | return pix; | 121 | return pix; |
122 | } | 122 | } |
123 | 123 | ||
124 | 124 | ||
125 | QPixmap maskPixToMask( QPixmap pix, QBitmap mask ) { | 125 | QPixmap maskPixToMask( QPixmap pix, QBitmap mask ) { |
126 | QPixmap pixmap( pix ); | 126 | QPixmap pixmap( pix ); |
127 | pixmap.setMask( mask ); | 127 | pixmap.setMask( mask ); |
128 | return pixmap; | 128 | return pixmap; |
129 | } | 129 | } |
130 | 130 | ||
131 | }; | 131 | }; |
132 | 132 | ||
133 | void AudioWidget::resizeEvent( QResizeEvent * ) { | 133 | void AudioWidget::resizeEvent( QResizeEvent *e ) { |
134 | int h = height(); | 134 | int h = height(); |
135 | int w = width(); | 135 | int w = width(); |
136 | 136 | ||
137 | songInfo.setGeometry( QRect( 2, 2, w - 4, 20 ) ); | 137 | songInfo.setGeometry( QRect( 2, 2, w - 4, 20 ) ); |
138 | slider.setFixedWidth( w - 110 ); | 138 | slider.setFixedWidth( w - 110 ); |
139 | slider.setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); | 139 | slider.setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); |
140 | slider.setBackgroundOrigin( QWidget::ParentOrigin ); | 140 | slider.setBackgroundOrigin( QWidget::ParentOrigin ); |
141 | time.setGeometry( QRect( w - 85, h - 30, 70, 20 ) ); | 141 | time.setGeometry( QRect( w - 85, h - 30, 70, 20 ) ); |
142 | 142 | ||
143 | upperLeftOfButtonMask.rx() = ( w - buttonUpImage.width() ) / 2; | 143 | upperLeftOfButtonMask.rx() = ( w - buttonUpImage.width() ) / 2; |
144 | upperLeftOfButtonMask.ry() = (( h - buttonUpImage.height() ) / 2) - 10; | 144 | upperLeftOfButtonMask.ry() = (( h - buttonUpImage.height() ) / 2) - 10; |
145 | QPoint p = upperLeftOfButtonMask; | ||
146 | 145 | ||
147 | QPixmap pixUp = combineImageWithBackground( buttonUpImage, backgroundPixmap, p ); | 146 | MediaWidget::resizeEvent( e ); |
148 | QPixmap pixDn = combineImageWithBackground( buttonDownImage, backgroundPixmap, p ); | ||
149 | |||
150 | for ( uint i = 0; i < buttons.size(); i++ ) { | ||
151 | if ( !buttons[i].mask.isNull() ) { | ||
152 | buttons[i].pixUp = maskPixToMask( pixUp, buttons[i].mask ); | ||
153 | buttons[i].pixDown = maskPixToMask( pixDn, buttons[i].mask ); | ||
154 | } | ||
155 | } | ||
156 | } | 147 | } |
157 | 148 | ||
158 | void AudioWidget::sliderPressed() { | 149 | void AudioWidget::sliderPressed() { |
159 | audioSliderBeingMoved = TRUE; | 150 | audioSliderBeingMoved = TRUE; |
160 | } | 151 | } |
161 | 152 | ||
162 | 153 | ||
163 | void AudioWidget::sliderReleased() { | 154 | void AudioWidget::sliderReleased() { |
164 | audioSliderBeingMoved = FALSE; | 155 | audioSliderBeingMoved = FALSE; |
165 | if ( slider.width() == 0 ) | 156 | if ( slider.width() == 0 ) |
166 | return; | 157 | return; |
167 | long val = long((double)slider.value() * mediaPlayerState.length() / slider.width()); | 158 | long val = long((double)slider.value() * mediaPlayerState.length() / slider.width()); |
168 | mediaPlayerState.setPosition( val ); | 159 | mediaPlayerState.setPosition( val ); |
169 | } | 160 | } |
170 | 161 | ||
171 | void AudioWidget::setPosition( long i ) { | 162 | void AudioWidget::setPosition( long i ) { |
diff --git a/noncore/multimedia/opieplayer2/mediawidget.cpp b/noncore/multimedia/opieplayer2/mediawidget.cpp index ab23aa8..ab2ec50 100644 --- a/noncore/multimedia/opieplayer2/mediawidget.cpp +++ b/noncore/multimedia/opieplayer2/mediawidget.cpp | |||
@@ -96,32 +96,49 @@ void MediaWidget::paintEvent( QPaintEvent *pe ) | |||
96 | 96 | ||
97 | if ( !pe->erased() ) { | 97 | if ( !pe->erased() ) { |
98 | // Combine with background and double buffer | 98 | // Combine with background and double buffer |
99 | QPixmap pix( pe->rect().size() ); | 99 | QPixmap pix( pe->rect().size() ); |
100 | QPainter p( &pix ); | 100 | QPainter p( &pix ); |
101 | p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() ); | 101 | p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() ); |
102 | p.drawTiledPixmap( pe->rect(), backgroundPixmap, pe->rect().topLeft() ); | 102 | p.drawTiledPixmap( pe->rect(), backgroundPixmap, pe->rect().topLeft() ); |
103 | paintAllButtons( p ); | 103 | paintAllButtons( p ); |
104 | QPainter p2( this ); | 104 | QPainter p2( this ); |
105 | p2.drawPixmap( pe->rect().topLeft(), pix ); | 105 | p2.drawPixmap( pe->rect().topLeft(), pix ); |
106 | } else { | 106 | } else { |
107 | QPainter p( this ); | 107 | QPainter p( this ); |
108 | paintAllButtons( p ); | 108 | paintAllButtons( p ); |
109 | } | 109 | } |
110 | } | 110 | } |
111 | 111 | ||
112 | void MediaWidget::resizeEvent( QResizeEvent *e ) | ||
113 | { | ||
114 | QPixmap pixUp = combineImageWithBackground( buttonUpImage, backgroundPixmap, upperLeftOfButtonMask ); | ||
115 | QPixmap pixDn = combineImageWithBackground( buttonDownImage, backgroundPixmap, upperLeftOfButtonMask ); | ||
116 | |||
117 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) { | ||
118 | Button &button = *it; | ||
119 | |||
120 | if ( button.mask.isNull() ) | ||
121 | continue; | ||
122 | button.pixUp = addMaskToPixmap( pixUp, button.mask ); | ||
123 | button.pixDown = addMaskToPixmap( pixDn, button.mask ); | ||
124 | } | ||
125 | |||
126 | QWidget::resizeEvent( e ); | ||
127 | } | ||
128 | |||
112 | MediaWidget::Button *MediaWidget::buttonAt( const QPoint &position ) | 129 | MediaWidget::Button *MediaWidget::buttonAt( const QPoint &position ) |
113 | { | 130 | { |
114 | if ( position.x() <= 0 || position.y() <= 0 || | 131 | if ( position.x() <= 0 || position.y() <= 0 || |
115 | position.x() >= buttonMask.width() || | 132 | position.x() >= buttonMask.width() || |
116 | position.y() >= buttonMask.height() ) | 133 | position.y() >= buttonMask.height() ) |
117 | return 0; | 134 | return 0; |
118 | 135 | ||
119 | int pixelIdx = buttonMask.pixelIndex( position.x(), position.y() ); | 136 | int pixelIdx = buttonMask.pixelIndex( position.x(), position.y() ); |
120 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) | 137 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) |
121 | if ( it->command + 1 == pixelIdx ) | 138 | if ( it->command + 1 == pixelIdx ) |
122 | return &( *it ); | 139 | return &( *it ); |
123 | 140 | ||
124 | return 0; | 141 | return 0; |
125 | } | 142 | } |
126 | 143 | ||
127 | void MediaWidget::mousePressEvent( QMouseEvent *event ) | 144 | void MediaWidget::mousePressEvent( QMouseEvent *event ) |
@@ -217,18 +234,34 @@ void MediaWidget::setToggleButton( Command command, bool down ) | |||
217 | } | 234 | } |
218 | } | 235 | } |
219 | 236 | ||
220 | void MediaWidget::setToggleButton( Button &button, bool down ) | 237 | void MediaWidget::setToggleButton( Button &button, bool down ) |
221 | { | 238 | { |
222 | if ( down != button.isDown ) | 239 | if ( down != button.isDown ) |
223 | toggleButton( button ); | 240 | toggleButton( button ); |
224 | } | 241 | } |
225 | 242 | ||
226 | void MediaWidget::toggleButton( Button &button ) | 243 | void MediaWidget::toggleButton( Button &button ) |
227 | { | 244 | { |
228 | button.isDown = !button.isDown; | 245 | button.isDown = !button.isDown; |
229 | 246 | ||
230 | paintButton( button ); | 247 | paintButton( button ); |
231 | } | 248 | } |
232 | 249 | ||
250 | QPixmap MediaWidget::combineImageWithBackground( const QImage &image, const QPixmap &background, const QPoint &offset ) | ||
251 | { | ||
252 | QPixmap pix( image.size() ); | ||
253 | QPainter p( &pix ); | ||
254 | p.drawTiledPixmap( pix.rect(), background, offset ); | ||
255 | p.drawImage( 0, 0, image ); | ||
256 | return pix; | ||
257 | } | ||
258 | |||
259 | QPixmap MediaWidget::addMaskToPixmap( const QPixmap &pix, const QBitmap &mask ) | ||
260 | { | ||
261 | QPixmap result( pix ); | ||
262 | result.setMask( mask ); | ||
263 | return result; | ||
264 | } | ||
265 | |||
233 | /* vim: et sw=4 ts=4 | 266 | /* vim: et sw=4 ts=4 |
234 | */ | 267 | */ |
diff --git a/noncore/multimedia/opieplayer2/mediawidget.h b/noncore/multimedia/opieplayer2/mediawidget.h index 9f13677..4599637 100644 --- a/noncore/multimedia/opieplayer2/mediawidget.h +++ b/noncore/multimedia/opieplayer2/mediawidget.h | |||
@@ -99,52 +99,57 @@ signals: | |||
99 | void backClicked(); | 99 | void backClicked(); |
100 | void moreClicked(); | 100 | void moreClicked(); |
101 | void lessClicked(); | 101 | void lessClicked(); |
102 | 102 | ||
103 | protected: | 103 | protected: |
104 | void setupButtons( const SkinButtonInfo *skinInfo, uint buttonCount, | 104 | void setupButtons( const SkinButtonInfo *skinInfo, uint buttonCount, |
105 | const Skin &skin ); | 105 | const Skin &skin ); |
106 | Button setupButton( const SkinButtonInfo &buttonInfo, const Skin &skin ); | 106 | Button setupButton( const SkinButtonInfo &buttonInfo, const Skin &skin ); |
107 | 107 | ||
108 | void loadDefaultSkin( const SkinButtonInfo *skinInfo, uint buttonCount, const QString &fileNameInfix = QString::null ); | 108 | void loadDefaultSkin( const SkinButtonInfo *skinInfo, uint buttonCount, const QString &fileNameInfix = QString::null ); |
109 | void loadSkin( const SkinButtonInfo *skinInfo, uint buttonCount, const Skin &skin ); | 109 | void loadSkin( const SkinButtonInfo *skinInfo, uint buttonCount, const Skin &skin ); |
110 | 110 | ||
111 | virtual void closeEvent( QCloseEvent * ); | 111 | virtual void closeEvent( QCloseEvent * ); |
112 | 112 | ||
113 | virtual void paintEvent( QPaintEvent *pe ); | 113 | virtual void paintEvent( QPaintEvent *pe ); |
114 | 114 | ||
115 | virtual void resizeEvent( QResizeEvent *e ); | ||
116 | |||
115 | Button *buttonAt( const QPoint &position ); | 117 | Button *buttonAt( const QPoint &position ); |
116 | 118 | ||
117 | virtual void mousePressEvent( QMouseEvent *event ); | 119 | virtual void mousePressEvent( QMouseEvent *event ); |
118 | virtual void mouseReleaseEvent( QMouseEvent *event ); | 120 | virtual void mouseReleaseEvent( QMouseEvent *event ); |
119 | 121 | ||
120 | virtual void makeVisible(); | 122 | virtual void makeVisible(); |
121 | 123 | ||
122 | void handleCommand( Command command, bool buttonDown ); | 124 | void handleCommand( Command command, bool buttonDown ); |
123 | 125 | ||
124 | bool isOverButton( const QPoint &position, int buttonId ) const; | 126 | bool isOverButton( const QPoint &position, int buttonId ) const; |
125 | 127 | ||
126 | void paintAllButtons( QPainter &p ); | 128 | void paintAllButtons( QPainter &p ); |
127 | void paintButton( const Button &button ); | 129 | void paintButton( const Button &button ); |
128 | void paintButton( QPainter &p, const Button &button ); | 130 | void paintButton( QPainter &p, const Button &button ); |
129 | 131 | ||
130 | void setToggleButton( Button &button, bool down ); | 132 | void setToggleButton( Button &button, bool down ); |
131 | void setToggleButton( Command command, bool down ); | 133 | void setToggleButton( Command command, bool down ); |
132 | void toggleButton( Button &button ); | 134 | void toggleButton( Button &button ); |
133 | 135 | ||
134 | MediaPlayerState &mediaPlayerState; | 136 | MediaPlayerState &mediaPlayerState; |
135 | PlayListWidget &playList; | 137 | PlayListWidget &playList; |
136 | 138 | ||
137 | ButtonVector buttons; | 139 | ButtonVector buttons; |
138 | 140 | ||
139 | QImage buttonMask; | 141 | QImage buttonMask; |
140 | 142 | ||
141 | QPoint upperLeftOfButtonMask; | 143 | QPoint upperLeftOfButtonMask; |
142 | 144 | ||
143 | QPixmap backgroundPixmap; | 145 | QPixmap backgroundPixmap; |
144 | QImage buttonUpImage; | 146 | QImage buttonUpImage; |
145 | QImage buttonDownImage; | 147 | QImage buttonDownImage; |
148 | |||
149 | static QPixmap combineImageWithBackground( const QImage &background, const QPixmap &pixmap, const QPoint &offset ); | ||
150 | static QPixmap addMaskToPixmap( const QPixmap &pix, const QBitmap &mask ); | ||
146 | }; | 151 | }; |
147 | 152 | ||
148 | #endif // MEDIAWIDGET_H | 153 | #endif // MEDIAWIDGET_H |
149 | /* vim: et sw=4 ts=4 | 154 | /* vim: et sw=4 ts=4 |
150 | */ | 155 | */ |
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp index bc47717..a8ff540 100644 --- a/noncore/multimedia/opieplayer2/videowidget.cpp +++ b/noncore/multimedia/opieplayer2/videowidget.cpp | |||
@@ -86,79 +86,51 @@ VideoWidget::VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlaye | |||
86 | 86 | ||
87 | slider = 0; | 87 | slider = 0; |
88 | 88 | ||
89 | loadSkin(); | 89 | loadSkin(); |
90 | 90 | ||
91 | setLength( mediaPlayerState.length() ); | 91 | setLength( mediaPlayerState.length() ); |
92 | setPosition( mediaPlayerState.position() ); | 92 | setPosition( mediaPlayerState.position() ); |
93 | setFullscreen( mediaPlayerState.isFullscreen() ); | 93 | setFullscreen( mediaPlayerState.isFullscreen() ); |
94 | setPlaying( mediaPlayerState.isPlaying() ); | 94 | setPlaying( mediaPlayerState.isPlaying() ); |
95 | } | 95 | } |
96 | 96 | ||
97 | 97 | ||
98 | VideoWidget::~VideoWidget() | 98 | VideoWidget::~VideoWidget() |
99 | { | 99 | { |
100 | } | 100 | } |
101 | 101 | ||
102 | QPixmap *combineVImageWithBackground( QImage img, QPixmap bg, QPoint offset ) { | 102 | void VideoWidget::resizeEvent( QResizeEvent *e ) { |
103 | QPixmap pix( img.width(), img.height() ); | ||
104 | QPainter p( &pix ); | ||
105 | p.drawTiledPixmap( pix.rect(), bg, offset ); | ||
106 | p.drawImage( 0, 0, img ); | ||
107 | return new QPixmap( pix ); | ||
108 | } | ||
109 | |||
110 | QPixmap maskVPixToMask( QPixmap pix, QBitmap mask ) { | ||
111 | QPixmap pixmap( pix ); | ||
112 | pixmap.setMask( mask ); | ||
113 | return pixmap; | ||
114 | } | ||
115 | |||
116 | void VideoWidget::resizeEvent( QResizeEvent * ) { | ||
117 | int h = height(); | 103 | int h = height(); |
118 | int w = width(); | 104 | int w = width(); |
119 | //int Vh = 160; | 105 | //int Vh = 160; |
120 | //int Vw = 220; | 106 | //int Vw = 220; |
121 | 107 | ||
122 | slider->setFixedWidth( w - 20 ); | 108 | slider->setFixedWidth( w - 20 ); |
123 | slider->setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); | 109 | slider->setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); |
124 | slider->setBackgroundOrigin( QWidget::ParentOrigin ); | 110 | slider->setBackgroundOrigin( QWidget::ParentOrigin ); |
125 | slider->setFocusPolicy( QWidget::NoFocus ); | 111 | slider->setFocusPolicy( QWidget::NoFocus ); |
126 | slider->setBackgroundPixmap( backgroundPixmap ); | 112 | slider->setBackgroundPixmap( backgroundPixmap ); |
127 | 113 | ||
128 | upperLeftOfButtonMask.rx() = 0;// ( imgUp->width() ) / 2; | 114 | upperLeftOfButtonMask.rx() = 0;// ( imgUp->width() ) / 2; |
129 | if(w>h) | 115 | if(w>h) |
130 | upperLeftOfButtonMask.ry() = 0; | 116 | upperLeftOfButtonMask.ry() = 0; |
131 | else | 117 | else |
132 | upperLeftOfButtonMask.ry() = 185;//(( Vh - imgUp->height() ) / 2) - 10; | 118 | upperLeftOfButtonMask.ry() = 185;//(( Vh - imgUp->height() ) / 2) - 10; |
133 | QPoint p = upperLeftOfButtonMask; | ||
134 | |||
135 | QPixmap *pixUp = combineVImageWithBackground( buttonUpImage, backgroundPixmap, p ); | ||
136 | QPixmap *pixDn = combineVImageWithBackground( buttonDownImage, backgroundPixmap, p ); | ||
137 | |||
138 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) { | ||
139 | Button &button = *it; | ||
140 | |||
141 | if ( !button.mask.isNull() ) { | ||
142 | button.pixUp = maskVPixToMask( *pixUp, button.mask ); | ||
143 | button.pixDown = maskVPixToMask( *pixDn, button.mask ); | ||
144 | } | ||
145 | } | ||
146 | 119 | ||
147 | delete pixUp; | 120 | MediaWidget::resizeEvent( e ); |
148 | delete pixDn; | ||
149 | } | 121 | } |
150 | 122 | ||
151 | void VideoWidget::sliderPressed() { | 123 | void VideoWidget::sliderPressed() { |
152 | videoSliderBeingMoved = TRUE; | 124 | videoSliderBeingMoved = TRUE; |
153 | } | 125 | } |
154 | 126 | ||
155 | void VideoWidget::sliderReleased() { | 127 | void VideoWidget::sliderReleased() { |
156 | videoSliderBeingMoved = FALSE; | 128 | videoSliderBeingMoved = FALSE; |
157 | if ( slider->width() == 0 ) { | 129 | if ( slider->width() == 0 ) { |
158 | return; | 130 | return; |
159 | } | 131 | } |
160 | long val = long((double)slider->value() * mediaPlayerState.length() / slider->width()); | 132 | long val = long((double)slider->value() * mediaPlayerState.length() / slider->width()); |
161 | mediaPlayerState.setPosition( val ); | 133 | mediaPlayerState.setPosition( val ); |
162 | } | 134 | } |
163 | 135 | ||
164 | void VideoWidget::setPosition( long i ) { | 136 | void VideoWidget::setPosition( long i ) { |