-rw-r--r-- | libopie2/opieui/okeyconfigwidget.cpp | 41 |
1 files changed, 39 insertions, 2 deletions
diff --git a/libopie2/opieui/okeyconfigwidget.cpp b/libopie2/opieui/okeyconfigwidget.cpp index b4f1c5e..2ea0bd5 100644 --- a/libopie2/opieui/okeyconfigwidget.cpp +++ b/libopie2/opieui/okeyconfigwidget.cpp | |||
@@ -315,406 +315,443 @@ void OKeyConfigItem::setPixmap( const QPixmap& pix ) { | |||
315 | m_pix = pix; | 315 | m_pix = pix; |
316 | } | 316 | } |
317 | 317 | ||
318 | /** | 318 | /** |
319 | * Set the KeyPair the OKeyConfigItem uses. | 319 | * Set the KeyPair the OKeyConfigItem uses. |
320 | * Your set Key could get overwritten if you use | 320 | * Your set Key could get overwritten if you use |
321 | * the manager or GUI to configure the key | 321 | * the manager or GUI to configure the key |
322 | * | 322 | * |
323 | * @param key Set the OKeyPair used | 323 | * @param key Set the OKeyPair used |
324 | * @see keyPair() | 324 | * @see keyPair() |
325 | */ | 325 | */ |
326 | void OKeyConfigItem::setKeyPair( const OKeyPair& key) { | 326 | void OKeyConfigItem::setKeyPair( const OKeyPair& key) { |
327 | m_key = key; | 327 | m_key = key; |
328 | } | 328 | } |
329 | 329 | ||
330 | /** | 330 | /** |
331 | * Set the default KeyPair. | 331 | * Set the default KeyPair. |
332 | * | 332 | * |
333 | * @param key The default keypair | 333 | * @param key The default keypair |
334 | * @see defaultKeyPair() | 334 | * @see defaultKeyPair() |
335 | */ | 335 | */ |
336 | void OKeyConfigItem::setDefaultKeyPair( const OKeyPair& key ) { | 336 | void OKeyConfigItem::setDefaultKeyPair( const OKeyPair& key ) { |
337 | m_def = key; | 337 | m_def = key; |
338 | } | 338 | } |
339 | 339 | ||
340 | /** | 340 | /** |
341 | * @internal | 341 | * @internal |
342 | */ | 342 | */ |
343 | void OKeyConfigItem::setConfigKey( const QCString& str) { | 343 | void OKeyConfigItem::setConfigKey( const QCString& str) { |
344 | m_config = str; | 344 | m_config = str; |
345 | m_config.detach(); | 345 | m_config.detach(); |
346 | } | 346 | } |
347 | 347 | ||
348 | /** | 348 | /** |
349 | * @internal | 349 | * @internal |
350 | */ | 350 | */ |
351 | void OKeyConfigItem::setId( int id ) { | 351 | void OKeyConfigItem::setId( int id ) { |
352 | m_id = id; | 352 | m_id = id; |
353 | } | 353 | } |
354 | 354 | ||
355 | /** | 355 | /** |
356 | * If the item is not configured isEmpty() will return true | 356 | * If the item is not configured isEmpty() will return true |
357 | * It is empty if no text is present and no default | 357 | * It is empty if no text is present and no default |
358 | * and no configured key | 358 | * and no configured key |
359 | */ | 359 | */ |
360 | bool OKeyConfigItem::isEmpty()const { | 360 | bool OKeyConfigItem::isEmpty()const { |
361 | if ( !m_def.isEmpty() ) return false; | 361 | if ( !m_def.isEmpty() ) return false; |
362 | if ( !m_key.isEmpty() ) return false; | 362 | if ( !m_key.isEmpty() ) return false; |
363 | if ( !m_text.isEmpty() ) return false; | 363 | if ( !m_text.isEmpty() ) return false; |
364 | 364 | ||
365 | return true; | 365 | return true; |
366 | } | 366 | } |
367 | 367 | ||
368 | /** | 368 | /** |
369 | * Check if the KeyPairs are the same | 369 | * Check if the KeyPairs are the same |
370 | */ | 370 | */ |
371 | bool OKeyConfigItem::operator==( const OKeyConfigItem& conf ) { | 371 | bool OKeyConfigItem::operator==( const OKeyConfigItem& conf ) { |
372 | if ( isEmpty() == conf.isEmpty() ) return true; | 372 | if ( isEmpty() == conf.isEmpty() ) return true; |
373 | else if ( isEmpty() != conf.isEmpty() ) return false; | 373 | else if ( isEmpty() != conf.isEmpty() ) return false; |
374 | else if ( !isEmpty()!= conf.isEmpty() ) return false; | 374 | else if ( !isEmpty()!= conf.isEmpty() ) return false; |
375 | 375 | ||
376 | if ( m_id != conf.m_id ) return false; | 376 | if ( m_id != conf.m_id ) return false; |
377 | if ( m_text != conf.m_text ) return false; | 377 | if ( m_text != conf.m_text ) return false; |
378 | if ( m_key != conf.m_key ) return false; | 378 | if ( m_key != conf.m_key ) return false; |
379 | if ( m_def != conf.m_def ) return false; | 379 | if ( m_def != conf.m_def ) return false; |
380 | 380 | ||
381 | return true; | 381 | return true; |
382 | 382 | ||
383 | } | 383 | } |
384 | 384 | ||
385 | bool OKeyConfigItem::operator!=( const OKeyConfigItem& conf ) { | 385 | bool OKeyConfigItem::operator!=( const OKeyConfigItem& conf ) { |
386 | return !( *this == conf ); | 386 | return !( *this == conf ); |
387 | } | 387 | } |
388 | 388 | ||
389 | /** | 389 | /** |
390 | * \brief c'tor | 390 | * \brief c'tor |
391 | * The Constructor for a OKeyConfigManager | 391 | * The Constructor for a OKeyConfigManager |
392 | * | 392 | * |
393 | * You can use this manager in multiple ways. Either make it handle | 393 | * You can use this manager in multiple ways. Either make it handle |
394 | * QKeyEvents | 394 | * QKeyEvents |
395 | * | 395 | * |
396 | * \code | 396 | * \code |
397 | * Opie::Core::Config conf = oApp->config(); | 397 | * Opie::Core::Config conf = oApp->config(); |
398 | * Opie::Ui::OKeyPairList blackList; | 398 | * Opie::Ui::OKeyPairList blackList; |
399 | * blackList.append(Opie::Ui::OKeyPair::leftArrowKey()); | 399 | * blackList.append(Opie::Ui::OKeyPair::leftArrowKey()); |
400 | * blackList.append(Opie::Ui::OKeyPair::rightArrowKey()); | 400 | * blackList.append(Opie::Ui::OKeyPair::rightArrowKey()); |
401 | * Opie::Ui::OKeyConfigManager *manager = new Opie::Ui::OKeyConfigManager(conf,"key_actions",blackList, | 401 | * Opie::Ui::OKeyConfigManager *manager = new Opie::Ui::OKeyConfigManager(conf,"key_actions",blackList, |
402 | * false); | 402 | * false); |
403 | * QListView *view = new QListView(); | 403 | * QListView *view = new QListView(); |
404 | * manager->handleWidget(view); | 404 | * manager->handleWidget(view); |
405 | * manager->addKeyConfig( Opie::Ui::OKeyPair::returnKey()); | 405 | * manager->addKeyConfig( Opie::Ui::OKeyPair::returnKey()); |
406 | * manager->load(); | 406 | * manager->load(); |
407 | * | 407 | * |
408 | * connect(manager,SIGNAL(actionActivated(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&)), | 408 | * connect(manager,SIGNAL(actionActivated(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&)), |
409 | * this,SLOT(slotHandleKey(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&))); | 409 | * this,SLOT(slotHandleKey(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&))); |
410 | * | 410 | * |
411 | * .... | 411 | * .... |
412 | * | 412 | * |
413 | * void update(){ | 413 | * void update(){ |
414 | * QDialog diag(true); | 414 | * QDialog diag(true); |
415 | * QHBoxLayout *lay = new QHBoxLayout(&diag); | 415 | * QHBoxLayout *lay = new QHBoxLayout(&diag); |
416 | * Opie::Ui::OKeyConfigWidget *wid = new Opie::Ui::OKeyConfigWidget(manager,&diag); | 416 | * Opie::Ui::OKeyConfigWidget *wid = new Opie::Ui::OKeyConfigWidget(manager,&diag); |
417 | * wid->setChangeMode(Opie::Ui::OKeyConfigWidget::Queu); | 417 | * wid->setChangeMode(Opie::Ui::OKeyConfigWidget::Queu); |
418 | * lay->addWidget(wid); | 418 | * lay->addWidget(wid); |
419 | * if(QPEApplication::execDialog( &diag)== QDialog::Accepted){ | 419 | * if(QPEApplication::execDialog( &diag)== QDialog::Accepted){ |
420 | * wid->save(); | 420 | * wid->save(); |
421 | * } | 421 | * } |
422 | * } | 422 | * } |
423 | * | 423 | * |
424 | * .... | 424 | * .... |
425 | * MyListView::keyPressEvent( QKeyEvent* e ){ | 425 | * MyListView::keyPressEvent( QKeyEvent* e ){ |
426 | * Opie::Ui::OKeyConfigItem item = manager->handleKeyEvent(e); | 426 | * Opie::Ui::OKeyConfigItem item = manager->handleKeyEvent(e); |
427 | * if(!item.isEmpty() ){ | 427 | * if(!item.isEmpty() ){ |
428 | * switch(item.id()){ | 428 | * switch(item.id()){ |
429 | * case My_Delete_Key: | 429 | * case My_Delete_Key: |
430 | * break; | 430 | * break; |
431 | * } | 431 | * } |
432 | * } | 432 | * } |
433 | * } | 433 | * } |
434 | * | 434 | * |
435 | * \endcode | 435 | * \endcode |
436 | * | 436 | * |
437 | * @param conf The Config where the KeySetting should be stored | 437 | * @param conf The Config where the KeySetting should be stored |
438 | * @param group The group where the KeySetting will be stored | 438 | * @param group The group where the KeySetting will be stored |
439 | * @param black Which keys shouldn't be allowed to handle | 439 | * @param black Which keys shouldn't be allowed to handle |
440 | * @param grabkeyboard Calls QPEApplication::grabKeyboard to allow handling of DeviceButtons | 440 | * @param grabkeyboard Calls QPEApplication::grabKeyboard to allow handling of DeviceButtons |
441 | * @param par The parent/owner of this manager | 441 | * @param par The parent/owner of this manager |
442 | * @param name The name of this object | 442 | * @param name The name of this object |
443 | */ | 443 | */ |
444 | OKeyConfigManager::OKeyConfigManager( Opie::Core::OConfig* conf, | 444 | OKeyConfigManager::OKeyConfigManager( Opie::Core::OConfig* conf, |
445 | const QString& group, | 445 | const QString& group, |
446 | const OKeyPair::List& black, | 446 | const OKeyPair::List& black, |
447 | bool grabkeyboard, QObject* par, | 447 | bool grabkeyboard, QObject* par, |
448 | const char* name) | 448 | const char* name) |
449 | : QObject( par, name ), m_conf( conf ), m_group( group ), | 449 | : QObject( par, name ), m_conf( conf ), m_group( group ), |
450 | m_blackKeys( black ), m_grab( grabkeyboard ), m_map( 0 ){ | 450 | m_blackKeys( black ), m_grab( grabkeyboard ), m_map( 0 ){ |
451 | if ( m_grab ) | 451 | if ( m_grab ) |
452 | QPEApplication::grabKeyboard(); | 452 | QPEApplication::grabKeyboard(); |
453 | } | 453 | } |
454 | 454 | ||
455 | 455 | ||
456 | /** | 456 | /** |
457 | * Destructor | 457 | * Destructor |
458 | */ | 458 | */ |
459 | OKeyConfigManager::~OKeyConfigManager() { | 459 | OKeyConfigManager::~OKeyConfigManager() { |
460 | if ( m_grab ) | 460 | if ( m_grab ) |
461 | QPEApplication::ungrabKeyboard(); | 461 | QPEApplication::ungrabKeyboard(); |
462 | } | 462 | } |
463 | 463 | ||
464 | /** | 464 | /** |
465 | * Load the Configuration from the OConfig | 465 | * Load the Configuration from the OConfig |
466 | * If a Key is restricted but was in the config we will | 466 | * If a Key is restricted but was in the config we will |
467 | * make it be the empty key paur | 467 | * make it be the empty key paur |
468 | * We will change the group of the OConfig Item! | 468 | * We will change the group of the OConfig Item! |
469 | * | 469 | * |
470 | * @see OKeyPair::emptyKey | 470 | * @see OKeyPair::emptyKey |
471 | */ | 471 | */ |
472 | void OKeyConfigManager::load() { | 472 | void OKeyConfigManager::load() { |
473 | m_conf->setGroup( m_group ); | 473 | m_conf->setGroup( m_group ); |
474 | 474 | ||
475 | /* | 475 | /* |
476 | * Read each item | 476 | * Read each item |
477 | */ | 477 | */ |
478 | int key, mod; | 478 | int key, mod; |
479 | for( OKeyConfigItem::List::Iterator it = m_keys.begin(); | 479 | for( OKeyConfigItem::List::Iterator it = m_keys.begin(); |
480 | it != m_keys.end(); ++it ) { | 480 | it != m_keys.end(); ++it ) { |
481 | key = m_conf->readNumEntry( (*it).configKey()+"key", (*it).defaultKeyPair().keycode() ); | 481 | key = m_conf->readNumEntry( (*it).configKey()+"key", (*it).defaultKeyPair().keycode() ); |
482 | mod = m_conf->readNumEntry( (*it).configKey()+"mod", (*it).defaultKeyPair().modifier() ); | 482 | mod = m_conf->readNumEntry( (*it).configKey()+"mod", (*it).defaultKeyPair().modifier() ); |
483 | OKeyPair okey( key, mod ); | 483 | OKeyPair okey( key, mod ); |
484 | if ( !m_blackKeys.contains( okey ) && key != -1 && mod != -1 ) | 484 | if ( !m_blackKeys.contains( okey ) && key != -1 && mod != -1 ) |
485 | (*it).setKeyPair( OKeyPair(key, mod) ); | 485 | (*it).setKeyPair( OKeyPair(key, mod) ); |
486 | else | 486 | else |
487 | (*it).setKeyPair( OKeyPair::emptyKey() ); | 487 | (*it).setKeyPair( OKeyPair::emptyKey() ); |
488 | } | 488 | } |
489 | delete m_map; m_map = 0; | 489 | delete m_map; m_map = 0; |
490 | } | 490 | } |
491 | 491 | ||
492 | /** | 492 | /** |
493 | * We will save the current configuration | 493 | * We will save the current configuration |
494 | * to the OConfig. We will change the group. | 494 | * to the OConfig. We will change the group. |
495 | */ | 495 | */ |
496 | void OKeyConfigManager::save() { | 496 | void OKeyConfigManager::save() { |
497 | m_conf->setGroup( m_group ); | 497 | m_conf->setGroup( m_group ); |
498 | 498 | ||
499 | /* | 499 | /* |
500 | * Write each item | 500 | * Write each item |
501 | */ | 501 | */ |
502 | for( OKeyConfigItem::List::Iterator it = m_keys.begin(); | 502 | for( OKeyConfigItem::List::Iterator it = m_keys.begin(); |
503 | it != m_keys.end(); ++it ) { | 503 | it != m_keys.end(); ++it ) { |
504 | if ( (*it).isEmpty() ) | 504 | if ( (*it).isEmpty() ) |
505 | continue; | 505 | continue; |
506 | OKeyPair pair = (*it).keyPair(); | 506 | OKeyPair pair = (*it).keyPair(); |
507 | OKeyPair deft = (*it).defaultKeyPair(); | ||
508 | /* don't write if it is the default setting */ | ||
509 | if ( (pair.keycode() == deft.keycode()) && | ||
510 | (pair.modifier()== deft.modifier() ) ) | ||
511 | return; | ||
512 | |||
507 | m_conf->writeEntry((*it).configKey()+"key", pair.keycode() ); | 513 | m_conf->writeEntry((*it).configKey()+"key", pair.keycode() ); |
508 | m_conf->writeEntry((*it).configKey()+"mod", pair.modifier() ); | 514 | m_conf->writeEntry((*it).configKey()+"mod", pair.modifier() ); |
509 | } | 515 | } |
510 | } | 516 | } |
511 | 517 | ||
512 | /** | 518 | /** |
513 | * This is function uses a QMap internally but you can have the same keycode | 519 | * This is function uses a QMap internally but you can have the same keycode |
514 | * with different modifier key. The behaviour is undefined if you add a OKeyConfigItem | 520 | * with different modifier key. The behaviour is undefined if you add a OKeyConfigItem |
515 | * with same keycode and modifier key. The GUI takes care that a user can't | 521 | * with same keycode and modifier key. The GUI takes care that a user can't |
516 | * cofigure two keys. | 522 | * cofigure two keys. |
517 | * | 523 | * |
518 | * Make sure you call e->ignore if you don't want to handle this event | 524 | * Make sure you call e->ignore if you don't want to handle this event |
519 | */ | 525 | */ |
520 | OKeyConfigItem OKeyConfigManager::handleKeyEvent( QKeyEvent* e ) { | 526 | OKeyConfigItem OKeyConfigManager::handleKeyEvent( QKeyEvent* e ) { |
521 | OKeyConfigItem::List _keyList = keyList( e->key() ); | 527 | /* |
528 | * Fix Up issues with Qt/E, my keybard, and virtual input | ||
529 | * methods | ||
530 | * First my Keyboard delivers 256,512,1024 for shift/ctrl/alt instead of the button state | ||
531 | * Also key() on virtual inputmethods are zero and only ascii. We need to fix upper and lower | ||
532 | * case ascii | ||
533 | */ | ||
534 | int key = e->key(); | ||
535 | int mod = e->state(); | ||
536 | |||
537 | /* | ||
538 | * virtual keyboard | ||
539 | * else change the button mod only | ||
540 | */ | ||
541 | qWarning( "handleKeyEvent...." ); | ||
542 | if ( key == 0 ) { | ||
543 | key = e->ascii(); | ||
544 | if ( key > 96 && key < 123) | ||
545 | key -= 32; | ||
546 | }else{ | ||
547 | int new_mod = 0; | ||
548 | if ( mod & 256 ) | ||
549 | new_mod |= Qt::ShiftButton; | ||
550 | else if ( mod & 512 ) | ||
551 | new_mod |= Qt::AltButton; | ||
552 | else if ( mod & 1024 ) | ||
553 | new_mod |= Qt::ControlButton; | ||
554 | |||
555 | mod = new_mod == 0? mod : new_mod; | ||
556 | } | ||
557 | |||
558 | OKeyConfigItem::List _keyList = keyList( key ); | ||
522 | if ( _keyList.isEmpty() ) | 559 | if ( _keyList.isEmpty() ) |
523 | return OKeyConfigItem(); | 560 | return OKeyConfigItem(); |
524 | 561 | ||
525 | OKeyConfigItem item; | 562 | OKeyConfigItem item; |
526 | for ( OKeyConfigItem::List::Iterator it = _keyList.begin(); it != _keyList.end(); | 563 | for ( OKeyConfigItem::List::Iterator it = _keyList.begin(); it != _keyList.end(); |
527 | ++it ) { | 564 | ++it ) { |
528 | if ( (*it).keyPair().modifier() == e->state() ) { | 565 | if ( (*it).keyPair().modifier() == mod ) { |
529 | item = *it; | 566 | item = *it; |
530 | break; | 567 | break; |
531 | } | 568 | } |
532 | 569 | ||
533 | } | 570 | } |
534 | 571 | ||
535 | return item; | 572 | return item; |
536 | } | 573 | } |
537 | 574 | ||
538 | /** | 575 | /** |
539 | * Return the associated id of the item or -1 if no item | 576 | * Return the associated id of the item or -1 if no item |
540 | * matched the key | 577 | * matched the key |
541 | * | 578 | * |
542 | * @see handleKeyEvent | 579 | * @see handleKeyEvent |
543 | */ | 580 | */ |
544 | int OKeyConfigManager::handleKeyEventId( QKeyEvent* ev) { | 581 | int OKeyConfigManager::handleKeyEventId( QKeyEvent* ev) { |
545 | return handleKeyEvent( ev ).id(); | 582 | return handleKeyEvent( ev ).id(); |
546 | } | 583 | } |
547 | 584 | ||
548 | /** | 585 | /** |
549 | * Add Key Config to the List of items | 586 | * Add Key Config to the List of items |
550 | */ | 587 | */ |
551 | void OKeyConfigManager::addKeyConfig( const OKeyConfigItem& item ) { | 588 | void OKeyConfigManager::addKeyConfig( const OKeyConfigItem& item ) { |
552 | m_keys.append( item ); | 589 | m_keys.append( item ); |
553 | delete m_map; m_map = 0; | 590 | delete m_map; m_map = 0; |
554 | } | 591 | } |
555 | 592 | ||
556 | /** | 593 | /** |
557 | * Remove the Key from the Config. Internal lists will be destroyed | 594 | * Remove the Key from the Config. Internal lists will be destroyed |
558 | * and rebuild on demand later | 595 | * and rebuild on demand later |
559 | */ | 596 | */ |
560 | void OKeyConfigManager::removeKeyConfig( const OKeyConfigItem& item ) { | 597 | void OKeyConfigManager::removeKeyConfig( const OKeyConfigItem& item ) { |
561 | m_keys.remove( item ); | 598 | m_keys.remove( item ); |
562 | delete m_map; m_map = 0; | 599 | delete m_map; m_map = 0; |
563 | } | 600 | } |
564 | 601 | ||
565 | /** | 602 | /** |
566 | * Clears the complete list | 603 | * Clears the complete list |
567 | */ | 604 | */ |
568 | void OKeyConfigManager::clearKeyConfig() { | 605 | void OKeyConfigManager::clearKeyConfig() { |
569 | m_keys.clear(); | 606 | m_keys.clear(); |
570 | delete m_map; m_map = 0; | 607 | delete m_map; m_map = 0; |
571 | } | 608 | } |
572 | 609 | ||
573 | 610 | ||
574 | /** | 611 | /** |
575 | * Add this OKeyPair to the blackList. | 612 | * Add this OKeyPair to the blackList. |
576 | * Internal lists will be destroyed | 613 | * Internal lists will be destroyed |
577 | */ | 614 | */ |
578 | void OKeyConfigManager::addToBlackList( const OKeyPair& key) { | 615 | void OKeyConfigManager::addToBlackList( const OKeyPair& key) { |
579 | m_blackKeys.append( key ); | 616 | m_blackKeys.append( key ); |
580 | delete m_map; m_map = 0; | 617 | delete m_map; m_map = 0; |
581 | } | 618 | } |
582 | 619 | ||
583 | 620 | ||
584 | /** | 621 | /** |
585 | * Remove this OKeyPair from the black List | 622 | * Remove this OKeyPair from the black List |
586 | * Internal lists will be destroyed | 623 | * Internal lists will be destroyed |
587 | */ | 624 | */ |
588 | void OKeyConfigManager::removeFromBlackList( const OKeyPair& key ) { | 625 | void OKeyConfigManager::removeFromBlackList( const OKeyPair& key ) { |
589 | m_blackKeys.remove( key ); | 626 | m_blackKeys.remove( key ); |
590 | delete m_map; m_map = 0; | 627 | delete m_map; m_map = 0; |
591 | } | 628 | } |
592 | 629 | ||
593 | 630 | ||
594 | /** | 631 | /** |
595 | * Clear the blackList | 632 | * Clear the blackList |
596 | */ | 633 | */ |
597 | void OKeyConfigManager::clearBlackList() { | 634 | void OKeyConfigManager::clearBlackList() { |
598 | m_blackKeys.clear(); | 635 | m_blackKeys.clear(); |
599 | delete m_map; m_map = 0; | 636 | delete m_map; m_map = 0; |
600 | } | 637 | } |
601 | 638 | ||
602 | 639 | ||
603 | /** | 640 | /** |
604 | * Return a copy of the blackList | 641 | * Return a copy of the blackList |
605 | */ | 642 | */ |
606 | OKeyPair::List OKeyConfigManager::blackList()const { | 643 | OKeyPair::List OKeyConfigManager::blackList()const { |
607 | return m_blackKeys; | 644 | return m_blackKeys; |
608 | } | 645 | } |
609 | 646 | ||
610 | 647 | ||
611 | /** | 648 | /** |
612 | * Ask the Manager to handle KeyEvents for you. | 649 | * Ask the Manager to handle KeyEvents for you. |
613 | * All handled keys will emit a QSignal and return true | 650 | * All handled keys will emit a QSignal and return true |
614 | * that it handled the keyevent | 651 | * that it handled the keyevent |
615 | */ | 652 | */ |
616 | void OKeyConfigManager::handleWidget( QWidget* wid ) { | 653 | void OKeyConfigManager::handleWidget( QWidget* wid ) { |
617 | wid->installEventFilter( this ); | 654 | wid->installEventFilter( this ); |
618 | } | 655 | } |
619 | 656 | ||
620 | /** | 657 | /** |
621 | * @internal | 658 | * @internal |
622 | */ | 659 | */ |
623 | bool OKeyConfigManager::eventFilter( QObject* obj, QEvent* ev) { | 660 | bool OKeyConfigManager::eventFilter( QObject* obj, QEvent* ev) { |
624 | if ( !obj->isWidgetType() ) | 661 | if ( !obj->isWidgetType() ) |
625 | return false; | 662 | return false; |
626 | 663 | ||
627 | if ( ev->type() != QEvent::KeyPress && ev->type() != QEvent::KeyRelease ) | 664 | if ( ev->type() != QEvent::KeyPress && ev->type() != QEvent::KeyRelease ) |
628 | return false; | 665 | return false; |
629 | 666 | ||
630 | QKeyEvent *key = static_cast<QKeyEvent*>( ev ); | 667 | QKeyEvent *key = static_cast<QKeyEvent*>( ev ); |
631 | OKeyConfigItem item = handleKeyEvent( key ); | 668 | OKeyConfigItem item = handleKeyEvent( key ); |
632 | 669 | ||
633 | if ( item.isEmpty() ) | 670 | if ( item.isEmpty() ) |
634 | return false; | 671 | return false; |
635 | 672 | ||
636 | QWidget *wid = static_cast<QWidget*>( obj ); | 673 | QWidget *wid = static_cast<QWidget*>( obj ); |
637 | 674 | ||
638 | if ( item.object() && !item.slot().isEmpty() ) { | 675 | if ( item.object() && !item.slot().isEmpty() ) { |
639 | connect( this, SIGNAL( actionActivated(QWidget*, QKeyEvent*)), | 676 | connect( this, SIGNAL( actionActivated(QWidget*, QKeyEvent*)), |
640 | item.object(), item.slot().data() ); | 677 | item.object(), item.slot().data() ); |
641 | emit actionActivated(wid, key); | 678 | emit actionActivated(wid, key); |
642 | disconnect( this, SIGNAL(actionActivated(QWidget*,QKeyEvent*)), | 679 | disconnect( this, SIGNAL(actionActivated(QWidget*,QKeyEvent*)), |
643 | item.object(), item.slot().data() ); | 680 | item.object(), item.slot().data() ); |
644 | } | 681 | } |
645 | emit actionActivated( wid, key, item ); | 682 | emit actionActivated( wid, key, item ); |
646 | 683 | ||
647 | return true; | 684 | return true; |
648 | } | 685 | } |
649 | 686 | ||
650 | /** | 687 | /** |
651 | * @internal | 688 | * @internal |
652 | */ | 689 | */ |
653 | OKeyConfigItem::List OKeyConfigManager::keyList( int keycode) { | 690 | OKeyConfigItem::List OKeyConfigManager::keyList( int keycode) { |
654 | /* | 691 | /* |
655 | * Create the map if not existing anymore | 692 | * Create the map if not existing anymore |
656 | */ | 693 | */ |
657 | if ( !m_map ) { | 694 | if ( !m_map ) { |
658 | m_map = new OKeyMapConfigPrivate; | 695 | m_map = new OKeyMapConfigPrivate; |
659 | /* for every key */ | 696 | /* for every key */ |
660 | for ( OKeyConfigItem::List::Iterator it = m_keys.begin(); | 697 | for ( OKeyConfigItem::List::Iterator it = m_keys.begin(); |
661 | it!= m_keys.end(); ++it ) { | 698 | it!= m_keys.end(); ++it ) { |
662 | 699 | ||
663 | bool add = true; | 700 | bool add = true; |
664 | /* see if this key is blocked */ | 701 | /* see if this key is blocked */ |
665 | OKeyPair pair = (*it).keyPair(); | 702 | OKeyPair pair = (*it).keyPair(); |
666 | for ( OKeyPair::List::Iterator pairIt = m_blackKeys.begin(); | 703 | for ( OKeyPair::List::Iterator pairIt = m_blackKeys.begin(); |
667 | pairIt != m_blackKeys.end(); ++pairIt ) { | 704 | pairIt != m_blackKeys.end(); ++pairIt ) { |
668 | if ( (*pairIt).keycode() == pair.keycode() && | 705 | if ( (*pairIt).keycode() == pair.keycode() && |
669 | (*pairIt).modifier() == pair.modifier() ) { | 706 | (*pairIt).modifier() == pair.modifier() ) { |
670 | add = false; | 707 | add = false; |
671 | break; | 708 | break; |
672 | } | 709 | } |
673 | } | 710 | } |
674 | /* check if we added it */ | 711 | /* check if we added it */ |
675 | if ( add ) | 712 | if ( add ) |
676 | (*m_map)[pair.keycode()].append( *it ); | 713 | (*m_map)[pair.keycode()].append( *it ); |
677 | } | 714 | } |
678 | } | 715 | } |
679 | return (*m_map)[keycode]; | 716 | return (*m_map)[keycode]; |
680 | } | 717 | } |
681 | 718 | ||
682 | 719 | ||
683 | 720 | ||
684 | ///////////////////////// | 721 | ///////////////////////// |
685 | //////// Widget Starts Here | 722 | //////// Widget Starts Here |
686 | namespace Opie { | 723 | namespace Opie { |
687 | namespace Ui { | 724 | namespace Ui { |
688 | namespace Private { | 725 | namespace Private { |
689 | static QString keyToString( const OKeyPair& ); | 726 | static QString keyToString( const OKeyPair& ); |
690 | class OKeyListViewItem : public Opie::Ui::OListViewItem { | 727 | class OKeyListViewItem : public Opie::Ui::OListViewItem { |
691 | public: | 728 | public: |
692 | OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager*, Opie::Ui::OListViewItem* parent); | 729 | OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager*, Opie::Ui::OListViewItem* parent); |
693 | ~OKeyListViewItem(); | 730 | ~OKeyListViewItem(); |
694 | 731 | ||
695 | void setDefault(); | 732 | void setDefault(); |
696 | 733 | ||
697 | OKeyConfigItem& item(); | 734 | OKeyConfigItem& item(); |
698 | void setItem( const OKeyConfigItem& item ); | 735 | void setItem( const OKeyConfigItem& item ); |
699 | 736 | ||
700 | OKeyConfigManager *manager(); | 737 | OKeyConfigManager *manager(); |
701 | private: | 738 | private: |
702 | OKeyConfigItem m_item; | 739 | OKeyConfigItem m_item; |
703 | OKeyConfigManager* m_manager; | 740 | OKeyConfigManager* m_manager; |
704 | 741 | ||
705 | }; | 742 | }; |
706 | 743 | ||
707 | OKeyListViewItem::OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager* man, OListViewItem* parent) | 744 | OKeyListViewItem::OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager* man, OListViewItem* parent) |
708 | : Opie::Ui::OListViewItem( parent ), m_manager( man ) { | 745 | : Opie::Ui::OListViewItem( parent ), m_manager( man ) { |
709 | setItem( item ); | 746 | setItem( item ); |
710 | } | 747 | } |
711 | OKeyListViewItem::~OKeyListViewItem() {} | 748 | OKeyListViewItem::~OKeyListViewItem() {} |
712 | OKeyConfigItem &OKeyListViewItem::item(){ | 749 | OKeyConfigItem &OKeyListViewItem::item(){ |
713 | return m_item; | 750 | return m_item; |
714 | } | 751 | } |
715 | OKeyConfigManager* OKeyListViewItem::manager() { | 752 | OKeyConfigManager* OKeyListViewItem::manager() { |
716 | return m_manager; | 753 | return m_manager; |
717 | } | 754 | } |
718 | void OKeyListViewItem::setItem( const OKeyConfigItem& item ) { | 755 | void OKeyListViewItem::setItem( const OKeyConfigItem& item ) { |
719 | setPixmap( 0, m_item.pixmap() ); | 756 | setPixmap( 0, m_item.pixmap() ); |
720 | setText ( 1, m_item.text() ); | 757 | setText ( 1, m_item.text() ); |