summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opieui/okeyconfigwidget.cpp93
-rw-r--r--libopie2/opieui/okeyconfigwidget.h41
2 files changed, 119 insertions, 15 deletions
diff --git a/libopie2/opieui/okeyconfigwidget.cpp b/libopie2/opieui/okeyconfigwidget.cpp
index 273f15b..41be1be 100644
--- a/libopie2/opieui/okeyconfigwidget.cpp
+++ b/libopie2/opieui/okeyconfigwidget.cpp
@@ -316,113 +316,118 @@ void OKeyConfigItem::setPixmap( const QPixmap& 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 */
326void OKeyConfigItem::setKeyPair( const OKeyPair& key) { 326void 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 */
336void OKeyConfigItem::setDefaultKeyPair( const OKeyPair& key ) { 336void 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 */
343void OKeyConfigItem::setConfigKey( const QCString& str) { 343void 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 */
351void OKeyConfigItem::setId( int id ) { 351void 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 */
360bool OKeyConfigItem::isEmpty()const { 360bool 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 if ( m_id != -1 ) return false;
364 365
365 return true; 366 return true;
366} 367}
367 368
368/** 369/**
369 * Check if the KeyPairs are the same 370 * Check if the KeyPairs are the same
370 */ 371 */
371bool OKeyConfigItem::operator==( const OKeyConfigItem& conf ) { 372bool OKeyConfigItem::operator==( const OKeyConfigItem& conf ) {
372 if ( isEmpty() == conf.isEmpty() ) return true; 373/* if ( isEmpty() == conf.isEmpty() ) return true;
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 else if ( !isEmpty()!= conf.isEmpty() ) return false;
376*/
375 377
376 if ( m_id != conf.m_id ) return false; 378 if ( m_id != conf.m_id ) return false;
379 if ( m_obj != conf.m_obj ) return false;
377 if ( m_text != conf.m_text ) return false; 380 if ( m_text != conf.m_text ) return false;
378 if ( m_key != conf.m_key ) return false; 381 if ( m_key != conf.m_key ) return false;
379 if ( m_def != conf.m_def ) return false; 382 if ( m_def != conf.m_def ) return false;
380 383
384
385
381 return true; 386 return true;
382 387
383} 388}
384 389
385bool OKeyConfigItem::operator!=( const OKeyConfigItem& conf ) { 390bool OKeyConfigItem::operator!=( const OKeyConfigItem& conf ) {
386 return !( *this == conf ); 391 return !( *this == conf );
387} 392}
388 393
389/** 394/**
390 * \brief c'tor 395 * \brief c'tor
391 * The Constructor for a OKeyConfigManager 396 * The Constructor for a OKeyConfigManager
392 * 397 *
393 * You can use this manager in multiple ways. Either make it handle 398 * You can use this manager in multiple ways. Either make it handle
394 * QKeyEvents 399 * QKeyEvents
395 * 400 *
396 * \code 401 * \code
397 * Opie::Core::Config conf = oApp->config(); 402 * Opie::Core::Config conf = oApp->config();
398 * Opie::Ui::OKeyPairList blackList; 403 * Opie::Ui::OKeyPairList blackList;
399 * blackList.append(Opie::Ui::OKeyPair::leftArrowKey()); 404 * blackList.append(Opie::Ui::OKeyPair::leftArrowKey());
400 * blackList.append(Opie::Ui::OKeyPair::rightArrowKey()); 405 * blackList.append(Opie::Ui::OKeyPair::rightArrowKey());
401 * Opie::Ui::OKeyConfigManager *manager = new Opie::Ui::OKeyConfigManager(conf,"key_actions",blackList, 406 * Opie::Ui::OKeyConfigManager *manager = new Opie::Ui::OKeyConfigManager(conf,"key_actions",blackList,
402 * false); 407 * false);
403 * QListView *view = new QListView(); 408 * QListView *view = new QListView();
404 * manager->handleWidget(view); 409 * manager->handleWidget(view);
405 * manager->addKeyConfig( Opie::Ui::OKeyPair::returnKey()); 410 * manager->addKeyConfig( Opie::Ui::OKeyPair::returnKey());
406 * manager->load(); 411 * manager->load();
407 * 412 *
408 * connect(manager,SIGNAL(actionActivated(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&)), 413 * connect(manager,SIGNAL(actionActivated(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&)),
409 * this,SLOT(slotHandleKey(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&))); 414 * this,SLOT(slotHandleKey(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&)));
410 * 415 *
411 * .... 416 * ....
412 * 417 *
413 * void update(){ 418 * void update(){
414 * QDialog diag(true); 419 * QDialog diag(true);
415 * QHBoxLayout *lay = new QHBoxLayout(&diag); 420 * QHBoxLayout *lay = new QHBoxLayout(&diag);
416 * Opie::Ui::OKeyConfigWidget *wid = new Opie::Ui::OKeyConfigWidget(manager,&diag); 421 * Opie::Ui::OKeyConfigWidget *wid = new Opie::Ui::OKeyConfigWidget(manager,&diag);
417 * wid->setChangeMode(Opie::Ui::OKeyConfigWidget::Queu); 422 * wid->setChangeMode(Opie::Ui::OKeyConfigWidget::Queu);
418 * lay->addWidget(wid); 423 * lay->addWidget(wid);
419 * if(QPEApplication::execDialog( &diag)== QDialog::Accepted){ 424 * if(QPEApplication::execDialog( &diag)== QDialog::Accepted){
420 * wid->save(); 425 * wid->save();
421 * } 426 * }
422 * } 427 * }
423 * 428 *
424 * .... 429 * ....
425 * MyListView::keyPressEvent( QKeyEvent* e ){ 430 * MyListView::keyPressEvent( QKeyEvent* e ){
426 * Opie::Ui::OKeyConfigItem item = manager->handleKeyEvent(e); 431 * Opie::Ui::OKeyConfigItem item = manager->handleKeyEvent(e);
427 * if(!item.isEmpty() ){ 432 * if(!item.isEmpty() ){
428 * switch(item.id()){ 433 * switch(item.id()){
@@ -460,186 +465,191 @@ OKeyConfigManager::~OKeyConfigManager() {
460 if ( m_grab ) 465 if ( m_grab )
461 QPEApplication::ungrabKeyboard(); 466 QPEApplication::ungrabKeyboard();
462} 467}
463 468
464/** 469/**
465 * Load the Configuration from the OConfig 470 * Load the Configuration from the OConfig
466 * If a Key is restricted but was in the config we will 471 * If a Key is restricted but was in the config we will
467 * make it be the empty key paur 472 * make it be the empty key paur
468 * We will change the group of the OConfig Item! 473 * We will change the group of the OConfig Item!
469 * 474 *
470 * @see OKeyPair::emptyKey 475 * @see OKeyPair::emptyKey
471 */ 476 */
472void OKeyConfigManager::load() { 477void OKeyConfigManager::load() {
473 m_conf->setGroup( m_group ); 478 m_conf->setGroup( m_group );
474 479
475 /* 480 /*
476 * Read each item 481 * Read each item
477 */ 482 */
478 int key, mod; 483 int key, mod;
479 for( OKeyConfigItem::List::Iterator it = m_keys.begin(); 484 for( OKeyConfigItem::List::Iterator it = m_keys.begin();
480 it != m_keys.end(); ++it ) { 485 it != m_keys.end(); ++it ) {
481 key = m_conf->readNumEntry( (*it).configKey()+"key", (*it).defaultKeyPair().keycode() ); 486 key = m_conf->readNumEntry( (*it).configKey()+"key", (*it).defaultKeyPair().keycode() );
482 mod = m_conf->readNumEntry( (*it).configKey()+"mod", (*it).defaultKeyPair().modifier() ); 487 mod = m_conf->readNumEntry( (*it).configKey()+"mod", (*it).defaultKeyPair().modifier() );
483 OKeyPair okey( key, mod ); 488 OKeyPair okey( key, mod );
484 if ( !m_blackKeys.contains( okey ) && key != -1 && mod != -1 ) 489 if ( !m_blackKeys.contains( okey ) && key != -1 && mod != -1 )
485 (*it).setKeyPair( OKeyPair(key, mod) ); 490 (*it).setKeyPair( OKeyPair(key, mod) );
486 else 491 else
487 (*it).setKeyPair( OKeyPair::emptyKey() ); 492 (*it).setKeyPair( OKeyPair::emptyKey() );
488 } 493 }
489 delete m_map; m_map = 0; 494 delete m_map; m_map = 0;
490} 495}
491 496
492/** 497/**
493 * We will save the current configuration 498 * We will save the current configuration
494 * to the OConfig. We will change the group. 499 * to the OConfig. We will change the group.
495 */ 500 */
496void OKeyConfigManager::save() { 501void OKeyConfigManager::save() {
497 m_conf->setGroup( m_group ); 502 m_conf->setGroup( m_group );
498 503
499 /* 504 /*
500 * Write each item 505 * Write each item
501 */ 506 */
502 for( OKeyConfigItem::List::Iterator it = m_keys.begin(); 507 for( OKeyConfigItem::List::Iterator it = m_keys.begin();
503 it != m_keys.end(); ++it ) { 508 it != m_keys.end(); ++it ) {
504 if ( (*it).isEmpty() ) 509 if ( (*it).isEmpty() )
505 continue; 510 continue;
506 OKeyPair pair = (*it).keyPair(); 511 OKeyPair pair = (*it).keyPair();
507 OKeyPair deft = (*it).defaultKeyPair(); 512 OKeyPair deft = (*it).defaultKeyPair();
508 /* don't write if it is the default setting */ 513 /*
514 * don't write if it is the default setting
515 * FIXME allow to remove Keys
509 if ( (pair.keycode() == deft.keycode()) && 516 if ( (pair.keycode() == deft.keycode()) &&
510 (pair.modifier()== deft.modifier() ) ) 517 (pair.modifier()== deft.modifier() ) )
511 return; 518 return;
519 */
512 520
513 m_conf->writeEntry((*it).configKey()+"key", pair.keycode() ); 521 m_conf->writeEntry((*it).configKey()+"key", pair.keycode() );
514 m_conf->writeEntry((*it).configKey()+"mod", pair.modifier() ); 522 m_conf->writeEntry((*it).configKey()+"mod", pair.modifier() );
515 } 523 }
516} 524}
517 525
518/** 526/**
519 * This is function uses a QMap internally but you can have the same keycode 527 * This is function uses a QMap internally but you can have the same keycode
520 * with different modifier key. The behaviour is undefined if you add a OKeyConfigItem 528 * with different modifier key. The behaviour is undefined if you add a OKeyConfigItem
521 * with same keycode and modifier key. The GUI takes care that a user can't 529 * with same keycode and modifier key. The GUI takes care that a user can't
522 * cofigure two keys. 530 * cofigure two keys.
523 * 531 *
524 * Make sure you call e->ignore if you don't want to handle this event 532 * Make sure you call e->ignore if you don't want to handle this event
525 */ 533 */
526OKeyConfigItem OKeyConfigManager::handleKeyEvent( QKeyEvent* e ) { 534OKeyConfigItem OKeyConfigManager::handleKeyEvent( QKeyEvent* e ) {
527 /* 535 /*
528 * Fix Up issues with Qt/E, my keybard, and virtual input 536 * Fix Up issues with Qt/E, my keybard, and virtual input
529 * methods 537 * methods
530 * First my Keyboard delivers 256,512,1024 for shift/ctrl/alt instead of the button state 538 * 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 539 * Also key() on virtual inputmethods are zero and only ascii. We need to fix upper and lower
532 * case ascii 540 * case ascii
533 */ 541 */
534 int key = e->key(); 542 int key = e->key();
535 int mod = e->state(); 543 int mod = e->state();
536 544
537/* 545/*
538 * virtual keyboard 546 * virtual keyboard
539 * else change the button mod only 547 * else change the button mod only
540 */ 548 */
541 if ( key == 0 ) { 549 if ( key == 0 ) {
542 key = e->ascii(); 550 key = e->ascii();
543 if ( key > 96 && key < 123) 551 if ( key > 96 && key < 123)
544 key -= 32; 552 key -= 32;
545 }else{ 553 }else{
546 int new_mod = 0; 554 int new_mod = 0;
547 if ( mod & 256 ) 555 if ( mod & 256 )
548 new_mod |= Qt::ShiftButton; 556 new_mod |= Qt::ShiftButton;
549 else if ( mod & 512 ) 557 else if ( mod & 512 )
550 new_mod |= Qt::AltButton;
551 else if ( mod & 1024 )
552 new_mod |= Qt::ControlButton; 558 new_mod |= Qt::ControlButton;
559 else if ( mod & 1024 )
560 new_mod |= Qt::AltButton;
553 561
554 mod = new_mod == 0? mod : new_mod; 562 mod = new_mod == 0? mod : new_mod;
555 } 563 }
556 564
557 OKeyConfigItem::List _keyList = keyList( key ); 565 OKeyConfigItem::List _keyList = keyList( key );
558 if ( _keyList.isEmpty() ) 566 if ( _keyList.isEmpty() )
559 return OKeyConfigItem(); 567 return OKeyConfigItem();
560 568
561 OKeyConfigItem item; 569 OKeyConfigItem item;
562 for ( OKeyConfigItem::List::Iterator it = _keyList.begin(); it != _keyList.end(); 570 for ( OKeyConfigItem::List::Iterator it = _keyList.begin(); it != _keyList.end();
563 ++it ) { 571 ++it ) {
564 if ( (*it).keyPair().modifier() == mod ) { 572 if ( (*it).keyPair().modifier() == mod ) {
565 item = *it; 573 item = *it;
566 break; 574 break;
567 } 575 }
568 576
569 } 577 }
570 578
571 return item; 579 return item;
572} 580}
573 581
574/** 582/**
575 * Return the associated id of the item or -1 if no item 583 * Return the associated id of the item or -1 if no item
576 * matched the key 584 * matched the key
577 * 585 *
578 * @see handleKeyEvent 586 * @see handleKeyEvent
579 */ 587 */
580int OKeyConfigManager::handleKeyEventId( QKeyEvent* ev) { 588int OKeyConfigManager::handleKeyEventId( QKeyEvent* ev) {
581 return handleKeyEvent( ev ).id(); 589 return handleKeyEvent( ev ).id();
582} 590}
583 591
584/** 592/**
585 * Add Key Config to the List of items 593 * Add Key Config to the List of items
586 */ 594 */
587void OKeyConfigManager::addKeyConfig( const OKeyConfigItem& item ) { 595void OKeyConfigManager::addKeyConfig( const OKeyConfigItem& item ) {
588 m_keys.append( item ); 596 m_keys.append( item );
597 qWarning( "m_keys count is now %d", m_keys.count() );
589 delete m_map; m_map = 0; 598 delete m_map; m_map = 0;
590} 599}
591 600
592/** 601/**
593 * Remove the Key from the Config. Internal lists will be destroyed 602 * Remove the Key from the Config. Internal lists will be destroyed
594 * and rebuild on demand later 603 * and rebuild on demand later
595 */ 604 */
596void OKeyConfigManager::removeKeyConfig( const OKeyConfigItem& item ) { 605void OKeyConfigManager::removeKeyConfig( const OKeyConfigItem& item ) {
597 m_keys.remove( item ); 606 m_keys.remove( item );
607 qWarning( "m_keys count is now %d", m_keys.count() );
598 delete m_map; m_map = 0; 608 delete m_map; m_map = 0;
599} 609}
600 610
601/** 611/**
602 * Clears the complete list 612 * Clears the complete list
603 */ 613 */
604void OKeyConfigManager::clearKeyConfig() { 614void OKeyConfigManager::clearKeyConfig() {
605 m_keys.clear(); 615 m_keys.clear();
606 delete m_map; m_map = 0; 616 delete m_map; m_map = 0;
607} 617}
608 618
609/** 619/**
610 * 620 *
611 */ 621 */
612Opie::Ui::OKeyConfigItem::List OKeyConfigManager::keyConfigList()const{ 622Opie::Ui::OKeyConfigItem::List OKeyConfigManager::keyConfigList()const{
613 return m_keys; 623 return m_keys;
614} 624}
615 625
616/** 626/**
617 * Add this OKeyPair to the blackList. 627 * Add this OKeyPair to the blackList.
618 * Internal lists will be destroyed 628 * Internal lists will be destroyed
619 */ 629 */
620void OKeyConfigManager::addToBlackList( const OKeyPair& key) { 630void OKeyConfigManager::addToBlackList( const OKeyPair& key) {
621 m_blackKeys.append( key ); 631 m_blackKeys.append( key );
622 delete m_map; m_map = 0; 632 delete m_map; m_map = 0;
623} 633}
624 634
625 635
626/** 636/**
627 * Remove this OKeyPair from the black List 637 * Remove this OKeyPair from the black List
628 * Internal lists will be destroyed 638 * Internal lists will be destroyed
629 */ 639 */
630void OKeyConfigManager::removeFromBlackList( const OKeyPair& key ) { 640void OKeyConfigManager::removeFromBlackList( const OKeyPair& key ) {
631 m_blackKeys.remove( key ); 641 m_blackKeys.remove( key );
632 delete m_map; m_map = 0; 642 delete m_map; m_map = 0;
633} 643}
634 644
635 645
636/** 646/**
637 * Clear the blackList 647 * Clear the blackList
638 */ 648 */
639void OKeyConfigManager::clearBlackList() { 649void OKeyConfigManager::clearBlackList() {
640 m_blackKeys.clear(); 650 m_blackKeys.clear();
641 delete m_map; m_map = 0; 651 delete m_map; m_map = 0;
642} 652}
643 653
644 654
645/** 655/**
@@ -692,353 +702,408 @@ bool OKeyConfigManager::eventFilter( QObject* obj, QEvent* ev) {
692/** 702/**
693 * @internal 703 * @internal
694 */ 704 */
695OKeyConfigItem::List OKeyConfigManager::keyList( int keycode) { 705OKeyConfigItem::List OKeyConfigManager::keyList( int keycode) {
696 /* 706 /*
697 * Create the map if not existing anymore 707 * Create the map if not existing anymore
698 */ 708 */
699 if ( !m_map ) { 709 if ( !m_map ) {
700 m_map = new OKeyMapConfigPrivate; 710 m_map = new OKeyMapConfigPrivate;
701 /* for every key */ 711 /* for every key */
702 for ( OKeyConfigItem::List::Iterator it = m_keys.begin(); 712 for ( OKeyConfigItem::List::Iterator it = m_keys.begin();
703 it!= m_keys.end(); ++it ) { 713 it!= m_keys.end(); ++it ) {
704 714
705 bool add = true; 715 bool add = true;
706 /* see if this key is blocked */ 716 /* see if this key is blocked */
707 OKeyPair pair = (*it).keyPair(); 717 OKeyPair pair = (*it).keyPair();
708 for ( OKeyPair::List::Iterator pairIt = m_blackKeys.begin(); 718 for ( OKeyPair::List::Iterator pairIt = m_blackKeys.begin();
709 pairIt != m_blackKeys.end(); ++pairIt ) { 719 pairIt != m_blackKeys.end(); ++pairIt ) {
710 if ( (*pairIt).keycode() == pair.keycode() && 720 if ( (*pairIt).keycode() == pair.keycode() &&
711 (*pairIt).modifier() == pair.modifier() ) { 721 (*pairIt).modifier() == pair.modifier() ) {
712 add = false; 722 add = false;
713 break; 723 break;
714 } 724 }
715 } 725 }
716 /* check if we added it */ 726 /* check if we added it */
717 if ( add ) 727 if ( add )
718 (*m_map)[pair.keycode()].append( *it ); 728 (*m_map)[pair.keycode()].append( *it );
719 } 729 }
720 } 730 }
721 return (*m_map)[keycode]; 731 return (*m_map)[keycode];
722} 732}
723 733
724 734
725 735
726///////////////////////// 736/////////////////////////
727//////// Widget Starts Here 737//////// Widget Starts Here
728namespace Opie { 738namespace Opie {
729namespace Ui { 739namespace Ui {
730namespace Private { 740namespace Private {
731 static QString keyToString( const OKeyPair& ); 741 static QString keyToString( const OKeyPair& );
732 class OKeyListViewItem : public Opie::Ui::OListViewItem { 742 class OKeyListViewItem : public Opie::Ui::OListViewItem {
733 public: 743 public:
734 OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager*, Opie::Ui::OListViewItem* parent); 744 OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager*, Opie::Ui::OListViewItem* parent);
735 ~OKeyListViewItem(); 745 ~OKeyListViewItem();
736 746
737 void setDefault(); 747 void setDefault();
738 748
739 OKeyConfigItem& item(); 749 OKeyConfigItem& item();
750 OKeyConfigItem origItem()const;
740 void setItem( const OKeyConfigItem& item ); 751 void setItem( const OKeyConfigItem& item );
752 void updateText();
741 753
742 OKeyConfigManager *manager(); 754 OKeyConfigManager *manager();
743 private: 755 private:
744 OKeyConfigItem m_item; 756 OKeyConfigItem m_item;
757 OKeyConfigItem m_origItem;
745 OKeyConfigManager* m_manager; 758 OKeyConfigManager* m_manager;
746 759
747 }; 760 };
748 761
749 OKeyListViewItem::OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager* man, OListViewItem* parent) 762 OKeyListViewItem::OKeyListViewItem( const OKeyConfigItem& item, OKeyConfigManager* man, OListViewItem* parent)
750 : Opie::Ui::OListViewItem( parent ), m_manager( man ) { 763 : Opie::Ui::OListViewItem( parent ), m_manager( man ) {
764 m_origItem = item;
751 setItem( item ); 765 setItem( item );
752 } 766 }
753 OKeyListViewItem::~OKeyListViewItem() {} 767 OKeyListViewItem::~OKeyListViewItem() {}
754 OKeyConfigItem &OKeyListViewItem::item(){ 768 OKeyConfigItem &OKeyListViewItem::item(){
755 return m_item; 769 return m_item;
756 } 770 }
771 OKeyConfigItem OKeyListViewItem::origItem() const{
772 return m_origItem;
773 }
757 OKeyConfigManager* OKeyListViewItem::manager() { 774 OKeyConfigManager* OKeyListViewItem::manager() {
758 return m_manager; 775 return m_manager;
759 } 776 }
760 void OKeyListViewItem::setItem( const OKeyConfigItem& item ) { 777 void OKeyListViewItem::setItem( const OKeyConfigItem& item ) {
761 m_item = item; 778 m_item = item;
762 setPixmap( 0, m_item.pixmap() ); 779 setPixmap( 0, m_item.pixmap() );
763 setText ( 1, m_item.text() ); 780 setText ( 1, m_item.text() );
764 setText ( 2, keyToString( m_item.keyPair() ) ); 781 m_item.keyPair().isEmpty() ? setText( 2, QObject::tr( "None" ) ) :
765 setText ( 3, keyToString( m_item.defaultKeyPair() ) ); 782 setText( 2, keyToString( m_item.keyPair() ) );
783
784 m_item.defaultKeyPair().isEmpty() ? setText( 3, QObject::tr( "None" ) ) :
785 setText ( 3, keyToString( m_item.defaultKeyPair() ) );
786 }
787 void OKeyListViewItem::updateText() {
788 m_item.keyPair().isEmpty() ? setText( 2, QObject::tr( "None" ) ) :
789 setText( 2, keyToString( m_item.keyPair() ) );
766 } 790 }
767 791
768 QString keyToString( const OKeyPair& pair ) { 792 QString keyToString( const OKeyPair& pair ) {
769 int mod = 0; 793 int mod = 0;
770 if ( pair.modifier() & Qt::ShiftButton ) 794 if ( pair.modifier() & Qt::ShiftButton )
771 mod |= Qt::SHIFT; 795 mod |= Qt::SHIFT;
772 if ( pair.modifier() & Qt::ControlButton ) 796 if ( pair.modifier() & Qt::ControlButton )
773 mod |= Qt::CTRL; 797 mod |= Qt::CTRL;
774 if ( pair.modifier() & Qt::AltButton ) 798 if ( pair.modifier() & Qt::AltButton )
775 mod |= Qt::ALT; 799 mod |= Qt::ALT;
776 800
777 return QAccel::keyToString( mod + pair.keycode() ); 801 return QAccel::keyToString( mod + pair.keycode() );
778 } 802 }
779 803
780 struct OKeyConfigWidgetPrivate{ 804 struct OKeyConfigWidgetPrivate{
781 OKeyConfigWidgetPrivate(const QString& = QString::null, 805 OKeyConfigWidgetPrivate(const QString& = QString::null,
782 OKeyConfigManager* = 0); 806 OKeyConfigManager* = 0);
783 bool operator==( const OKeyConfigWidgetPrivate& ); 807 bool operator==( const OKeyConfigWidgetPrivate& );
784 QString name; 808 QString name;
785 OKeyConfigManager *manager; 809 OKeyConfigManager *manager;
786 }; 810 };
787 811
788 OKeyConfigWidgetPrivate::OKeyConfigWidgetPrivate( const QString& _name, 812 OKeyConfigWidgetPrivate::OKeyConfigWidgetPrivate( const QString& _name,
789 OKeyConfigManager* man ) 813 OKeyConfigManager* man )
790 : name( _name ), manager( man ){} 814 : name( _name ), manager( man ){}
791 815
792 bool OKeyConfigWidgetPrivate::operator==( const OKeyConfigWidgetPrivate& item) { 816 bool OKeyConfigWidgetPrivate::operator==( const OKeyConfigWidgetPrivate& item) {
793 if ( manager != item.manager) return false; 817 if ( manager != item.manager) return false;
794 if ( name != item.name ) return false; 818 if ( name != item.name ) return false;
795 819
796 return true; 820 return true;
797 } 821 }
798 822
799} 823}
800} 824}
801} 825}
802 826
803 827
804 828
805//////////////////////// 829////////////////////////
806 830
807 831
808 832
809 833
810 834
811/** 835/**
812 * 836 *
813 * This is a c'tor. You still need to pass the OKeyConfigManager 837 * This is a c'tor. You still need to pass the OKeyConfigManager
814 * and then issue a load. 838 * and then issue a load.
815 * The default mode is Immediate 839 * The default mode is Immediate
816 * 840 *
817 */ 841 */
818OKeyConfigWidget::OKeyConfigWidget( QWidget* parent, const char *name, WFlags fl ) 842OKeyConfigWidget::OKeyConfigWidget( QWidget* parent, const char *name, WFlags fl )
819 : QWidget( parent, name, fl ) { 843 : QWidget( parent, name, fl ) {
820 initUi(); 844 initUi();
821} 845}
822 846
823 847
824 848
825/** 849/**
826 * c'tor 850 * c'tor
827 */ 851 */
828OKeyConfigWidget::~OKeyConfigWidget() { 852OKeyConfigWidget::~OKeyConfigWidget() {
829} 853}
830 854
831 855
832/** 856/**
833 * @internal 857 * @internal
834 */ 858 */
835void OKeyConfigWidget::initUi() { 859void OKeyConfigWidget::initUi() {
836 QBoxLayout *layout = new QVBoxLayout( this ); 860 QBoxLayout *layout = new QVBoxLayout( this );
837 QGridLayout *gridLay = new QGridLayout( 2, 2 ); 861 QGridLayout *gridLay = new QGridLayout( 2, 2 );
838 layout->addLayout( gridLay, 10 ); 862 layout->addLayout( gridLay, 10 );
839 gridLay->setRowStretch( 1, 10 ); // let only the ListView strecth 863 gridLay->setRowStretch( 1, 10 ); // let only the ListView strecth
840 864
841/* 865/*
842 * LISTVIEW with the Keys 866 * LISTVIEW with the Keys
843 */ 867 */
844 m_view = new Opie::Ui::OListView( this ); 868 m_view = new Opie::Ui::OListView( this );
845 m_view->setFocus(); 869 m_view->setFocus();
846 m_view->setAllColumnsShowFocus( true ); 870 m_view->setAllColumnsShowFocus( true );
847 m_view->addColumn( tr("Pixmap") ); 871 m_view->addColumn( tr("Pixmap") );
848 m_view->addColumn( tr("Name","Name of the Action in the ListView Header" ) ); 872 m_view->addColumn( tr("Name","Name of the Action in the ListView Header" ) );
849 m_view->addColumn( tr("Key" ) ); 873 m_view->addColumn( tr("Key" ) );
850 m_view->addColumn( tr("Default Key" ) ); 874 m_view->addColumn( tr("Default Key" ) );
875 m_view->setRootIsDecorated( true );
851 connect(m_view, SIGNAL(currentChanged(QListViewItem*)), 876 connect(m_view, SIGNAL(currentChanged(QListViewItem*)),
852 this, SLOT(slotListViewItem(QListViewItem*)) ); 877 this, SLOT(slotListViewItem(QListViewItem*)) );
853 878
854 gridLay->addMultiCellWidget( m_view, 1, 1, 0, 1 ); 879 gridLay->addMultiCellWidget( m_view, 1, 1, 0, 1 );
855 880
856/* 881/*
857 * GROUP with button info 882 * GROUP with button info
858 */ 883 */
859 884
860 QGroupBox *box = new QGroupBox( this ); 885 QGroupBox *box = new QGroupBox( this );
861 box ->setTitle( tr("Shortcut for Selected Action") ); 886 box ->setTitle( tr("Shortcut for Selected Action") );
862 box ->setFrameStyle( QFrame::Box | QFrame::Sunken ); 887 box ->setFrameStyle( QFrame::Box | QFrame::Sunken );
863 layout->addWidget( box, 1 ); 888 layout->addWidget( box, 1 );
864 889
865 gridLay = new QGridLayout( box, 3, 4 ); 890 gridLay = new QGridLayout( box, 3, 4 );
866 gridLay->addRowSpacing( 0, fontMetrics().lineSpacing() ); 891 gridLay->addRowSpacing( 0, fontMetrics().lineSpacing() );
867 gridLay->setMargin( 4 ); 892 gridLay->setMargin( 4 );
868 893
869 QButtonGroup *gr = new QButtonGroup( box ); 894 QButtonGroup *gr = new QButtonGroup( box );
870 gr->hide(); 895 gr->hide();
871 gr->setExclusive( true ); 896 gr->setExclusive( true );
872 897
873 QRadioButton *rad = new QRadioButton( tr( "&None" ), box ); 898 QRadioButton *rad = new QRadioButton( tr( "&None" ), box );
874 connect( rad, SIGNAL(clicked()), 899 connect( rad, SIGNAL(clicked()),
875 this, SLOT(slotNoKey()) ); 900 this, SLOT(slotNoKey()) );
876 gr->insert( rad, 10 ); 901 gr->insert( rad, 10 );
877 gridLay->addWidget( rad, 1, 0 ); 902 gridLay->addWidget( rad, 1, 0 );
878 m_none = rad; 903 m_none = rad;
879 904
880 rad = new QRadioButton( tr("&Default" ), box ); 905 rad = new QRadioButton( tr("&Default" ), box );
881 connect( rad, SIGNAL(clicked()), 906 connect( rad, SIGNAL(clicked()),
882 this, SLOT(slotDefaultKey()) ); 907 this, SLOT(slotDefaultKey()) );
883 gr->insert( rad, 11 ); 908 gr->insert( rad, 11 );
884 gridLay->addWidget( rad, 1, 1 ); 909 gridLay->addWidget( rad, 1, 1 );
885 m_def = rad; 910 m_def = rad;
886 911
887 rad = new QRadioButton( tr("C&ustom"), box ); 912 rad = new QRadioButton( tr("C&ustom"), box );
888 connect( rad, SIGNAL(clicked()), 913 connect( rad, SIGNAL(clicked()),
889 this, SLOT(slotCustomKey()) ); 914 this, SLOT(slotCustomKey()) );
890 gr->insert( rad, 12 ); 915 gr->insert( rad, 12 );
891 gridLay->addWidget( rad, 1, 2 ); 916 gridLay->addWidget( rad, 1, 2 );
892 m_cus = rad; 917 m_cus = rad;
893 918
894 m_btn = new QPushButton( tr("Configure Key"), box ); 919 m_btn = new QPushButton( tr("Configure Key"), box );
895 gridLay->addWidget( m_btn, 1, 4 ); 920 gridLay->addWidget( m_btn, 1, 4 );
896 921
897 m_lbl= new QLabel( tr( "Default: " ), box ); 922 m_lbl= new QLabel( tr( "Default: " ), box );
898 gridLay->addWidget( m_lbl, 2, 0 ); 923 gridLay->addWidget( m_lbl, 2, 0 );
899 924
925 connect(m_btn, SIGNAL(clicked()),
926 this, SLOT(slotConfigure()));
900 927
901 m_box = gr; 928 m_box = box;
902} 929}
903 930
904/** 931/**
905 * Set the ChangeMode. 932 * Set the ChangeMode.
906 * You need to call this function prior to load 933 * You need to call this function prior to load
907 * If you call this function past load the behaviour is undefined 934 * If you call this function past load the behaviour is undefined
908 * But caling load again is safe 935 * But caling load again is safe
909 */ 936 */
910void OKeyConfigWidget::setChangeMode( enum ChangeMode mode) { 937void OKeyConfigWidget::setChangeMode( enum ChangeMode mode) {
911 m_mode = mode; 938 m_mode = mode;
912} 939}
913 940
914 941
915/** 942/**
916 * return the current mode 943 * return the current mode
917 */ 944 */
918OKeyConfigWidget::ChangeMode OKeyConfigWidget::changeMode()const { 945OKeyConfigWidget::ChangeMode OKeyConfigWidget::changeMode()const {
919 return m_mode; 946 return m_mode;
920} 947}
921 948
922 949
923/** 950/**
924 * insert these items before calling load 951 * insert these items before calling load
925 */ 952 */
926void OKeyConfigWidget::insert( const QString& str, OKeyConfigManager* man ) { 953void OKeyConfigWidget::insert( const QString& str, OKeyConfigManager* man ) {
927 Opie::Ui::Private::OKeyConfigWidgetPrivate root( str, man ); 954 Opie::Ui::Private::OKeyConfigWidgetPrivate root( str, man );
928 m_list.append(root); 955 m_list.append(root);
929} 956}
930 957
931 958
932/** 959/**
933 * loads the items and allows editing them 960 * loads the items and allows editing them
934 */ 961 */
935void OKeyConfigWidget::load() { 962void OKeyConfigWidget::load() {
936 Opie::Ui::Private::OKeyConfigWidgetPrivateList::Iterator it; 963 Opie::Ui::Private::OKeyConfigWidgetPrivateList::Iterator it;
937 for ( it = m_list.begin(); it != m_list.end(); ++it ) { 964 for ( it = m_list.begin(); it != m_list.end(); ++it ) {
938 OListViewItem *item = new OListViewItem( m_view, (*it).name ); 965 OListViewItem *item = new OListViewItem( m_view, (*it).name );
939 OKeyConfigItem::List list = (*it).manager->keyConfigList(); 966 OKeyConfigItem::List list = (*it).manager->keyConfigList();
940 for (OKeyConfigItem::List::Iterator keyIt = list.begin(); keyIt != list.end();++keyIt ) 967 for (OKeyConfigItem::List::Iterator keyIt = list.begin(); keyIt != list.end();++keyIt )
941 (void )new Opie::Ui::Private::OKeyListViewItem(*keyIt, (*it).manager, item ); 968 (void )new Opie::Ui::Private::OKeyListViewItem(*keyIt, (*it).manager, item );
942 969
943 } 970 }
944} 971}
945 972
946/** 973/**
947 * Saves if in Queue Mode. It'll update the supplied 974 * Saves if in Queue Mode. It'll update the supplied
948 * OKeyConfigManager objects. 975 * OKeyConfigManager objects.
949 * If in Queue mode it'll just return 976 * If in Queue mode it'll just return
950 */ 977 */
951void OKeyConfigWidget::save() { 978void OKeyConfigWidget::save() {
979 /*
980 * Iterate over all config items
981 */
982 QListViewItemIterator it( m_view );
983 while ( it.current() ) {
984 if (it.current()->parent() ) {
985 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( it.current() );
986 OKeyConfigManager *man = item->manager();
987 man->removeKeyConfig( item->origItem() );
988 man->addKeyConfig( item->item() );
989 }
990 ++it;
991 }
992
952 993
953} 994}
954 995
955 996
956/** 997/**
957 * @internal 998 * @internal
958 */ 999 */
959void OKeyConfigWidget::slotListViewItem( QListViewItem* _item) { 1000void OKeyConfigWidget::slotListViewItem( QListViewItem* _item) {
960 if ( !_item || !_item->parent() ) { 1001 if ( !_item || !_item->parent() ) {
961 m_box->setEnabled( false ); 1002 m_box->setEnabled( false );
962 m_none->setChecked( true ); 1003 m_none->setChecked( true );
963 m_btn ->setEnabled( false ); 1004 m_btn ->setEnabled( false );
964 m_def ->setChecked( false ); 1005 m_def ->setChecked( false );
965 m_cus ->setChecked( false ); 1006 m_cus ->setChecked( false );
966 }else{ 1007 }else{
967 m_box->setEnabled( true ); 1008 m_box->setEnabled( true );
968 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( _item ); 1009 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( _item );
969 OKeyConfigItem keyItem= item->item(); 1010 OKeyConfigItem keyItem= item->item();
1011 m_lbl->setText( tr("Default: " )+ item->text( 3 ) );
970 if ( keyItem.keyPair().isEmpty() ) { 1012 if ( keyItem.keyPair().isEmpty() ) {
971 m_none->setChecked( true ); 1013 m_none->setChecked( true );
972 m_btn ->setEnabled( false ); 1014 m_btn ->setEnabled( false );
973 m_def ->setChecked( false ); 1015 m_def ->setChecked( false );
974 m_cus ->setChecked( false ); 1016 m_cus ->setChecked( false );
975 }else { 1017 }else {
976 m_none->setChecked( false ); 1018 m_none->setChecked( false );
977 m_cus ->setChecked( true ); 1019 m_cus ->setChecked( true );
978 m_btn ->setEnabled( true ); 1020 m_btn ->setEnabled( true );
979 m_def ->setChecked( false ); 1021 m_def ->setChecked( false );
980 } 1022 }
981 } 1023 }
982} 1024}
983 1025
984void OKeyConfigWidget::slotNoKey() { 1026void OKeyConfigWidget::slotNoKey() {
985 qWarning( "No Key" ); 1027 qWarning( "No Key" );
986 m_none->setChecked( true ); 1028 m_none->setChecked( true );
987 m_cus ->setChecked( false ); 1029 m_cus ->setChecked( false );
988 m_btn ->setEnabled( false ); 1030 m_btn ->setEnabled( false );
989 m_def ->setChecked( false ); 1031 m_def ->setChecked( false );
990 1032
991 if ( !m_view->currentItem() || m_view->currentItem()->parent() ) 1033 if ( !m_view->currentItem() || !m_view->currentItem()->parent() )
992 return; 1034 return;
993 1035
994 1036
995 1037
996 /* 1038 /*
997 * If immediate we need to remove and readd the key 1039 * If immediate we need to remove and readd the key
998 */ 1040 */
999 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); 1041 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem());
1000 if ( m_mode == Imediate ) 1042 if ( m_mode == Imediate )
1001 item->manager()->removeKeyConfig( item->item() ); 1043 item->manager()->removeKeyConfig( item->item() );
1002 item->item().setKeyPair( OKeyPair::emptyKey() ); 1044 item->item().setKeyPair( OKeyPair::emptyKey() );
1045 item->updateText();
1003 1046
1004 if ( m_mode == Imediate ) 1047 if ( m_mode == Imediate )
1005 item->manager()->addKeyConfig( item->item() ); 1048 item->manager()->addKeyConfig( item->item() );
1006 1049
1007} 1050}
1008 1051
1009void OKeyConfigWidget::slotDefaultKey() { 1052void OKeyConfigWidget::slotDefaultKey() {
1010 qWarning( "Slot Default Key" ); 1053 m_none->setChecked( false );
1011 m_none->setChecked( true );
1012 m_cus ->setChecked( false ); 1054 m_cus ->setChecked( false );
1013 m_btn ->setEnabled( false ); 1055 m_btn ->setEnabled( false );
1014 m_def ->setChecked( false ); 1056 m_def ->setChecked( true );
1015 1057
1016 if ( !m_view->currentItem() || m_view->currentItem()->parent() ) 1058 if ( !m_view->currentItem() || !m_view->currentItem()->parent() )
1017 return; 1059 return;
1018 1060
1019 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); 1061 Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem());
1020 1062
1021 /* 1063 /*
1022 * If immediate we need to remove and readd the key 1064 * If immediate we need to remove and readd the key
1023 */ 1065 */
1024 if ( m_mode == Imediate ) 1066 if ( m_mode == Imediate )
1025 item->manager()->removeKeyConfig( item->item() ); 1067 item->manager()->removeKeyConfig( item->item() );
1026 1068
1027 item->item().setKeyPair( item->item().defaultKeyPair() ); 1069 item->item().setKeyPair( item->item().defaultKeyPair() );
1070 item->updateText();
1028 1071
1029 if ( m_mode == Imediate ) 1072 if ( m_mode == Imediate )
1030 item->manager()->addKeyConfig( item->item() ); 1073 item->manager()->addKeyConfig( item->item() );
1031} 1074}
1032 1075
1033void OKeyConfigWidget::slotCustomKey() { 1076void OKeyConfigWidget::slotCustomKey() {
1034 qWarning( "SlotCustom Key" );
1035 m_cus ->setChecked( true ); 1077 m_cus ->setChecked( true );
1036 m_btn ->setEnabled( true ); 1078 m_btn ->setEnabled( true );
1037 m_def ->setChecked( false ); 1079 m_def ->setChecked( false );
1038 m_none->setChecked( false ); 1080 m_none->setChecked( false );
1039 1081
1040 if ( !m_view->currentItem() || m_view->currentItem()->parent() ) 1082 if ( !m_view->currentItem() || !m_view->currentItem()->parent() )
1041 return; 1083 return;
1042 1084
1043} 1085}
1044 1086
1087void OKeyConfigWidget::slotConfigure() {
1088
1089}
1090
1091
1092OKeyChooserConfigDialog::OKeyChooserConfigDialog( QWidget* par, const char* nam,
1093 bool mod, WFlags fl )
1094 : QDialog( par, nam, mod, fl ) {
1095}
1096
1097OKeyChooserConfigDialog::~OKeyChooserConfigDialog() {
1098}
1099
1100Opie::Ui::OKeyPair OKeyChooserConfigDialog::keyPair()const{
1101}
1102
1103void OKeyChooserConfigDialog::keyPressEvent( QKeyEvent* ev ) {
1104 ev->ignore();
1105}
1106
1107void OKeyChooserConfigDialog::keyReleaseEvent( QKeyEvent* ev ) {
1108 ev->ignore();
1109}
diff --git a/libopie2/opieui/okeyconfigwidget.h b/libopie2/opieui/okeyconfigwidget.h
index a7a5f48..8d2a1ef 100644
--- a/libopie2/opieui/okeyconfigwidget.h
+++ b/libopie2/opieui/okeyconfigwidget.h
@@ -203,68 +203,107 @@ private:
203 OKeyConfigItem::List keyList( int ); 203 OKeyConfigItem::List keyList( int );
204 OKeyConfigItem::List m_keys; 204 OKeyConfigItem::List m_keys;
205 QValueList<QWidget*> m_widgets; 205 QValueList<QWidget*> m_widgets;
206 Opie::Core::OConfig *m_conf; 206 Opie::Core::OConfig *m_conf;
207 QString m_group; 207 QString m_group;
208 OKeyPair::List m_blackKeys; 208 OKeyPair::List m_blackKeys;
209 bool m_grab : 1; 209 bool m_grab : 1;
210 OKeyMapConfigPrivate *m_map; 210 OKeyMapConfigPrivate *m_map;
211 class Private; 211 class Private;
212 Private *d; 212 Private *d;
213}; 213};
214 214
215 215
216/** 216/**
217 * With this Widget you can let the Keyboard Shortcuts 217 * With this Widget you can let the Keyboard Shortcuts
218 * be configured by the user. 218 * be configured by the user.
219 * There are two ways you can use this widget. Either in a tab were 219 * There are two ways you can use this widget. Either in a tab were
220 * all changes are immediately getting into effect or in a queue 220 * all changes are immediately getting into effect or in a queue
221 * were you ask for saving. Save won't write the data but only set 221 * were you ask for saving. Save won't write the data but only set
222 * it to the OKeyConfigManager 222 * it to the OKeyConfigManager
223 * 223 *
224 * @since 1.2 224 * @since 1.2
225 */ 225 */
226class OKeyConfigWidget : public QWidget { 226class OKeyConfigWidget : public QWidget {
227 Q_OBJECT 227 Q_OBJECT
228 228
229public: 229public:
230 /** 230 /**
231 * Immediate Apply the change directly to the underlying OKeyConfigManager 231 * Immediate Apply the change directly to the underlying OKeyConfigManager
232 * Queue Save all items and then apply when you save() 232 * Queue Save all items and then apply when you save()
233 */ 233 */
234 enum ChangeMode { Imediate, Queue }; 234 enum ChangeMode { Imediate, Queue };
235 OKeyConfigWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 235 OKeyConfigWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
236 ~OKeyConfigWidget(); 236 ~OKeyConfigWidget();
237 237
238 void setChangeMode( enum ChangeMode ); 238 void setChangeMode( enum ChangeMode );
239 ChangeMode changeMode()const; 239 ChangeMode changeMode()const;
240 240
241 void insert( const QString& name, OKeyConfigManager* ); 241 void insert( const QString& name, OKeyConfigManager* );
242 242
243 void load(); 243 void load();
244 void save(); 244 void save();
245 245
246private slots: 246private slots:
247 void slotListViewItem( QListViewItem* ); 247 void slotListViewItem( QListViewItem* );
248 void slotNoKey(); 248 void slotNoKey();
249 void slotDefaultKey(); 249 void slotDefaultKey();
250 void slotCustomKey(); 250 void slotCustomKey();
251 251 void slotConfigure();
252 252
253private: 253private:
254 void initUi(); 254 void initUi();
255 Opie::Ui::OListView *m_view; 255 Opie::Ui::OListView *m_view;
256 Opie::Ui::Private::OKeyConfigWidgetPrivateList m_list; 256 Opie::Ui::Private::OKeyConfigWidgetPrivateList m_list;
257 QLabel *m_lbl; 257 QLabel *m_lbl;
258 QPushButton *m_btn; 258 QPushButton *m_btn;
259 QRadioButton *m_def, *m_cus, *m_none; 259 QRadioButton *m_def, *m_cus, *m_none;
260 QWidget* m_box; 260 QWidget* m_box;
261 ChangeMode m_mode; 261 ChangeMode m_mode;
262 class Private; 262 class Private;
263 Private *d; 263 Private *d;
264}; 264};
265 265
266
267/**
268 * This is a small dialog that allows you to
269 * capture a key sequence.
270 * If you want it to close after a key was captured you
271 * can use this code snippet.
272 *
273 * \code
274 * OKeyChooserConfigDialog diag(0,0,true);
275 * connect(&diag,SIGNAL(keyCaptured()),
276 * this,SLOT(accept()));
277 * if( QPEApplication::execDialog(&diag) == QDialog::Accept ){
278 * take_the_key_and_do_something
279 * }
280 *
281 * \endcode
282 *
283 */
284class OKeyChooserConfigDialog : public QDialog {
285 Q_OBJECT
286public:
287 OKeyChooserConfigDialog( QWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
288 ~OKeyChooserConfigDialog();
289
290 OKeyPair keyPair()const;
291
292protected:
293 void keyPressEvent( QKeyEvent* );
294 void keyReleaseEvent( QKeyEvent* );
295
296signals:
297 void keyCaptured();
298
299private:
300 OKeyPair m_keyPair;
301 class Private;
302 Private *d;
303};
304
266} 305}
267} 306}
268 307
269 308
270#endif 309#endif