You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
3.3 KiB
130 lines
3.3 KiB
//-*-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 <tqvaluelist.h>
|
|
#include <tqwidget.h>
|
|
#include <tqlabel.h>
|
|
#include <tqptrlist.h>
|
|
#include <tqpixmap.h>
|
|
#include <tqrangecontrol.h>
|
|
|
|
class TQBoxLayout;
|
|
class TQLabel;
|
|
class TQPopupMenu;
|
|
class TQSlider;
|
|
|
|
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,
|
|
TQWidget* 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( TQColor high, TQColor low, TQColor back );
|
|
void setMutedColors( TQColor high, TQColor low, TQColor back );
|
|
TQSize sizeHint() const;
|
|
bool eventFilter( TQObject* obj, TQEvent* e );
|
|
TQSizePolicy 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:
|
|
TQPixmap icon( int icontype );
|
|
void setIcon( int icontype );
|
|
void createWidgets( bool showMuteLED, bool showRecordLED );
|
|
void updateValue( TQLabel *value, Volume::ChannelID chid );
|
|
|
|
bool m_linked;
|
|
ValueStyle m_valueStyle;
|
|
TQLabel *m_iconLabel;
|
|
KLedButton *m_muteLED;
|
|
KLedButton *m_recordLED;
|
|
TQWidget *m_label; // is either TQLabel or VerticalText
|
|
TQBoxLayout *_layout;
|
|
TQPtrList<TQWidget> m_sliders;
|
|
TQValueList<Volume::ChannelID> _slidersChids;
|
|
TQPtrList<TQLabel> _numbers;
|
|
// TQValueList<Volume::ChannelID> _numbersChids;
|
|
};
|
|
|
|
#endif
|