1 | /* Mpcgui for SMPlayer.
|
---|
2 | Copyright (C) 2008 matt_ <matt@endboss.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 MPC_STYLES_H
|
---|
20 | #define MPC_STYLES_H
|
---|
21 |
|
---|
22 | #include <QProxyStyle>
|
---|
23 | #include <QStyleOptionToolBar>
|
---|
24 | #include <QStyleFactory>
|
---|
25 |
|
---|
26 | enum QSliderDirection { SlUp, SlDown, SlLeft, SlRight };
|
---|
27 |
|
---|
28 | class MpcToolbarStyle : public QProxyStyle
|
---|
29 | {
|
---|
30 | Q_OBJECT
|
---|
31 |
|
---|
32 | public:
|
---|
33 | MpcToolbarStyle() { setBaseStyle(QStyleFactory::create("windows")); };
|
---|
34 | void drawControl(ControlElement control, const QStyleOption *option,
|
---|
35 | QPainter *painter, const QWidget *widget) const;
|
---|
36 | };
|
---|
37 |
|
---|
38 | class MpcTimeSlideStyle : public QProxyStyle
|
---|
39 | {
|
---|
40 | Q_OBJECT
|
---|
41 |
|
---|
42 | public:
|
---|
43 | MpcTimeSlideStyle() { setBaseStyle(QStyleFactory::create("windows")); };
|
---|
44 | void drawComplexControl(ComplexControl cc, const QStyleOptionComplex *opt,
|
---|
45 | QPainter *p, const QWidget *widget) const;
|
---|
46 | };
|
---|
47 |
|
---|
48 | class MpcVolumeSlideStyle : public QProxyStyle
|
---|
49 | {
|
---|
50 | Q_OBJECT
|
---|
51 |
|
---|
52 | public:
|
---|
53 | MpcVolumeSlideStyle() { setBaseStyle(QStyleFactory::create("windows")); };
|
---|
54 | void drawComplexControl(ComplexControl cc, const QStyleOptionComplex *opt,
|
---|
55 | QPainter *p, const QWidget *widget) const;
|
---|
56 | };
|
---|
57 |
|
---|
58 |
|
---|
59 | #endif
|
---|