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