summaryrefslogtreecommitdiffstats
path: root/kmix/kmix.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/kmix.h')
-rw-r--r--kmix/kmix.h30
1 files changed, 25 insertions, 5 deletions
diff --git a/kmix/kmix.h b/kmix/kmix.h
index e04aee43..e24c457a 100644
--- a/kmix/kmix.h
+++ b/kmix/kmix.h
@@ -49,18 +49,38 @@ class Mixer;
#include "mixer.h"
#include "mixdevicewidget.h"
+#include "kmixIface.h"
class
-KMixWindow : public TDEMainWindow
+KMixWindow : public TDEMainWindow, virtual public KMixIface
{
Q_OBJECT
-
public:
KMixWindow();
~KMixWindow();
+ // Additional functions for DCOP interface
+ void setVolume(int percentage);
+ void increaseVolume(int percentage);
+ void decreaseVolume(int percentage);
+ int volume();
+
+ void setAbsoluteVolume(long absoluteVolume);
+ long absoluteVolume();
+ long absoluteVolumeMin();
+ long absoluteVolumeMax();
+
+ void setMute(bool on);
+ void toggleMute();
+ bool mute();
+
+ TQString mixerName();
+ int deviceIndex();
+
+ void setBalance(int balance);
+
protected slots:
void saveSettings();
@@ -130,9 +150,9 @@ KMixWindow : public TDEMainWindow
void slotHWInfo();
void showSelectedMixer( int mixer );
void configureGlobalShortcuts();
- void toggleMuted();
- void increaseVolume();
- void decreaseVolume();
+ void slotToggleMuted() { toggleMute(); }
+ void slotIncreaseVolume() { increaseVolume(5); }
+ void slotDecreaseVolume() { decreaseVolume(5); }
};
#endif // KMIX_H