summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/sound/soundsettings.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp
index 672548f..3ceaf0c 100644
--- a/noncore/settings/sound/soundsettings.cpp
+++ b/noncore/settings/sound/soundsettings.cpp
@@ -73,12 +73,24 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl )
if( release.find("embedix",0,TRUE) !=-1)
stereoCheckBox->hide();
}
// else
// stereoCheckBox->hide();
+ int sRate=config.readNumEntry("SizeLimit", 30);
+ if(sRate ==30)
+ timeLimitComboBox->setCurrentItem(0);
+ else if(sRate==20)
+ timeLimitComboBox->setCurrentItem(1);
+ else if(sRate == 15)
+ timeLimitComboBox->setCurrentItem(2);
+ else if(sRate == 10)
+
+ timeLimitComboBox->setCurrentItem(3);
+ else
+ timeLimitComboBox->setCurrentItem(4);
sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1));
cfg.setGroup("Defaults");
keyComboBox->setCurrentItem(cfg.readNumEntry("toggleKey") );
@@ -88,12 +100,13 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl )
connect(volume, SIGNAL(valueChanged(int)), this, SLOT(setVolume(int)));
connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int)));
connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) );
connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) );
connect( LocationComboBox,SIGNAL(activated(const QString &)),this,SLOT( setLocation(const QString &)));
connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT(setKeyButton(const QString &)));
+ connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT(setSizeLimitButton(const QString &)));
// connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
}
// void SoundSettings::reject()
// {
// qDebug("reject");
@@ -245,6 +258,14 @@ void SoundSettings::setKeyButton(const QString &name) {
cfg.write();
}
void SoundSettings::updateLocationCombo() {
}
+
+void SoundSettings::setSizeLimitButton(const QString &index) {
+
+ Config cfg("Vmemo");
+ cfg.setGroup("Record");
+ cfg.writeEntry("SizeLimit", index);
+ cfg.write();
+}