summaryrefslogtreecommitdiff
path: root/noncore/settings/sound/soundsettingsbase.cpp
Unidiff
Diffstat (limited to 'noncore/settings/sound/soundsettingsbase.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/sound/soundsettingsbase.cpp30
1 files changed, 26 insertions, 4 deletions
diff --git a/noncore/settings/sound/soundsettingsbase.cpp b/noncore/settings/sound/soundsettingsbase.cpp
index 727d202..6cb4f89 100644
--- a/noncore/settings/sound/soundsettingsbase.cpp
+++ b/noncore/settings/sound/soundsettingsbase.cpp
@@ -226,13 +226,37 @@ SoundSettingsBase::SoundSettingsBase( QWidget* parent, const char* name, bool m
226 Layout11->addWidget( AlertCheckBox ); 226 Layout11->addWidget( AlertCheckBox );
227 227
228 TextLabel1 = new QLabel( privateLayoutWidget, "TextLabel1" ); 228 TextLabel1 = new QLabel( privateLayoutWidget, "TextLabel1" );
229 TextLabel1->setText( tr( "Location" ) ); 229 TextLabel1->setText( tr( "Location:" ) );
230 Layout11->addWidget( TextLabel1 ); 230 Layout11->addWidget( TextLabel1 );
231 231
232
232 LocationComboBox = new QComboBox( FALSE, privateLayoutWidget, "LocationComboBox" ); 233 LocationComboBox = new QComboBox( FALSE, privateLayoutWidget, "LocationComboBox" );
233 Layout11->addWidget( LocationComboBox ); 234 Layout11->addWidget( LocationComboBox );
234 Layout12_2->addWidget( GroupBox1 );
235 235
236 QLabel *TextLabelKey;
237 TextLabelKey = new QLabel( privateLayoutWidget, "TextLabelKey" );
238 TextLabelKey->setText( tr( "Record Key:" ) );
239
240 keyComboBox = new QComboBox( FALSE, privateLayoutWidget, "keyComboBox" );
241 keyComboBox->insertItem( tr( "" ) );
242 keyComboBox->insertItem( tr( "Taskbar Icon" ) );
243 keyComboBox->insertItem( tr( "Key_Escape" ) );
244 keyComboBox->insertItem( tr( "Key_Space" ) );
245 keyComboBox->insertItem( tr( "Key_Home" ) );
246 keyComboBox->insertItem( tr( "Key_Calender" ) );
247 keyComboBox->insertItem( tr( "Key_Contacts" ) );
248 keyComboBox->insertItem( tr( "Key_Menu" ) );
249 keyComboBox->insertItem( tr( "Key_Mail" ) );
250
251 Layout11->addWidget( TextLabelKey );
252
253 Layout11->addWidget( keyComboBox );
254
255 QSpacerItem* spacer_9 = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
256 Layout11->addItem( spacer_9 );
257
258
259 Layout12_2->addWidget( GroupBox1 );
236// // touchsound = new QCheckBox( this, "touchsound" ); 260// // touchsound = new QCheckBox( this, "touchsound" );
237// // touchsound->setText( tr( "Screen sounds" ) ); 261// // touchsound->setText( tr( "Screen sounds" ) );
238// // Layout12_2->addWidget( touchsound ); 262// // Layout12_2->addWidget( touchsound );
@@ -240,8 +264,6 @@ SoundSettingsBase::SoundSettingsBase( QWidget* parent, const char* name, bool m
240// // keysound = new QCheckBox( this, "keysound" ); 264// // keysound = new QCheckBox( this, "keysound" );
241// // keysound->setText( tr( "Keyboard sounds" ) ); 265// // keysound->setText( tr( "Keyboard sounds" ) );
242// // Layout12_2->addWidget( keysound ); 266// // Layout12_2->addWidget( keysound );
243 QSpacerItem* spacer_9 = new QSpacerItem( 20, 20, QSizePolicy::Minimum, QSizePolicy::Expanding );
244 Layout12_2->addItem( spacer_9 );
245 267
246 SoundSettingsBaseLayout->addLayout( Layout12_2, 0, 1 ); 268 SoundSettingsBaseLayout->addLayout( Layout12_2, 0, 1 );
247} 269}