]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/directslider.hpp
ec713ebd72f49c2784d857a8c01cbb7d7da1750e
[vlc] / modules / gui / qt4 / util / directslider.hpp
1 /*****************************************************************************
2  * directslider.hpp : A slider that goes where you click
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          with precious help from ahigerd on #qt@freenode
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef _DIRECTSLIDER_H_
26 #define _DIRECTSLIDER_H_
27
28 #include <QSlider>
29 #include <QMouseEvent>
30 #include <QLayout>
31
32 class DirectSlider : public QSlider
33 {
34 public:
35     DirectSlider( QWidget *_parent ) : QSlider( _parent ) {};
36     DirectSlider( Qt::Orientation q,QWidget *_parent ) : QSlider( q,_parent )
37     {};
38     virtual ~DirectSlider()   {};
39
40     void mousePressEvent(QMouseEvent* event)
41     {
42         if( event->button() != Qt::LeftButton && event->button() != Qt::MidButton )
43         {
44             QSlider::mousePressEvent( event );
45             return;
46         }
47
48         QMouseEvent newEvent( event->type(), event->pos(), event->globalPos(),
49                 Qt::MouseButton( event->button() ^ Qt::LeftButton ^ Qt::MidButton ),
50                 Qt::MouseButtons( event->buttons() ^ Qt::LeftButton ^ Qt::MidButton ),
51                 event->modifiers() );
52         QSlider::mousePressEvent( &newEvent );
53     }
54 };
55 #endif