summaryrefslogtreecommitdiff
path: root/src/skingui/volumecontrolpanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/skingui/volumecontrolpanel.h')
-rw-r--r--src/skingui/volumecontrolpanel.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/skingui/volumecontrolpanel.h b/src/skingui/volumecontrolpanel.h
new file mode 100644
index 0000000..6a24a8a
--- /dev/null
+++ b/src/skingui/volumecontrolpanel.h
@@ -0,0 +1,82 @@
+/* umplayer, GUI front-end for mplayer.
+ Copyright (C) 2010 Ori Rejwan
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#ifndef VOLUMECONTROLPANEL_H
+#define VOLUMECONTROLPANEL_H
+
+#include <QWidget>
+#include "mybutton.h"
+#include "panelseeker.h"
+
+class VolumeControlPanel : public QWidget
+{
+Q_OBJECT
+Q_PROPERTY( QPixmap mute READ muteIcon WRITE setMuteIcon )
+Q_PROPERTY( QPixmap max READ maxIcon WRITE setMaxIcon )
+Q_PROPERTY( QPixmap fullscreen READ fullscreenIcon WRITE setFullscreenIcon)
+Q_PROPERTY( QPixmap playlist READ playlistIcon WRITE setPlaylistIcon)
+Q_PROPERTY( QPixmap equalizer READ equalizerIcon WRITE setEqualizerIcon)
+Q_PROPERTY( QPixmap volumebar READ volumebarPix WRITE setVolumebarPix)
+Q_PROPERTY( QPixmap volumebarProgress READ volumebarProgressPix WRITE setVolumebarProgressPix)
+Q_PROPERTY( QPixmap volumeKnob READ volumeKnobPix WRITE setVolumeKnobPix)
+
+private:
+ MyButton* muteButton;
+ MyButton* maxButton;
+ MyButton* fullscreenButton;
+ MyButton* playlistButton;
+ MyButton* equalizerButton;
+ PanelSeeker* volumeBar;
+ void setButtonIcons( MyButton* button, QPixmap pix);
+
+public:
+ explicit VolumeControlPanel(QWidget *parent = 0);
+ QPixmap muteIcon() { return muteButton->myIcon().pixmap(MyIcon::Normal, MyIcon::Off); }
+ QPixmap maxIcon() { return maxButton->myIcon().pixmap(MyIcon::Normal, MyIcon::Off); }
+ QPixmap fullscreenIcon() { return fullscreenButton->myIcon().pixmap(MyIcon::Normal, MyIcon::Off); }
+ QPixmap playlistIcon() { return playlistButton->myIcon().pixmap(MyIcon::Normal, MyIcon::Off); }
+ QPixmap equalizerIcon() { return equalizerButton->myIcon().pixmap(MyIcon::Normal, MyIcon::Off); }
+ QPixmap volumebarPix() { return volumeBar->centerIcon(); }
+ QPixmap volumebarProgressPix() { return volumeBar->progressIcon(); }
+ QPixmap volumeKnobPix() { return volumeBar->knobIcon(); }
+
+ void setMuteIcon( QPixmap pix) { setButtonIcons(muteButton, pix);}
+ void setMaxIcon( QPixmap pix) { setButtonIcons(maxButton, pix);}
+ void setFullscreenIcon( QPixmap pix) {setButtonIcons(fullscreenButton, pix);}
+ void setPlaylistIcon( QPixmap pix) {setButtonIcons(playlistButton, pix);}
+ void setEqualizerIcon( QPixmap pix) {setButtonIcons(equalizerButton, pix);}
+ void setVolumebarPix(QPixmap pix) { volumeBar->setCenterIcon(pix);}
+ void setVolumebarProgressPix(QPixmap pix) { volumeBar->setProgressIcon(pix);}
+ void setVolumeKnobPix(QPixmap pix) { volumeBar->setKnobIcon(pix); }
+ void setActionCollection(QList<QAction*> actions);
+ /* bool eventFilter(QObject *watched, QEvent *event); */
+
+signals:
+ void volumeChanged(int);
+
+public slots:
+ void setVolumeMax() { volumeBar->setValue( volumeBar->maximum()); }
+ void setVolumeMin() { volumeBar->setValue( volumeBar->minimum()); }
+ void setVolume(int value);
+
+protected:
+ virtual void changeEvent (QEvent * event);
+ virtual void retranslateStrings();
+};
+
+#endif // VOLUMECONTROLPANEL_H