diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-29 12:36:37 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-06-29 12:36:37 +0000 |
| commit | cde2bf3d8d2c5d132805d1c142940410d6a22596 (patch) | |
| tree | 0652990365df5c2d667e04ab9f606e1592018d27 /src/plugins/Ui/skinned/horizontalslider.h | |
| parent | eb0064e40886328f3b3d9a809abd61c804903a7f (diff) | |
| download | qmmp-cde2bf3d8d2c5d132805d1c142940410d6a22596.tar.gz qmmp-cde2bf3d8d2c5d132805d1c142940410d6a22596.tar.bz2 qmmp-cde2bf3d8d2c5d132805d1c142940410d6a22596.zip | |
skinned: added horizontal slider
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5188 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Ui/skinned/horizontalslider.h')
| -rw-r--r-- | src/plugins/Ui/skinned/horizontalslider.h | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/plugins/Ui/skinned/horizontalslider.h b/src/plugins/Ui/skinned/horizontalslider.h new file mode 100644 index 000000000..c69bf4bbe --- /dev/null +++ b/src/plugins/Ui/skinned/horizontalslider.h @@ -0,0 +1,65 @@ +/*************************************************************************** + * Copyright (C) 2015 by Ilya Kotov * + * forkotov02@hotmail.ru * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ +#ifndef HORIZONTALSLIDER_H +#define HORIZONTALSLIDER_H + +#include <QWidget> +#include <QColor> + +class Skin; +class PixmapWidget; +/** + @author Ilya Kotov <forkotov02@hotmail.ru> +*/ +class HorizontalSlider : public QWidget +{ +Q_OBJECT +public: + HorizontalSlider(QWidget *parent = 0); + + ~HorizontalSlider(); + +public slots: + void setPos(int pos, int max); + +signals: + void sliderMoved (int); + +private slots: + void updateSkin(); + +private: + Skin *m_skin; + PixmapWidget *m_scroll; + int m_old; + bool m_moving, m_pressed; + int press_pos; + int m_min, m_max, m_value, pos, m_pos; + int convert(int); // value = convert(position); + QColor m_normal, m_normal_bg; + +protected: + void paintEvent(QPaintEvent*); + void mousePressEvent(QMouseEvent*); + void mouseReleaseEvent(QMouseEvent*); + void mouseMoveEvent(QMouseEvent*); +}; + +#endif |
