]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/customwidgets.cpp
Qt: couple of minor corrections
[vlc] / modules / gui / qt4 / util / customwidgets.cpp
1 /*****************************************************************************
2  * customwidgets.cpp: Custom widgets
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * Copyright (C) 2004 Daniel Molkentin <molkentin@kde.org>
6  * $Id$
7  *
8  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
9  * The "ClickLineEdit" control is based on code by  Daniel Molkentin
10  * <molkentin@kde.org> for libkdepim
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include "customwidgets.hpp"
32 #include "qt4.hpp" /*needed for qtr and CONNECT, but not necessary */
33
34 #include <QPainter>
35 #include <QColorGroup>
36 #include <QRect>
37 #include <QKeyEvent>
38 #include <QWheelEvent>
39 #include <QHBoxLayout>
40 #include <QStyle>
41 #include <QStyleOption>
42 #include <vlc_intf_strings.h>
43 #include <vlc_keys.h>
44 #include <wctype.h> /* twolower() */
45
46 ClickLineEdit::ClickLineEdit( const QString &msg, QWidget *parent) : QLineEdit( parent )
47 {
48     mDrawClickMsg = true;
49     setClickMessage( msg );
50 }
51
52 void ClickLineEdit::setClickMessage( const QString &msg )
53 {
54     mClickMessage = msg;
55     repaint();
56 }
57
58
59 void ClickLineEdit::setText( const QString &txt )
60 {
61     mDrawClickMsg = txt.isEmpty();
62     repaint();
63     QLineEdit::setText( txt );
64 }
65
66 void ClickLineEdit::paintEvent( QPaintEvent *pe )
67 {
68     QLineEdit::paintEvent( pe );
69     if ( mDrawClickMsg == true && !hasFocus() ) {
70         QPainter p( this );
71         QPen tmp = p.pen();
72         p.setPen( palette().color( QPalette::Disabled, QPalette::Text ) );
73         QRect cr = contentsRect();
74         // Add two pixel margin on the left side
75         cr.setLeft( cr.left() + 3 );
76         p.drawText( cr, Qt::AlignLeft | Qt::AlignVCenter, mClickMessage );
77         p.setPen( tmp );
78         p.end();
79     }
80 }
81
82 void ClickLineEdit::dropEvent( QDropEvent *ev )
83 {
84     mDrawClickMsg = false;
85     QLineEdit::dropEvent( ev );
86 }
87
88 void ClickLineEdit::focusInEvent( QFocusEvent *ev )
89 {
90     if ( mDrawClickMsg == true ) {
91         mDrawClickMsg = false;
92         repaint();
93     }
94     QLineEdit::focusInEvent( ev );
95 }
96
97 void ClickLineEdit::focusOutEvent( QFocusEvent *ev )
98 {
99     if ( text().isEmpty() ) {
100         mDrawClickMsg = true;
101         repaint();
102     }
103     QLineEdit::focusOutEvent( ev );
104 }
105
106 QVLCFramelessButton::QVLCFramelessButton( QWidget *parent )
107   : QPushButton( parent )
108 {
109     setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Preferred );
110 }
111
112 void QVLCFramelessButton::paintEvent( QPaintEvent * event )
113 {
114     QPainter painter( this );
115     QPixmap pix = icon().pixmap( size() );
116     QPoint pos( (width() - pix.width()) / 2, (height() - pix.height()) / 2 );
117     painter.drawPixmap( QRect( pos.x(), pos.y(), pix.width(), pix.height() ), pix );
118 }
119
120 QSize QVLCFramelessButton::sizeHint() const
121 {
122     return iconSize();
123 }
124
125 SearchLineEdit::SearchLineEdit( QWidget *parent ) : QLineEdit( parent )
126 {
127     clearButton = new QVLCFramelessButton( this );
128     clearButton->setIcon( QIcon( ":/toolbar/clear" ) );
129     clearButton->setIconSize( QSize( 16, 16 ) );
130     clearButton->setCursor( Qt::ArrowCursor );
131     clearButton->setToolTip( qfu(vlc_pgettext("Tooltip|Clear", "Clear")) );
132     clearButton->hide();
133
134     CONNECT( clearButton, clicked(), this, clear() );
135
136     int frameWidth = style()->pixelMetric( QStyle::PM_DefaultFrameWidth, 0, this );
137
138     QFontMetrics metrics( font() );
139     QString styleSheet = QString( "min-height: %1px; "
140                                   "padding-top: 1px; "
141                                   "padding-bottom: 1px; "
142                                   "padding-right: %2px;" )
143                                   .arg( metrics.height() + ( 2 * frameWidth ) )
144                                   .arg( clearButton->sizeHint().width() + 1 );
145     setStyleSheet( styleSheet );
146
147     setMessageVisible( true );
148
149     CONNECT( this, textEdited( const QString& ),
150              this, updateText( const QString& ) );
151 }
152
153 void SearchLineEdit::clear()
154 {
155     setText( QString() );
156     clearButton->hide();
157     setMessageVisible( true );
158 }
159
160 void SearchLineEdit::setMessageVisible( bool on )
161 {
162     message = on;
163     repaint();
164     return;
165 }
166
167 void SearchLineEdit::updateText( const QString& text )
168 {
169     clearButton->setVisible( !text.isEmpty() );
170 }
171
172 void SearchLineEdit::resizeEvent ( QResizeEvent * event )
173 {
174   QLineEdit::resizeEvent( event );
175   int frameWidth = style()->pixelMetric(QStyle::PM_DefaultFrameWidth,0,this);
176   clearButton->resize( clearButton->sizeHint().width(), height() );
177   clearButton->move( width() - clearButton->width() - frameWidth, 0 );
178 }
179
180 void SearchLineEdit::focusInEvent( QFocusEvent *event )
181 {
182   if( message )
183   {
184       setMessageVisible( false );
185   }
186   QLineEdit::focusInEvent( event );
187 }
188
189 void SearchLineEdit::focusOutEvent( QFocusEvent *event )
190 {
191   if( text().isEmpty() )
192   {
193       setMessageVisible( true );
194   }
195   QLineEdit::focusOutEvent( event );
196 }
197
198 void SearchLineEdit::paintEvent( QPaintEvent *event )
199 {
200   QLineEdit::paintEvent( event );
201   if( !message ) return;
202   QStyleOption option;
203   option.initFrom( this );
204   QRect rect = style()->subElementRect( QStyle::SE_LineEditContents, &option, this )
205                   .adjusted( 3, 0, clearButton->width() + 1, 0 );
206   QPainter painter( this );
207   painter.setPen( palette().color( QPalette::Disabled, QPalette::Text ) );
208   painter.drawText( rect, Qt::AlignLeft | Qt::AlignVCenter, qtr( I_PL_FILTER ) );
209 }
210
211 /***************************************************************************
212  * Hotkeys converters
213  ***************************************************************************/
214 int qtKeyModifiersToVLC( QInputEvent* e )
215 {
216     int i_keyModifiers = 0;
217     if( e->modifiers() & Qt::ShiftModifier ) i_keyModifiers |= KEY_MODIFIER_SHIFT;
218     if( e->modifiers() & Qt::AltModifier ) i_keyModifiers |= KEY_MODIFIER_ALT;
219     if( e->modifiers() & Qt::ControlModifier ) i_keyModifiers |= KEY_MODIFIER_CTRL;
220     if( e->modifiers() & Qt::MetaModifier ) i_keyModifiers |= KEY_MODIFIER_META;
221     return i_keyModifiers;
222 }
223
224 typedef struct
225 {
226     int      qt;
227     uint32_t vlc;
228 } vlc_qt_key_t;
229
230 static const vlc_qt_key_t keys[] =
231 {
232     { Qt::Key_Escape,                KEY_ESC },
233     { Qt::Key_Tab,                   '\t', },
234     // Qt::Key_Backtab
235     { Qt::Key_Backspace,             '\b' },
236     { Qt::Key_Return,                '\r' },
237     { Qt::Key_Enter,                 '\r' }, // numeric pad
238     { Qt::Key_Insert,                KEY_INSERT },
239     { Qt::Key_Delete,                KEY_DELETE },
240     // Qt::Key_Pause
241     // Qt::Key_Print
242     // Qt::Key_SysReq
243     // Qt::Key_Clear
244     { Qt::Key_Home,                  KEY_HOME },
245     { Qt::Key_End,                   KEY_END },
246     { Qt::Key_Left,                  KEY_LEFT },
247     { Qt::Key_Up,                    KEY_UP },
248     { Qt::Key_Right,                 KEY_RIGHT },
249     { Qt::Key_Down,                  KEY_DOWN },
250     { Qt::Key_PageUp,                KEY_PAGEUP },
251     { Qt::Key_PageDown,              KEY_PAGEDOWN },
252     // Qt::Key_Shift
253     // Qt::Key_Control
254     // Qt::Key_Meta
255     // Qt::Key_Alt
256     // Qt::Key_CapsLock
257     // Qt::Key_NumLock
258     // Qt::Key_ScrollLock
259     /* F1 - F35 */
260     // Qt::Key_Super_L
261     // Qt::Key_Super_R
262     { Qt::Key_Menu,                  KEY_MENU },
263     // Qt::Key_Hyper_L
264     // Qt::Key_Hyper_R
265     // Qt::Key_Help
266     // Qt::Key_Direction_L
267     // Qt::Key_Direction_R
268
269     // Qt::Key_Multi_key
270     // Qt::Key_Codeinput
271     // Qt::Key_SingleCandidate
272     // Qt::Key_MultipleCandidate
273     // Qt::Key_PreviousCandidate
274     // Qt::Key_Mode_switch
275     // Qt::Key_Kanji
276     // Qt::Key_Muhenkan
277     // Qt::Key_Henkan
278     // Qt::Key_Romaji
279     // Qt::Key_Hiragana
280     // Qt::Key_Katakana
281     // Qt::Key_Hiragana_Katakana
282     // Qt::Key_Zenkaku
283     // Qt::Key_Hankaku
284     // Qt::Key_Zenkaku_Hankaku
285     // Qt::Key_Touroku
286     // Qt::Key_Massyo
287     // Qt::Key_Kana_Lock
288     // Qt::Key_Kana_Shift
289     // Qt::Key_Eisu_Shift
290     // Qt::Key_Eisu_toggle
291     // Qt::Key_Hangul
292     // Qt::Key_Hangul_Start
293     // Qt::Key_Hangul_End
294     // Qt::Key_Hangul_Hanja
295     // Qt::Key_Hangul_Jamo
296     // Qt::Key_Hangul_Romaja
297     // Qt::Key_Hangul_Jeonja
298     // Qt::Key_Hangul_Banja
299     // Qt::Key_Hangul_PreHanja
300     // Qt::Key_Hangul_PostHanja
301     // Qt::Key_Hangul_Special
302     // Qt::Key_Dead_Grave
303     // Qt::Key_Dead_Acute
304     // Qt::Key_Dead_Circumflex
305     // Qt::Key_Dead_Tilde
306     // Qt::Key_Dead_Macron
307     // Qt::Key_Dead_Breve
308     // Qt::Key_Dead_Abovedot
309     // Qt::Key_Dead_Diaeresis
310     // Qt::Key_Dead_Abovering
311     // Qt::Key_Dead_Doubleacute
312     // Qt::Key_Dead_Caron
313     // Qt::Key_Dead_Cedilla
314     // Qt::Key_Dead_Ogonek
315     // Qt::Key_Dead_Iota
316     // Qt::Key_Dead_Voiced_Sound
317     // Qt::Key_Dead_Semivoiced_Sound
318     // Qt::Key_Dead_Belowdot
319     // Qt::Key_Dead_Hook
320     // Qt::Key_Dead_Horn
321     { Qt::Key_Back,                  KEY_BROWSER_BACK },
322     { Qt::Key_Forward,               KEY_BROWSER_FORWARD },
323     { Qt::Key_Stop,                  KEY_BROWSER_STOP },
324     { Qt::Key_Refresh,               KEY_BROWSER_REFRESH },
325     { Qt::Key_VolumeDown,            KEY_VOLUME_DOWN },
326     { Qt::Key_VolumeMute,            KEY_VOLUME_MUTE },
327     { Qt::Key_VolumeUp,              KEY_VOLUME_UP },
328     // Qt::Key_BassBoost
329     // Qt::Key_BassUp
330     // Qt::Key_BassDown
331     // Qt::Key_TrebleUp
332     // Qt::Key_TrebleDown
333     { Qt::Key_MediaPlay,             KEY_MEDIA_PLAY_PAUSE },
334     { Qt::Key_MediaStop,             KEY_MEDIA_STOP },
335     { Qt::Key_MediaPrevious,         KEY_MEDIA_PREV_TRACK },
336     { Qt::Key_MediaNext,             KEY_MEDIA_NEXT_TRACK },
337     // Qt::Key_MediaRecord
338     { Qt::Key_HomePage,              KEY_BROWSER_HOME },
339     { Qt::Key_Favorites,             KEY_BROWSER_FAVORITES },
340     { Qt::Key_Search,                KEY_BROWSER_SEARCH },
341     // Qt::Key_Standby
342     // Qt::Key_OpenUrl
343     // Qt::Key_LaunchMail
344     // Qt::Key_LaunchMedia
345     /* Qt::Key_Launch0 through Qt::Key_LaunchF */
346     // Qt::Key_MediaLast
347 };
348
349 static int keycmp( const void *a, const void *b )
350 {
351     const int *q = (const int *)a;
352     const vlc_qt_key_t *m = (const vlc_qt_key_t *)b;
353
354     return *q - m->qt;
355 }
356
357 int qtEventToVLCKey( QKeyEvent *e )
358 {
359     int qtk = e->key();
360     uint32_t i_vlck = 0;
361
362     if( qtk <= 0xff )
363         /* VLC and X11 use lowercase whereas Qt uses uppercase */
364 #ifdef __STDC_ISO_10646__
365         i_vlck = towlower( qtk );
366 #else
367 # error FIXME
368 #endif
369     else /* Qt and X11 go to F35, but VLC stops at F12 */
370     if( qtk >= Qt::Key_F1 && qtk <= Qt::Key_F12 )
371         i_vlck = qtk - Qt::Key_F1 + KEY_F1;
372     else
373     {
374         const vlc_qt_key_t *map;
375
376         map = (const vlc_qt_key_t *)
377               bsearch( &qtk, (const void *)keys, sizeof(keys)/sizeof(keys[0]),
378                        sizeof(*keys), keycmp );
379         if( map != NULL )
380             i_vlck = map->vlc;
381     }
382
383     /* Handle modifiers */
384     i_vlck |= qtKeyModifiersToVLC( e );
385     return i_vlck;
386 }
387
388 int qtWheelEventToVLCKey( QWheelEvent *e )
389 {
390     int i_vlck = 0;
391     /* Handle modifiers */
392     i_vlck |= qtKeyModifiersToVLC( e );
393     if ( e->delta() > 0 )
394         i_vlck |= KEY_MOUSEWHEELUP;
395     else
396         i_vlck |= KEY_MOUSEWHEELDOWN;
397     return i_vlck;
398 }
399
400 QString VLCKeyToString( int val )
401 {
402     char *base = KeyToString (val & ~KEY_MODIFIER);
403
404     QString r = "";
405     if( val & KEY_MODIFIER_CTRL )
406         r+= qfu( "Ctrl+" );
407     if( val & KEY_MODIFIER_ALT )
408         r+= qfu( "Alt+" );
409     if( val & KEY_MODIFIER_SHIFT )
410         r+= qfu( "Shift+" );
411
412     if (base)
413     {
414         r += qfu( base );
415         free( base );
416     }
417     else
418         r += qtr( "Unset" );
419     return r;
420 }
421