1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
//-*-C++-*-
/*
* KMix -- KDE's full featured mini mixer
*
*
* Copyright (C) 2004 Chrisitan Esken <esken@kde.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library 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 MDWSLIDER_H
#define MDWSLIDER_H
#include <kpanelapplet.h>
#include <qvaluelist.h>
#include <qwidget.h>
#include <qlabel.h>
#include <qptrlist.h>
#include <qpixmap.h>
#include <qrangecontrol.h>
class QBoxLayout;
class QLabel;
class QPopupMenu;
class QSlider;
class KLed;
class KLedButton;
class KAction;
class KActionCollection;
class KSmallSlider;
class KGlobalAccel;
class MixDevice;
class VerticalText;
class Mixer;
class ViewBase;
#include "mixdevicewidget.h"
#include "volume.h"
class MDWSlider : public MixDeviceWidget
{
Q_OBJECT
public:
MDWSlider( Mixer *mixer, MixDevice* md,
bool showMuteLED, bool showRecordLED,
bool small, Qt::Orientation,
QWidget* parent = 0, ViewBase* mw = 0, const char* name = 0);
~MDWSlider() {}
void addActionToPopup( KAction *action );
bool isStereoLinked() const { return m_linked; };
bool isLabeled() const;
void setStereoLinked( bool value );
void setLabeled( bool value );
void setTicks( bool ticks );
void setIcons( bool value );
void setValueStyle( ValueStyle valueStyle );
void setColors( QColor high, QColor low, QColor back );
void setMutedColors( QColor high, QColor low, QColor back );
QSize sizeHint() const;
bool eventFilter( QObject* obj, QEvent* e );
QSizePolicy sizePolicy() const;
public slots:
void toggleRecsrc();
void toggleMuted();
void toggleStereoLinked();
void setDisabled();
void setDisabled( bool value );
void update();
virtual void showContextMenu();
signals:
void newVolume( int num, Volume volume );
void newMasterVolume( Volume volume );
void masterMuted( bool );
void newRecsrc( int num, bool on );
void toggleMenuBar(bool value);
private slots:
void setRecsrc( bool value );
void setMuted(bool value);
void volumeChange( int );
void increaseVolume();
void decreaseVolume();
private:
QPixmap icon( int icontype );
void setIcon( int icontype );
void createWidgets( bool showMuteLED, bool showRecordLED );
void updateValue( QLabel *value, Volume::ChannelID chid );
bool m_linked;
ValueStyle m_valueStyle;
QLabel *m_iconLabel;
KLedButton *m_muteLED;
KLedButton *m_recordLED;
QWidget *m_label; // is either QLabel or VerticalText
QBoxLayout *_layout;
QPtrList<QWidget> m_sliders;
QValueList<Volume::ChannelID> _slidersChids;
QPtrList<QLabel> _numbers;
// QValueList<Volume::ChannelID> _numbersChids;
};
#endif
|