source: smplayer/trunk/src/mpcgui/mpcstyles.h

Last change on this file was 181, checked in by Silvan Scherrer, 9 years ago

smplayer: update trunk to version 16.8.0

  • Property svn:eol-style set to LF
File size: 1.9 KB
Line 
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
26enum QSliderDirection { SlUp, SlDown, SlLeft, SlRight };
27
28class MpcToolbarStyle : public QProxyStyle
29{
30 Q_OBJECT
31
32public:
33 MpcToolbarStyle() { setBaseStyle(QStyleFactory::create("windows")); };
34 void drawControl(ControlElement control, const QStyleOption *option,
35 QPainter *painter, const QWidget *widget) const;
36};
37
38class MpcTimeSlideStyle : public QProxyStyle
39{
40 Q_OBJECT
41
42public:
43 MpcTimeSlideStyle() { setBaseStyle(QStyleFactory::create("windows")); };
44 void drawComplexControl(ComplexControl cc, const QStyleOptionComplex *opt,
45 QPainter *p, const QWidget *widget) const;
46};
47
48class MpcVolumeSlideStyle : public QProxyStyle
49{
50 Q_OBJECT
51
52public:
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
Note: See TracBrowser for help on using the repository browser.