summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/multikey/configdlg.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp
index a9137b9..9ea59a4 100644
--- a/inputmethods/multikey/configdlg.cpp
+++ b/inputmethods/multikey/configdlg.cpp
@@ -152,192 +152,195 @@ ConfigDlg::ConfigDlg () : QTabWidget ()
152 152
153 label = new QLabel(tr("Key Color"), color_box); 153 label = new QLabel(tr("Key Color"), color_box);
154 keycolor_button = new QPushButton(color_box); 154 keycolor_button = new QPushButton(color_box);
155 connect(keycolor_button, SIGNAL(clicked()), SLOT(keyColorClicked())); 155 connect(keycolor_button, SIGNAL(clicked()), SLOT(keyColorClicked()));
156 keycolor_button->setFlat((bool)1); 156 keycolor_button->setFlat((bool)1);
157 color = config.readListEntry("keycolor", QChar(',')); 157 color = config.readListEntry("keycolor", QChar(','));
158 /* 158 /*
159 * hopefully not required 159 * hopefully not required
160 160
161 if (color.isEmpty()) { 161 if (color.isEmpty()) {
162 color = QStringList::split(",", "240,240,240"); 162 color = QStringList::split(",", "240,240,240");
163 config.writeEntry("keycolor", color.join(",")); 163 config.writeEntry("keycolor", color.join(","));
164 164
165 } 165 }
166 */ 166 */
167 keycolor_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 167 keycolor_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
168 168
169 169
170 label = new QLabel(tr("Key Pressed Color"), color_box); 170 label = new QLabel(tr("Key Pressed Color"), color_box);
171 keycolor_pressed_button = new QPushButton(color_box); 171 keycolor_pressed_button = new QPushButton(color_box);
172 connect(keycolor_pressed_button, SIGNAL(clicked()), SLOT(keyColorPressedClicked())); 172 connect(keycolor_pressed_button, SIGNAL(clicked()), SLOT(keyColorPressedClicked()));
173 keycolor_pressed_button->setFlat((bool)1); 173 keycolor_pressed_button->setFlat((bool)1);
174 color = config.readListEntry("keycolor_pressed", QChar(',')); 174 color = config.readListEntry("keycolor_pressed", QChar(','));
175 keycolor_pressed_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 175 keycolor_pressed_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
176 176
177 label = new QLabel(tr("Line Color"), color_box); 177 label = new QLabel(tr("Line Color"), color_box);
178 keycolor_lines_button = new QPushButton(color_box); 178 keycolor_lines_button = new QPushButton(color_box);
179 connect(keycolor_lines_button, SIGNAL(clicked()), SLOT(keyColorLinesClicked())); 179 connect(keycolor_lines_button, SIGNAL(clicked()), SLOT(keyColorLinesClicked()));
180 keycolor_lines_button->setFlat((bool)1); 180 keycolor_lines_button->setFlat((bool)1);
181 color = config.readListEntry("keycolor_lines", QChar(',')); 181 color = config.readListEntry("keycolor_lines", QChar(','));
182 keycolor_lines_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 182 keycolor_lines_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
183 183
184 184
185 label = new QLabel(tr("Text Color"), color_box); 185 label = new QLabel(tr("Text Color"), color_box);
186 textcolor_button = new QPushButton(color_box); 186 textcolor_button = new QPushButton(color_box);
187 connect(textcolor_button, SIGNAL(clicked()), SLOT(textColorClicked())); 187 connect(textcolor_button, SIGNAL(clicked()), SLOT(textColorClicked()));
188 textcolor_button->setFlat((bool)1); 188 textcolor_button->setFlat((bool)1);
189 color = config.readListEntry("textcolor", QChar(',')); 189 color = config.readListEntry("textcolor", QChar(','));
190 textcolor_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 190 textcolor_button->setBackgroundColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
191 191
192 192
193 label = new QLabel("", color_box); // a spacer so the above buttons dont expand 193 label = new QLabel("", color_box); // a spacer so the above buttons dont expand
194 label->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); 194 label->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
195 195
196} 196}
197 197
198void ConfigDlg::pickTog() { 198void ConfigDlg::pickTog() {
199 199
200 Config config ("multikey"); 200 Config config ("multikey");
201 config.setGroup ("general"); 201 config.setGroup ("general");
202 config.writeEntry ("usePickboard", pick_button->isChecked()); // default closed 202 config.writeEntry ("usePickboard", pick_button->isChecked()); // default closed
203 203
204 emit pickboardToggled(pick_button->isChecked()); 204 emit pickboardToggled(pick_button->isChecked());
205} 205}
206 206
207void ConfigDlg::repeatTog() { 207void ConfigDlg::repeatTog() {
208 208
209 Config config ("multikey"); 209 Config config ("multikey");
210 config.setGroup ("general"); 210 config.setGroup ("general");
211 config.writeEntry ("useRepeat", repeat_button->isChecked()); // default closed 211 config.writeEntry ("useRepeat", repeat_button->isChecked()); // default closed
212 212
213 emit repeatToggled(repeat_button->isChecked()); 213 emit repeatToggled(repeat_button->isChecked());
214} 214}
215 215
216// ConfigDlg::setMap {{{1 216// ConfigDlg::setMap {{{1
217 217
218/* 218/*
219 * the index is kinda screwy, because in the config file, index 0 is just the 219 * the index is kinda screwy, because in the config file, index 0 is just the
220 * first element in the QStringList, but here it's the "Current Language" 220 * first element in the QStringList, but here it's the "Current Language"
221 * listItem. therefor you have to minus one to the index before you access it. 221 * listItem. therefor you have to minus one to the index before you access it.
222 * 222 *
223 */ 223 */
224 224
225void ConfigDlg::setMap(int index) { 225void ConfigDlg::setMap(int index) {
226 226
227 if (index == 0) { 227 if (index == 0) {
228 228
229 remove_button->setDisabled(true); 229 remove_button->setDisabled(true);
230 emit setMapToDefault(); 230 emit setMapToDefault();
231 } 231 }
232 else if ((uint)index <= default_maps.count()) { 232 else if ((uint)index <= default_maps.count()) {
233 233
234 remove_button->setDisabled(true); 234 remove_button->setDisabled(true);
235 emit setMapToFile(keymaps->text(index)); 235 emit setMapToFile(keymaps->text(index));
236 236
237 } else { 237 } else {
238 238
239 remove_button->setEnabled(true); 239 remove_button->setEnabled(true);
240 emit setMapToFile(keymaps->text(index)); 240 emit setMapToFile(keymaps->text(index));
241 } 241 }
242} 242}
243 243
244// ConfigDlg::addMap() {{{1 244// ConfigDlg::addMap() {{{1
245void ConfigDlg::addMap() { 245void ConfigDlg::addMap() {
246 246
247 QString map = OFileDialog::getOpenFileName(1, QDir::home().absPath()); 247 QString map = OFileDialog::getOpenFileName(1, QDir::home().absPath());
248
249 if (map.isNull()) return;
250
248 Config config ("multikey"); 251 Config config ("multikey");
249 config.setGroup("keymaps"); 252 config.setGroup("keymaps");
250 QStringList maps = config.readListEntry("maps", QChar('|')); 253 QStringList maps = config.readListEntry("maps", QChar('|'));
251 maps.append(map); 254 maps.append(map);
252 keymaps->insertItem(map); 255 keymaps->insertItem(map);
253 keymaps->setSelected(keymaps->count() - 1, true); 256 keymaps->setSelected(keymaps->count() - 1, true);
254 257
255 258
256 config.writeEntry("maps", maps, QChar('|')); 259 config.writeEntry("maps", maps, QChar('|'));
257 config.writeEntry("current", map); 260 config.writeEntry("current", map);
258 261
259} 262}
260 263
261// ConfigDlg::removeMap() {{{1 264// ConfigDlg::removeMap() {{{1
262void ConfigDlg::removeMap() { 265void ConfigDlg::removeMap() {
263 266
264 cout << "removing : " << custom_maps[keymaps->currentItem() - default_maps.count() - 1] << "\n"; 267 cout << "removing : " << custom_maps[keymaps->currentItem() - default_maps.count() - 1] << "\n";
265 cout << "currentItem : " << keymaps->currentItem() << "\n"; 268 cout << "currentItem : " << keymaps->currentItem() << "\n";
266 269
267 // move selection up one 270 // move selection up one
268 keymaps->setSelected(keymaps->currentItem() - 1, true); 271 keymaps->setSelected(keymaps->currentItem() - 1, true);
269 // delete the next selected item cus you just moved it up 272 // delete the next selected item cus you just moved it up
270 keymaps->removeItem(keymaps->currentItem() + 1); 273 keymaps->removeItem(keymaps->currentItem() + 1);
271 274
272 custom_maps.remove(custom_maps[keymaps->currentItem() - default_maps.count()]); 275 custom_maps.remove(custom_maps[keymaps->currentItem() - default_maps.count()]);
273 276
274 // write the changes 277 // write the changes
275 Config config ("multikey"); 278 Config config ("multikey");
276 config.setGroup("keymaps"); 279 config.setGroup("keymaps");
277 config.writeEntry("maps", custom_maps, QChar('|')); 280 config.writeEntry("maps", custom_maps, QChar('|'));
278} 281}
279 282
280/* ConfigDlg::slots for the color buttons {{{1 283/* ConfigDlg::slots for the color buttons {{{1
281 * 284 *
282 * these four slots are almost the same, except for the names. i was thinking 285 * these four slots are almost the same, except for the names. i was thinking
283 * of making a map with pointers to the buttons and names of the configEntry 286 * of making a map with pointers to the buttons and names of the configEntry
284 * so it could be one slot, but then there would be no way of telling which 287 * so it could be one slot, but then there would be no way of telling which
285 * of the buttons was clicked if they all connect to the same slot. 288 * of the buttons was clicked if they all connect to the same slot.
286 * 289 *
287 */ 290 */
288 291
289void ConfigDlg::keyColorClicked() { 292void ConfigDlg::keyColorClicked() {
290 293
291 Config config ("multikey"); 294 Config config ("multikey");
292 config.setGroup ("colors"); 295 config.setGroup ("colors");
293 296
294 QStringList color = config.readListEntry("keycolor", QChar(',')); 297 QStringList color = config.readListEntry("keycolor", QChar(','));
295 298
296 QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 299 QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
297 300
298 color[0].setNum(newcolor.red()); 301 color[0].setNum(newcolor.red());
299 color[1].setNum(newcolor.green()); 302 color[1].setNum(newcolor.green());
300 color[2].setNum(newcolor.blue()); 303 color[2].setNum(newcolor.blue());
301 304
302 config.writeEntry("keycolor", color, QChar(',')); 305 config.writeEntry("keycolor", color, QChar(','));
303 config.write(); 306 config.write();
304 307
305 keycolor_button->setBackgroundColor(newcolor); 308 keycolor_button->setBackgroundColor(newcolor);
306 emit reloadKeyboard(); 309 emit reloadKeyboard();
307} 310}
308void ConfigDlg::keyColorPressedClicked() { 311void ConfigDlg::keyColorPressedClicked() {
309 312
310 Config config ("multikey"); 313 Config config ("multikey");
311 config.setGroup ("colors"); 314 config.setGroup ("colors");
312 315
313 QStringList color = config.readListEntry("keycolor_pressed", QChar(',')); 316 QStringList color = config.readListEntry("keycolor_pressed", QChar(','));
314 317
315 QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 318 QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
316 319
317 color[0].setNum(newcolor.red()); 320 color[0].setNum(newcolor.red());
318 color[1].setNum(newcolor.green()); 321 color[1].setNum(newcolor.green());
319 color[2].setNum(newcolor.blue()); 322 color[2].setNum(newcolor.blue());
320 323
321 config.writeEntry("keycolor_pressed", color, QChar(',')); 324 config.writeEntry("keycolor_pressed", color, QChar(','));
322 config.write(); 325 config.write();
323 326
324 keycolor_pressed_button->setBackgroundColor(newcolor); 327 keycolor_pressed_button->setBackgroundColor(newcolor);
325 emit reloadKeyboard(); 328 emit reloadKeyboard();
326} 329}
327void ConfigDlg::keyColorLinesClicked() { 330void ConfigDlg::keyColorLinesClicked() {
328 331
329 Config config ("multikey"); 332 Config config ("multikey");
330 config.setGroup ("colors"); 333 config.setGroup ("colors");
331 334
332 QStringList color = config.readListEntry("keycolor_lines", QChar(',')); 335 QStringList color = config.readListEntry("keycolor_lines", QChar(','));
333 336
334 QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt())); 337 QColor newcolor = OColorDialog::getColor(QColor(color[0].toInt(), color[1].toInt(), color[2].toInt()));
335 338
336 color[0].setNum(newcolor.red()); 339 color[0].setNum(newcolor.red());
337 color[1].setNum(newcolor.green()); 340 color[1].setNum(newcolor.green());
338 color[2].setNum(newcolor.blue()); 341 color[2].setNum(newcolor.blue());
339 342
340 config.writeEntry("keycolor_lines", color, QChar(',')); 343 config.writeEntry("keycolor_lines", color, QChar(','));
341 config.write(); 344 config.write();
342 345
343 keycolor_lines_button->setBackgroundColor(newcolor); 346 keycolor_lines_button->setBackgroundColor(newcolor);