~ubuntu-branches/ubuntu/utopic/smplayer/utopic-proposed

« back to all changes in this revision

Viewing changes to src/myslider.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2008-05-13 10:12:30 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080513101230-3rx6z4ulb2zkyd2t
Tags: 0.6.0-1
* New upstream release.
* Bumped debian/compat to 6.
* debian/control:
  - Require debhelper >= 6.
  - Relaxed the dependency of smplayer-translations on smplayer
    to Recommends. (Closes: #478713)
* Dropped debian/smplayer.desktop, changes applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  smplayer, GUI front-end for mplayer.
 
2
    Copyright (C) 2006-2008 Ricardo Villalba <rvm@escomposlinux.org>
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License
 
15
    along with this program; if not, write to the Free Software
 
16
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
*/
 
18
 
 
19
#ifndef _MYSLIDER_H_
 
20
#define _MYSLIDER_H_
 
21
 
 
22
#include <QSlider>
 
23
#include "config.h"
 
24
 
 
25
#define CODE_FOR_CLICK 1 // 0 = old code, 1 = code copied from QSlider, 2 = button swap
 
26
 
 
27
class QTimer;
 
28
 
 
29
class MySlider : public QSlider
 
30
{
 
31
        Q_OBJECT
 
32
 
 
33
public:
 
34
        MySlider( QWidget * parent );
 
35
        ~MySlider();
 
36
 
 
37
protected:
 
38
        void mousePressEvent ( QMouseEvent * event );
 
39
#if CODE_FOR_CLICK == 1
 
40
        inline int pick(const QPoint &pt) const;
 
41
        int pixelPosToRangeValue(int pos) const;
 
42
#if QT_VERSION < 0x040300
 
43
    void initStyleOption(QStyleOptionSlider *option) const;
 
44
#endif
 
45
#endif
 
46
};
 
47
 
 
48
#endif
 
49