-rw-r--r-- | noncore/multimedia/opieplayer2/videowidget.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp index f59772e..8409e5c 100644 --- a/noncore/multimedia/opieplayer2/videowidget.cpp +++ b/noncore/multimedia/opieplayer2/videowidget.cpp | |||
@@ -54,174 +54,175 @@ | |||
54 | 54 | ||
55 | 55 | ||
56 | namespace | 56 | namespace |
57 | { | 57 | { |
58 | 58 | ||
59 | const int xo = 2; // movable x offset | 59 | const int xo = 2; // movable x offset |
60 | const int yo = 0; // movable y offset | 60 | const int yo = 0; // movable y offset |
61 | 61 | ||
62 | const char * const skinV_mask_file_names[7] = { | 62 | const char * const skinV_mask_file_names[7] = { |
63 | "play","stop","fwd","back","up","down","full" | 63 | "play","stop","fwd","back","up","down","full" |
64 | }; | 64 | }; |
65 | 65 | ||
66 | } | 66 | } |
67 | 67 | ||
68 | VideoWidget::VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlayerState, QWidget* parent, const char* name ) | 68 | VideoWidget::VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlayerState, QWidget* parent, const char* name ) |
69 | : MediaWidget( playList, mediaPlayerState, parent, name ), scaledWidth( 0 ), scaledHeight( 0 ) | 69 | : MediaWidget( playList, mediaPlayerState, parent, name ), scaledWidth( 0 ), scaledHeight( 0 ) |
70 | { | 70 | { |
71 | setCaption( tr("OpiePlayer - Video") ); | 71 | setCaption( tr("OpiePlayer - Video") ); |
72 | 72 | ||
73 | Button defaultButton; | 73 | Button defaultButton; |
74 | Button toggleButton = defaultButton; | 74 | Button toggleButton = defaultButton; |
75 | toggleButton.type = ToggleButton; | 75 | toggleButton.type = ToggleButton; |
76 | 76 | ||
77 | buttons.push_back( toggleButton ); // play | 77 | buttons.push_back( toggleButton ); // play |
78 | buttons.push_back( toggleButton ); // stop | 78 | buttons.push_back( toggleButton ); // stop |
79 | buttons.push_back( toggleButton ); // next | 79 | buttons.push_back( toggleButton ); // next |
80 | buttons.push_back( toggleButton ); // previous | 80 | buttons.push_back( toggleButton ); // previous |
81 | buttons.push_back( toggleButton ); // volUp | 81 | buttons.push_back( toggleButton ); // volUp |
82 | buttons.push_back( toggleButton ); // volDown | 82 | buttons.push_back( toggleButton ); // volDown |
83 | buttons.push_back( toggleButton ); // fullscreen | 83 | buttons.push_back( toggleButton ); // fullscreen |
84 | 84 | ||
85 | videoFrame = new XineVideoWidget ( this, "Video frame" ); | 85 | videoFrame = new XineVideoWidget ( this, "Video frame" ); |
86 | 86 | ||
87 | connect ( videoFrame, SIGNAL( videoResized ( const QSize & )), this, SIGNAL( videoResized ( const QSize & ))); | 87 | connect ( videoFrame, SIGNAL( videoResized ( const QSize & )), this, SIGNAL( videoResized ( const QSize & ))); |
88 | connect ( videoFrame, SIGNAL( clicked () ), this, SLOT ( backToNormal() ) ); | 88 | connect ( videoFrame, SIGNAL( clicked () ), this, SLOT ( backToNormal() ) ); |
89 | 89 | ||
90 | Config cfg("OpiePlayer"); | 90 | Config cfg("OpiePlayer"); |
91 | cfg.setGroup("Options"); | 91 | cfg.setGroup("Options"); |
92 | skin = cfg.readEntry("Skin","default"); | 92 | skin = cfg.readEntry("Skin","default"); |
93 | 93 | ||
94 | QString skinPath = "opieplayer2/skins/" + skin; | 94 | QString skinPath = "opieplayer2/skins/" + skin; |
95 | backgroundPixmap = QPixmap( Resource::loadPixmap( QString("%1/background").arg(skinPath) ) ); | 95 | backgroundPixmap = QPixmap( Resource::loadPixmap( QString("%1/background").arg(skinPath) ) ); |
96 | imgUp = QImage( Resource::loadImage( QString("%1/skinV_up").arg(skinPath) ) ); | 96 | imgUp = QImage( Resource::loadImage( QString("%1/skinV_up").arg(skinPath) ) ); |
97 | imgDn = QImage( Resource::loadImage( QString("%1/skinV_down").arg(skinPath) ) ); | 97 | imgDn = QImage( Resource::loadImage( QString("%1/skinV_down").arg(skinPath) ) ); |
98 | 98 | ||
99 | buttonMask = QImage( imgUp.width(), imgUp.height(), 8, 255 ); | 99 | buttonMask = QImage( imgUp.width(), imgUp.height(), 8, 255 ); |
100 | buttonMask.fill( 0 ); | 100 | buttonMask.fill( 0 ); |
101 | 101 | ||
102 | for ( int i = 0; i < 7; i++ ) { | 102 | uint i = 0; |
103 | Button &button = buttons[ i ]; | 103 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it, ++i ) { |
104 | Button &button = *it; | ||
104 | 105 | ||
105 | QString filename = QString( QPEApplication::qpeDir() + "/pics/" + skinPath + "/skinV_mask_" + skinV_mask_file_names[i] + ".png" ); | 106 | QString filename = QString( QPEApplication::qpeDir() + "/pics/" + skinPath + "/skinV_mask_" + skinV_mask_file_names[i] + ".png" ); |
106 | button.mask = QBitmap( filename ); | 107 | button.mask = QBitmap( filename ); |
107 | 108 | ||
108 | if ( !button.mask.isNull() ) { | 109 | if ( !button.mask.isNull() ) { |
109 | QImage imgMask = button.mask.convertToImage(); | 110 | QImage imgMask = button.mask.convertToImage(); |
110 | uchar **dest = buttonMask.jumpTable(); | 111 | uchar **dest = buttonMask.jumpTable(); |
111 | for ( int y = 0; y < imgUp.height(); y++ ) { | 112 | for ( int y = 0; y < imgUp.height(); y++ ) { |
112 | uchar *line = dest[y]; | 113 | uchar *line = dest[y]; |
113 | for ( int x = 0; x < imgUp.width(); x++ ) { | 114 | for ( int x = 0; x < imgUp.width(); x++ ) { |
114 | if ( !qRed( imgMask.pixel( x, y ) ) ) | 115 | if ( !qRed( imgMask.pixel( x, y ) ) ) |
115 | line[x] = i + 1; | 116 | line[x] = i + 1; |
116 | } | 117 | } |
117 | } | 118 | } |
118 | } | 119 | } |
119 | } | 120 | } |
120 | 121 | ||
121 | setBackgroundPixmap( backgroundPixmap ); | 122 | setBackgroundPixmap( backgroundPixmap ); |
122 | 123 | ||
123 | slider = new QSlider( Qt::Horizontal, this ); | 124 | slider = new QSlider( Qt::Horizontal, this ); |
124 | slider->setMinValue( 0 ); | 125 | slider->setMinValue( 0 ); |
125 | slider->setMaxValue( 1 ); | 126 | slider->setMaxValue( 1 ); |
126 | slider->setBackgroundPixmap( Resource::loadPixmap( backgroundPix ) ); | 127 | slider->setBackgroundPixmap( Resource::loadPixmap( backgroundPix ) ); |
127 | //slider->setFocusPolicy( QWidget::NoFocus ); | 128 | //slider->setFocusPolicy( QWidget::NoFocus ); |
128 | 129 | ||
129 | resizeEvent( NULL ); | 130 | resizeEvent( NULL ); |
130 | 131 | ||
131 | setLength( mediaPlayerState.length() ); | 132 | setLength( mediaPlayerState.length() ); |
132 | setPosition( mediaPlayerState.position() ); | 133 | setPosition( mediaPlayerState.position() ); |
133 | setFullscreen( mediaPlayerState.isFullscreen() ); | 134 | setFullscreen( mediaPlayerState.isFullscreen() ); |
134 | setPlaying( mediaPlayerState.isPlaying() ); | 135 | setPlaying( mediaPlayerState.isPlaying() ); |
135 | } | 136 | } |
136 | 137 | ||
137 | 138 | ||
138 | VideoWidget::~VideoWidget() | 139 | VideoWidget::~VideoWidget() |
139 | { | 140 | { |
140 | } | 141 | } |
141 | 142 | ||
142 | QPixmap *combineVImageWithBackground( QImage img, QPixmap bg, QPoint offset ) { | 143 | QPixmap *combineVImageWithBackground( QImage img, QPixmap bg, QPoint offset ) { |
143 | QPixmap pix( img.width(), img.height() ); | 144 | QPixmap pix( img.width(), img.height() ); |
144 | QPainter p( &pix ); | 145 | QPainter p( &pix ); |
145 | p.drawTiledPixmap( pix.rect(), bg, offset ); | 146 | p.drawTiledPixmap( pix.rect(), bg, offset ); |
146 | p.drawImage( 0, 0, img ); | 147 | p.drawImage( 0, 0, img ); |
147 | return new QPixmap( pix ); | 148 | return new QPixmap( pix ); |
148 | } | 149 | } |
149 | 150 | ||
150 | QPixmap maskVPixToMask( QPixmap pix, QBitmap mask ) { | 151 | QPixmap maskVPixToMask( QPixmap pix, QBitmap mask ) { |
151 | QPixmap pixmap( pix ); | 152 | QPixmap pixmap( pix ); |
152 | pixmap.setMask( mask ); | 153 | pixmap.setMask( mask ); |
153 | return pixmap; | 154 | return pixmap; |
154 | } | 155 | } |
155 | 156 | ||
156 | void VideoWidget::resizeEvent( QResizeEvent * ) { | 157 | void VideoWidget::resizeEvent( QResizeEvent * ) { |
157 | int h = height(); | 158 | int h = height(); |
158 | int w = width(); | 159 | int w = width(); |
159 | //int Vh = 160; | 160 | //int Vh = 160; |
160 | //int Vw = 220; | 161 | //int Vw = 220; |
161 | 162 | ||
162 | slider->setFixedWidth( w - 20 ); | 163 | slider->setFixedWidth( w - 20 ); |
163 | slider->setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); | 164 | slider->setGeometry( QRect( 15, h - 22, w - 90, 20 ) ); |
164 | slider->setBackgroundOrigin( QWidget::ParentOrigin ); | 165 | slider->setBackgroundOrigin( QWidget::ParentOrigin ); |
165 | slider->setFocusPolicy( QWidget::NoFocus ); | 166 | slider->setFocusPolicy( QWidget::NoFocus ); |
166 | slider->setBackgroundPixmap( backgroundPixmap ); | 167 | slider->setBackgroundPixmap( backgroundPixmap ); |
167 | 168 | ||
168 | upperLeftOfButtonMask.rx() = 0;// ( imgUp->width() ) / 2; | 169 | upperLeftOfButtonMask.rx() = 0;// ( imgUp->width() ) / 2; |
169 | if(w>h) | 170 | if(w>h) |
170 | upperLeftOfButtonMask.ry() = 0; | 171 | upperLeftOfButtonMask.ry() = 0; |
171 | else | 172 | else |
172 | upperLeftOfButtonMask.ry() = 185;//(( Vh - imgUp->height() ) / 2) - 10; | 173 | upperLeftOfButtonMask.ry() = 185;//(( Vh - imgUp->height() ) / 2) - 10; |
173 | QPoint p = upperLeftOfButtonMask; | 174 | QPoint p = upperLeftOfButtonMask; |
174 | 175 | ||
175 | QPixmap *pixUp = combineVImageWithBackground( imgUp, backgroundPixmap, p ); | 176 | QPixmap *pixUp = combineVImageWithBackground( imgUp, backgroundPixmap, p ); |
176 | QPixmap *pixDn = combineVImageWithBackground( imgDn, backgroundPixmap, p ); | 177 | QPixmap *pixDn = combineVImageWithBackground( imgDn, backgroundPixmap, p ); |
177 | 178 | ||
178 | for ( int i = 0; i < 7; i++ ) { | 179 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) { |
179 | Button &button = buttons[ i ]; | 180 | Button &button = *it; |
180 | 181 | ||
181 | if ( !button.mask.isNull() ) { | 182 | if ( !button.mask.isNull() ) { |
182 | button.pixUp = maskVPixToMask( *pixUp, button.mask ); | 183 | button.pixUp = maskVPixToMask( *pixUp, button.mask ); |
183 | button.pixDown = maskVPixToMask( *pixDn, button.mask ); | 184 | button.pixDown = maskVPixToMask( *pixDn, button.mask ); |
184 | } | 185 | } |
185 | } | 186 | } |
186 | 187 | ||
187 | delete pixUp; | 188 | delete pixUp; |
188 | delete pixDn; | 189 | delete pixDn; |
189 | } | 190 | } |
190 | 191 | ||
191 | static bool videoSliderBeingMoved = FALSE; | 192 | static bool videoSliderBeingMoved = FALSE; |
192 | 193 | ||
193 | void VideoWidget::sliderPressed() { | 194 | void VideoWidget::sliderPressed() { |
194 | videoSliderBeingMoved = TRUE; | 195 | videoSliderBeingMoved = TRUE; |
195 | } | 196 | } |
196 | 197 | ||
197 | void VideoWidget::sliderReleased() { | 198 | void VideoWidget::sliderReleased() { |
198 | videoSliderBeingMoved = FALSE; | 199 | videoSliderBeingMoved = FALSE; |
199 | if ( slider->width() == 0 ) { | 200 | if ( slider->width() == 0 ) { |
200 | return; | 201 | return; |
201 | } | 202 | } |
202 | long val = long((double)slider->value() * mediaPlayerState.length() / slider->width()); | 203 | long val = long((double)slider->value() * mediaPlayerState.length() / slider->width()); |
203 | mediaPlayerState.setPosition( val ); | 204 | mediaPlayerState.setPosition( val ); |
204 | } | 205 | } |
205 | 206 | ||
206 | void VideoWidget::setPosition( long i ) { | 207 | void VideoWidget::setPosition( long i ) { |
207 | updateSlider( i, mediaPlayerState.length() ); | 208 | updateSlider( i, mediaPlayerState.length() ); |
208 | } | 209 | } |
209 | 210 | ||
210 | 211 | ||
211 | void VideoWidget::setLength( long max ) { | 212 | void VideoWidget::setLength( long max ) { |
212 | updateSlider( mediaPlayerState.position(), max ); | 213 | updateSlider( mediaPlayerState.position(), max ); |
213 | } | 214 | } |
214 | 215 | ||
215 | void VideoWidget::setDisplayType( MediaPlayerState::DisplayType displayType ) | 216 | void VideoWidget::setDisplayType( MediaPlayerState::DisplayType displayType ) |
216 | { | 217 | { |
217 | if ( displayType == MediaPlayerState::Video ) { | 218 | if ( displayType == MediaPlayerState::Video ) { |
218 | makeVisible(); | 219 | makeVisible(); |
219 | return; | 220 | return; |
220 | } | 221 | } |
221 | 222 | ||
222 | // Effectively blank the view next time we show it so it looks nicer | 223 | // Effectively blank the view next time we show it so it looks nicer |
223 | scaledWidth = 0; | 224 | scaledWidth = 0; |
224 | scaledHeight = 0; | 225 | scaledHeight = 0; |
225 | hide(); | 226 | hide(); |
226 | } | 227 | } |
227 | 228 | ||