summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettings.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sound/soundsettings.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettings.cpp54
1 files changed, 32 insertions, 22 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp
index 20f0dab..dd341c0 100644
--- a/noncore/settings/sound/soundsettings.cpp
+++ b/noncore/settings/sound/soundsettings.cpp
@@ -23,60 +23,64 @@
23 23
24#include <qpe/qpeapplication.h> 24#include <qpe/qpeapplication.h>
25#include <qpe/config.h> 25#include <qpe/config.h>
26#include <qpe/qcopenvelope_qws.h> 26#include <qpe/qcopenvelope_qws.h>
27#include <qpe/storage.h> 27#include <qpe/storage.h>
28 28
29#include <qmessagebox.h> 29#include <qmessagebox.h>
30#include <qapplication.h> 30#include <qapplication.h>
31#include <qslider.h> 31#include <qslider.h>
32#include <qcheckbox.h> 32#include <qcheckbox.h>
33#include <qlineedit.h> 33#include <qlineedit.h>
34#include <qcombobox.h> 34#include <qcombobox.h>
35#include <qlabel.h>
35 36
36#include <sys/utsname.h> 37#include <sys/utsname.h>
37#include <sys/time.h> 38#include <sys/time.h>
38#include <sys/types.h> 39#include <sys/types.h>
39#include <unistd.h> 40#include <unistd.h>
40#include <stdio.h> 41#include <stdio.h>
41#include <sys/stat.h> 42#include <sys/stat.h>
42 43
44
43SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) 45SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl )
44 : SoundSettingsBase( parent, objname, TRUE, fl ) 46 : SoundSettingsBase( parent, objname, TRUE, fl )
45{ 47{
46 keyReset=FALSE; 48 keyReset=FALSE;
47 49 noWarning=false;
48 Config config( "qpe"); 50 Config config( "qpe");
49 config.setGroup( "Volume" ); 51 config.setGroup( "Volume" );
50 Config cfg("Vmemo"); 52 Config cfg("Vmemo");
51 connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); 53 connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
52 AlertCheckBox->setChecked(cfg.readBoolEntry("Alert")); 54 AlertCheckBox->setChecked(cfg.readBoolEntry("Alert"));
53 55
54 cfg.setGroup("Record"); 56 cfg.setGroup("Record");
55 int rate=config.readNumEntry("SampleRate", 22050); 57 int rate=config.readNumEntry("SampleRate", 22050);
56 if(rate == 8000) 58 if(rate == 8000)
57 sampleRate->setCurrentItem(0); 59 sampleRate->setCurrentItem(0);
58 else if(rate == 11025) 60 else if(rate == 11025)
59 sampleRate->setCurrentItem(1); 61 sampleRate->setCurrentItem(1);
60 else if(rate == 22050) 62 else if(rate == 22050)
61 sampleRate->setCurrentItem(2); 63 sampleRate->setCurrentItem(2);
62 else if(rate == 33075) 64 else if(rate == 33075)
63 sampleRate->setCurrentItem(3); 65 sampleRate->setCurrentItem(3);
64 else if(rate==44100) 66 else if(rate==44100)
65 sampleRate->setCurrentItem(4); 67 sampleRate->setCurrentItem(4);
66 68
67 stereoCheckBox->setChecked(cfg.readNumEntry("Stereo", 0)); //TODO hide if zaurus- mono only 69 stereoCheckBox->setChecked(cfg.readNumEntry("Stereo", 0));
70//TODO hide if zaurus- mono only
68 71
69#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) //since ipaq and zaurus have particular 72#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX)
70 //devices 73//since ipaq and zaurus have particular
74//devices
71 bool systemZaurus=FALSE; 75 bool systemZaurus=FALSE;
72 struct utsname name; /* check for embedix kernel running on the zaurus*/ 76 struct utsname name; /* check for embedix kernel running on the zaurus*/
73 if (uname(&name) != -1) {// TODO change this here,... 77 if (uname(&name) != -1) {// TODO change this here,...
74 QString release=name.release; 78 QString release=name.release;
75 if( release.find("embedix",0,TRUE) != -1) { 79 if( release.find("embedix",0,TRUE) != -1) {
76 qDebug("IS System Zaurus"); 80 qDebug("IS System Zaurus");
77 systemZaurus=TRUE; 81 systemZaurus=TRUE;
78 } 82 }
79 } 83 }
80 if(!systemZaurus) { 84 if(!systemZaurus) {
81 stereoCheckBox->setChecked(TRUE); 85 stereoCheckBox->setChecked(TRUE);
82 } 86 }
@@ -97,27 +101,32 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl )
97 timeLimitComboBox->setCurrentItem(3); 101 timeLimitComboBox->setCurrentItem(3);
98 else if(sRate == 5) 102 else if(sRate == 5)
99 timeLimitComboBox->setCurrentItem(4); 103 timeLimitComboBox->setCurrentItem(4);
100 else 104 else
101 timeLimitComboBox->setCurrentItem(5); 105 timeLimitComboBox->setCurrentItem(5);
102 106
103 sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1)); 107 sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1));
104 108
105 cfg.setGroup("Defaults"); 109 cfg.setGroup("Defaults");
106 keyComboBox->setCurrentItem(cfg.readNumEntry("toggleKey") ); 110 keyComboBox->setCurrentItem(cfg.readNumEntry("toggleKey") );
107 111
108 updateStorageCombo(); 112 updateStorageCombo();
109 connect( LocationComboBox,SIGNAL(activated(const QString &)),this,SLOT( setLocation(const QString &))); 113 connect( LocationComboBox,SIGNAL(activated(const QString &)), this,
110 connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT( setKeyButton(const QString &))); 114 SLOT( setLocation(const QString &)));
111 connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT( setSizeLimitButton(const QString &))); 115 connect( keyComboBox,SIGNAL(activated( int)), this,
116 SLOT( setKeyButton( int)));
117 connect( timeLimitComboBox,SIGNAL(activated( const QString &)), this,
118 SLOT( setSizeLimitButton(const QString &)));
119 connect( restartCheckBox,SIGNAL( toggled( bool)), this,
120 SLOT( restartOpie( bool)));
112// connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); 121// connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) );
113} 122}
114 123
115void SoundSettings::updateStorageCombo() { 124void SoundSettings::updateStorageCombo() {
116 125
117 Config config( "Vmemo" ); 126 Config config( "Vmemo" );
118 config.setGroup( "System" ); 127 config.setGroup( "System" );
119 QString loc = config.readEntry("RecLocation","/"); 128 QString loc = config.readEntry("RecLocation","/");
120 int i=0; 129 int i=0;
121 int set=0; 130 int set=0;
122 StorageInfo storageInfo; 131 StorageInfo storageInfo;
123 QString sName, sPath; 132 QString sName, sPath;
@@ -125,25 +134,25 @@ void SoundSettings::updateStorageCombo() {
125 list << "Documents : "+QPEApplication::documentDir(); 134 list << "Documents : "+QPEApplication::documentDir();
126 list << "tmp : /tmp"; 135 list << "tmp : /tmp";
127 136
128 const QList<FileSystem> &fs = storageInfo.fileSystems(); 137 const QList<FileSystem> &fs = storageInfo.fileSystems();
129 QListIterator<FileSystem> it ( fs ); 138 QListIterator<FileSystem> it ( fs );
130 for( ; it.current(); ++it ){ 139 for( ; it.current(); ++it ){
131 const QString name = (*it)->name(); 140 const QString name = (*it)->name();
132 const QString path = (*it)->path(); 141 const QString path = (*it)->path();
133 qDebug("storage name "+name +" storage path is "+path); 142 qDebug("storage name "+name +" storage path is "+path);
134 list << name + ": " +path; 143 list << name + ": " +path;
135 if( loc.find( path,0,TRUE) != -1) 144 if( loc.find( path,0,TRUE) != -1)
136 set = i; 145 set = i;
137// if(dit.current()->file().find(path) != -1 ) storage=name; 146// if(dit.current()->file().find(path) != -1 ) storage=name;
138 i++; 147 i++;
139 } 148 }
140 149
141 LocationComboBox->insertStringList(list); 150 LocationComboBox->insertStringList(list);
142 qDebug("set item %d", set); 151 qDebug("set item %d", set);
143 LocationComboBox->setCurrentItem(set); 152 LocationComboBox->setCurrentItem(set);
144} 153}
145 154
146void SoundSettings::setLocation(const QString & string) { 155void SoundSettings::setLocation(const QString & string) {
147 Config config( "Vmemo" ); 156 Config config( "Vmemo" );
148 config.setGroup( "System" ); 157 config.setGroup( "System" );
149 config.writeEntry("RecLocation",string); 158 config.writeEntry("RecLocation",string);
@@ -151,51 +160,52 @@ void SoundSettings::setLocation(const QString & string) {
151 config.write(); 160 config.write();
152} 161}
153 162
154void SoundSettings::cleanUp() { 163void SoundSettings::cleanUp() {
155 Config cfg("Vmemo"); 164 Config cfg("Vmemo");
156 cfg.writeEntry("Alert",AlertCheckBox->isChecked()); 165 cfg.writeEntry("Alert",AlertCheckBox->isChecked());
157 166
158 cfg.setGroup("Record"); 167 cfg.setGroup("Record");
159 cfg.writeEntry("SampleRate",sampleRate->currentText()); 168 cfg.writeEntry("SampleRate",sampleRate->currentText());
160 cfg.writeEntry("Stereo",stereoCheckBox->isChecked()); 169 cfg.writeEntry("Stereo",stereoCheckBox->isChecked());
161 cfg.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked()); 170 cfg.writeEntry("SixteenBit",sixteenBitCheckBox->isChecked());
162 171
163 if(keyReset) { 172 if(keyReset && noWarning) {
164 switch ( QMessageBox::warning(this,tr("Restart"), 173 QCopEnvelope ("QPE/System", "restart()");
165 tr("To implement a new key switch\nOpie will have to be restarted./n<B>Restart</B> Opie now?"),
166 tr("Yes"),tr("No"),0,1,1) ) {
167 case 0:
168 QCopEnvelope ("QPE/System", "restart()");
169 break;
170 };
171 } 174 }
172} 175}
173 176
174void SoundSettings::setKeyButton(const QString &name) { 177void SoundSettings::setKeyButton( int index) {
175 Config cfg("Vmemo"); 178 Config cfg("Vmemo");
176 cfg.setGroup("Defaults"); 179 cfg.setGroup("Defaults");
177 cfg.writeEntry( "toggleKey", keyComboBox->currentItem() ); 180 cfg.writeEntry( "toggleKey", index );
178 keyReset = TRUE; 181 keyReset = TRUE;
179 if(keyComboBox->currentItem() == 1) 182 if( index == 1) {
180 cfg.writeEntry( "hideIcon", 0 ); 183 cfg.writeEntry( "hideIcon", 0 );
181 else 184 keyLabel->setText(tr("Shows icon"));
185 }
186 else {
182 cfg.writeEntry( "hideIcon", 1); 187 cfg.writeEntry( "hideIcon", 1);
183 188 keyLabel->setText(tr("Hides icon"));
184 189 }
185 cfg.write(); 190 cfg.write();
186} 191}
187 192
188void SoundSettings::updateLocationCombo() { 193void SoundSettings::updateLocationCombo() {
189 194
190} 195}
191 196
192void SoundSettings::setSizeLimitButton(const QString &index) { 197void SoundSettings::setSizeLimitButton(const QString &index) {
193 198
194 Config cfg("Vmemo"); 199 Config cfg("Vmemo");
195 cfg.setGroup("Record"); 200 cfg.setGroup("Record");
196 if(index.find("Unlimited",0,TRUE) != -1) 201 if(index.find("Unlimited",0,TRUE) != -1)
197 cfg.writeEntry("SizeLimit", -1); 202 cfg.writeEntry("SizeLimit", -1);
198 else 203 else
199 cfg.writeEntry("SizeLimit", index); 204 cfg.writeEntry("SizeLimit", index);
200 cfg.write(); 205 cfg.write();
201} 206}
207
208void SoundSettings::restartOpie(bool b) {
209 noWarning=b;
210}
211