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