summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.h
authorjeremy <jeremy>2002-02-10 13:17:18 (UTC)
committer jeremy <jeremy>2002-02-10 13:17:18 (UTC)
commit16db9b9928f9111f384c202c43a95fac88279b3d (patch) (unidiff)
treed3e65025008058f9005ceb3fe01283bf057a03ac /noncore/settings/sound/soundsettings.h
parent65fd59aacde1272bf390bf16ec151ff09b3542b2 (diff)
downloadopie-16db9b9928f9111f384c202c43a95fac88279b3d.zip
opie-16db9b9928f9111f384c202c43a95fac88279b3d.tar.gz
opie-16db9b9928f9111f384c202c43a95fac88279b3d.tar.bz2
Added support fon the new setMic, micChanged messages in opie base. Also
added support for defining the application to run when the rec button is pressed on the ipaq.
Diffstat (limited to 'noncore/settings/sound/soundsettings.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/noncore/settings/sound/soundsettings.h b/noncore/settings/sound/soundsettings.h
index b5c8cee..7679c1e 100644
--- a/noncore/settings/sound/soundsettings.h
+++ b/noncore/settings/sound/soundsettings.h
@@ -26,17 +26,21 @@
26 26
27class SoundSettings : public SoundSettingsBase 27class SoundSettings : public SoundSettingsBase
28{ 28{
29 Q_OBJECT 29Q_OBJECT
30 30
31public: 31public:
32 SoundSettings( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 32 SoundSettings( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
33 33
34protected: 34protected:
35 void accept(); 35 void accept();
36 void reject(); 36 void reject();
37 37
38private slots: 38private slots:
39 void setVolume(int); 39 void setVolume(int);
40 void setMic(int);
41
42 void volumeChanged( bool muted );
43 void micChanged( bool muted );
40}; 44};
41 45
42 46