-rw-r--r-- | libopie2/opieui/okeyconfigwidget.cpp | 7 | ||||
-rw-r--r-- | libopie2/opieui/opieui.pro | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/libopie2/opieui/okeyconfigwidget.cpp b/libopie2/opieui/okeyconfigwidget.cpp index 8967d77..ef6d713 100644 --- a/libopie2/opieui/okeyconfigwidget.cpp +++ b/libopie2/opieui/okeyconfigwidget.cpp | |||
@@ -807,440 +807,441 @@ namespace Private { | |||
807 | } | 807 | } |
808 | 808 | ||
809 | } | 809 | } |
810 | } | 810 | } |
811 | } | 811 | } |
812 | 812 | ||
813 | 813 | ||
814 | 814 | ||
815 | //////////////////////// | 815 | //////////////////////// |
816 | //////////////////////// | 816 | //////////////////////// |
817 | //////// Widget Starts Here | 817 | //////// Widget Starts Here |
818 | 818 | ||
819 | 819 | ||
820 | 820 | ||
821 | 821 | ||
822 | /** | 822 | /** |
823 | * | 823 | * |
824 | * This is a c'tor. You still need to pass the OKeyConfigManager | 824 | * This is a c'tor. You still need to pass the OKeyConfigManager |
825 | * and then issue a load. | 825 | * and then issue a load. |
826 | * The default mode is Immediate | 826 | * The default mode is Immediate |
827 | * | 827 | * |
828 | */ | 828 | */ |
829 | OKeyConfigWidget::OKeyConfigWidget( QWidget* parent, const char *name, WFlags fl ) | 829 | OKeyConfigWidget::OKeyConfigWidget( QWidget* parent, const char *name, WFlags fl ) |
830 | : QWidget( parent, name, fl ) { | 830 | : QWidget( parent, name, fl ) { |
831 | initUi(); | 831 | initUi(); |
832 | } | 832 | } |
833 | 833 | ||
834 | 834 | ||
835 | 835 | ||
836 | /** | 836 | /** |
837 | * c'tor | 837 | * c'tor |
838 | */ | 838 | */ |
839 | OKeyConfigWidget::~OKeyConfigWidget() { | 839 | OKeyConfigWidget::~OKeyConfigWidget() { |
840 | } | 840 | } |
841 | 841 | ||
842 | 842 | ||
843 | /** | 843 | /** |
844 | * @internal | 844 | * @internal |
845 | */ | 845 | */ |
846 | void OKeyConfigWidget::initUi() { | 846 | void OKeyConfigWidget::initUi() { |
847 | QBoxLayout *layout = new QVBoxLayout( this ); | 847 | QBoxLayout *layout = new QVBoxLayout( this ); |
848 | QGridLayout *gridLay = new QGridLayout( 2, 2 ); | 848 | QGridLayout *gridLay = new QGridLayout( 2, 2 ); |
849 | layout->addLayout( gridLay, 10 ); | 849 | layout->addLayout( gridLay, 10 ); |
850 | gridLay->setRowStretch( 1, 10 ); // let only the ListView strecth | 850 | gridLay->setRowStretch( 1, 10 ); // let only the ListView strecth |
851 | 851 | ||
852 | /* | 852 | /* |
853 | * LISTVIEW with the Keys | 853 | * LISTVIEW with the Keys |
854 | */ | 854 | */ |
855 | m_view = new Opie::Ui::OListView( this ); | 855 | m_view = new Opie::Ui::OListView( this ); |
856 | m_view->setFocus(); | 856 | m_view->setFocus(); |
857 | m_view->setAllColumnsShowFocus( true ); | 857 | m_view->setAllColumnsShowFocus( true ); |
858 | m_view->addColumn( tr("Pixmap") ); | 858 | m_view->addColumn( tr("Pixmap") ); |
859 | m_view->addColumn( tr("Name","Name of the Action in the ListView Header" ) ); | 859 | m_view->addColumn( tr("Name","Name of the Action in the ListView Header" ) ); |
860 | m_view->addColumn( tr("Key" ) ); | 860 | m_view->addColumn( tr("Key" ) ); |
861 | m_view->addColumn( tr("Default Key" ) ); | 861 | m_view->addColumn( tr("Default Key" ) ); |
862 | m_view->setRootIsDecorated( true ); | 862 | m_view->setRootIsDecorated( true ); |
863 | connect(m_view, SIGNAL(currentChanged(QListViewItem*)), | 863 | connect(m_view, SIGNAL(currentChanged(QListViewItem*)), |
864 | this, SLOT(slotListViewItem(QListViewItem*)) ); | 864 | this, SLOT(slotListViewItem(QListViewItem*)) ); |
865 | 865 | ||
866 | gridLay->addMultiCellWidget( m_view, 1, 1, 0, 1 ); | 866 | gridLay->addMultiCellWidget( m_view, 1, 1, 0, 1 ); |
867 | 867 | ||
868 | /* | 868 | /* |
869 | * GROUP with button info | 869 | * GROUP with button info |
870 | */ | 870 | */ |
871 | 871 | ||
872 | QGroupBox *box = new QGroupBox( this ); | 872 | QGroupBox *box = new QGroupBox( this ); |
873 | box ->setTitle( tr("Shortcut for Selected Action") ); | 873 | box ->setTitle( tr("Shortcut for Selected Action") ); |
874 | box ->setFrameStyle( QFrame::Box | QFrame::Sunken ); | 874 | box ->setFrameStyle( QFrame::Box | QFrame::Sunken ); |
875 | layout->addWidget( box, 1 ); | 875 | layout->addWidget( box, 1 ); |
876 | 876 | ||
877 | gridLay = new QGridLayout( box, 3, 4 ); | 877 | gridLay = new QGridLayout( box, 3, 4 ); |
878 | gridLay->addRowSpacing( 0, fontMetrics().lineSpacing() ); | 878 | gridLay->addRowSpacing( 0, fontMetrics().lineSpacing() ); |
879 | gridLay->setMargin( 4 ); | 879 | gridLay->setMargin( 4 ); |
880 | 880 | ||
881 | QButtonGroup *gr = new QButtonGroup( box ); | 881 | QButtonGroup *gr = new QButtonGroup( box ); |
882 | gr->hide(); | 882 | gr->hide(); |
883 | gr->setExclusive( true ); | 883 | gr->setExclusive( true ); |
884 | 884 | ||
885 | QRadioButton *rad = new QRadioButton( tr( "&None" ), box ); | 885 | QRadioButton *rad = new QRadioButton( tr( "&None" ), box ); |
886 | connect( rad, SIGNAL(clicked()), | 886 | connect( rad, SIGNAL(clicked()), |
887 | this, SLOT(slotNoKey()) ); | 887 | this, SLOT(slotNoKey()) ); |
888 | gr->insert( rad, 10 ); | 888 | gr->insert( rad, 10 ); |
889 | gridLay->addWidget( rad, 1, 0 ); | 889 | gridLay->addWidget( rad, 1, 0 ); |
890 | m_none = rad; | 890 | m_none = rad; |
891 | 891 | ||
892 | rad = new QRadioButton( tr("&Default" ), box ); | 892 | rad = new QRadioButton( tr("&Default" ), box ); |
893 | connect( rad, SIGNAL(clicked()), | 893 | connect( rad, SIGNAL(clicked()), |
894 | this, SLOT(slotDefaultKey()) ); | 894 | this, SLOT(slotDefaultKey()) ); |
895 | gr->insert( rad, 11 ); | 895 | gr->insert( rad, 11 ); |
896 | gridLay->addWidget( rad, 1, 1 ); | 896 | gridLay->addWidget( rad, 1, 1 ); |
897 | m_def = rad; | 897 | m_def = rad; |
898 | 898 | ||
899 | rad = new QRadioButton( tr("C&ustom"), box ); | 899 | rad = new QRadioButton( tr("C&ustom"), box ); |
900 | connect( rad, SIGNAL(clicked()), | 900 | connect( rad, SIGNAL(clicked()), |
901 | this, SLOT(slotCustomKey()) ); | 901 | this, SLOT(slotCustomKey()) ); |
902 | gr->insert( rad, 12 ); | 902 | gr->insert( rad, 12 ); |
903 | gridLay->addWidget( rad, 1, 2 ); | 903 | gridLay->addWidget( rad, 1, 2 ); |
904 | m_cus = rad; | 904 | m_cus = rad; |
905 | 905 | ||
906 | m_btn = new QPushButton( tr("Configure Key"), box ); | 906 | m_btn = new QPushButton( tr("Configure Key"), box ); |
907 | gridLay->addWidget( m_btn, 1, 4 ); | 907 | gridLay->addWidget( m_btn, 1, 4 ); |
908 | 908 | ||
909 | m_lbl= new QLabel( tr( "Default: " ), box ); | 909 | m_lbl= new QLabel( tr( "Default: " ), box ); |
910 | gridLay->addWidget( m_lbl, 2, 0 ); | 910 | gridLay->addWidget( m_lbl, 2, 0 ); |
911 | 911 | ||
912 | connect(m_btn, SIGNAL(clicked()), | 912 | connect(m_btn, SIGNAL(clicked()), |
913 | this, SLOT(slotConfigure())); | 913 | this, SLOT(slotConfigure())); |
914 | 914 | ||
915 | m_box = box; | 915 | m_box = box; |
916 | } | 916 | } |
917 | 917 | ||
918 | /** | 918 | /** |
919 | * Set the ChangeMode. | 919 | * Set the ChangeMode. |
920 | * You need to call this function prior to load | 920 | * You need to call this function prior to load |
921 | * If you call this function past load the behaviour is undefined | 921 | * If you call this function past load the behaviour is undefined |
922 | * But caling load again is safe | 922 | * But caling load again is safe |
923 | */ | 923 | */ |
924 | void OKeyConfigWidget::setChangeMode( enum ChangeMode mode) { | 924 | void OKeyConfigWidget::setChangeMode( enum ChangeMode mode) { |
925 | m_mode = mode; | 925 | m_mode = mode; |
926 | } | 926 | } |
927 | 927 | ||
928 | 928 | ||
929 | /** | 929 | /** |
930 | * return the current mode | 930 | * return the current mode |
931 | */ | 931 | */ |
932 | OKeyConfigWidget::ChangeMode OKeyConfigWidget::changeMode()const { | 932 | OKeyConfigWidget::ChangeMode OKeyConfigWidget::changeMode()const { |
933 | return m_mode; | 933 | return m_mode; |
934 | } | 934 | } |
935 | 935 | ||
936 | 936 | ||
937 | /** | 937 | /** |
938 | * insert these items before calling load | 938 | * insert these items before calling load |
939 | */ | 939 | */ |
940 | void OKeyConfigWidget::insert( const QString& str, OKeyConfigManager* man ) { | 940 | void OKeyConfigWidget::insert( const QString& str, OKeyConfigManager* man ) { |
941 | Opie::Ui::Private::OKeyConfigWidgetPrivate root( str, man ); | 941 | Opie::Ui::Private::OKeyConfigWidgetPrivate root( str, man ); |
942 | m_list.append(root); | 942 | m_list.append(root); |
943 | } | 943 | } |
944 | 944 | ||
945 | 945 | ||
946 | /** | 946 | /** |
947 | * loads the items and allows editing them | 947 | * loads the items and allows editing them |
948 | */ | 948 | */ |
949 | void OKeyConfigWidget::load() { | 949 | void OKeyConfigWidget::load() { |
950 | Opie::Ui::Private::OKeyConfigWidgetPrivateList::Iterator it; | 950 | Opie::Ui::Private::OKeyConfigWidgetPrivateList::Iterator it; |
951 | for ( it = m_list.begin(); it != m_list.end(); ++it ) { | 951 | for ( it = m_list.begin(); it != m_list.end(); ++it ) { |
952 | OListViewItem *item = new OListViewItem( m_view, (*it).name ); | 952 | OListViewItem *item = new OListViewItem( m_view, (*it).name ); |
953 | OKeyConfigItem::List list = (*it).manager->keyConfigList(); | 953 | OKeyConfigItem::List list = (*it).manager->keyConfigList(); |
954 | for (OKeyConfigItem::List::Iterator keyIt = list.begin(); keyIt != list.end();++keyIt ) | 954 | for (OKeyConfigItem::List::Iterator keyIt = list.begin(); keyIt != list.end();++keyIt ) |
955 | (void )new Opie::Ui::Private::OKeyListViewItem(*keyIt, (*it).manager, item ); | 955 | (void )new Opie::Ui::Private::OKeyListViewItem(*keyIt, (*it).manager, item ); |
956 | 956 | ||
957 | } | 957 | } |
958 | } | 958 | } |
959 | 959 | ||
960 | /** | 960 | /** |
961 | * Saves if in Queue Mode. It'll update the supplied | 961 | * Saves if in Queue Mode. It'll update the supplied |
962 | * OKeyConfigManager objects. | 962 | * OKeyConfigManager objects. |
963 | * If in Queue mode it'll just return | 963 | * If in Queue mode it'll just return |
964 | */ | 964 | */ |
965 | void OKeyConfigWidget::save() { | 965 | void OKeyConfigWidget::save() { |
966 | /* | 966 | /* |
967 | * Iterate over all config items | 967 | * Iterate over all config items |
968 | */ | 968 | */ |
969 | QListViewItemIterator it( m_view ); | 969 | QListViewItemIterator it( m_view ); |
970 | while ( it.current() ) { | 970 | while ( it.current() ) { |
971 | if (it.current()->parent() ) { | 971 | if (it.current()->parent() ) { |
972 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( it.current() ); | 972 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( it.current() ); |
973 | OKeyConfigManager *man = item->manager(); | 973 | OKeyConfigManager *man = item->manager(); |
974 | man->removeKeyConfig( item->origItem() ); | 974 | man->removeKeyConfig( item->origItem() ); |
975 | man->addKeyConfig( item->item() ); | 975 | man->addKeyConfig( item->item() ); |
976 | } | 976 | } |
977 | ++it; | 977 | ++it; |
978 | } | 978 | } |
979 | 979 | ||
980 | 980 | ||
981 | } | 981 | } |
982 | 982 | ||
983 | 983 | ||
984 | /** | 984 | /** |
985 | * @internal | 985 | * @internal |
986 | */ | 986 | */ |
987 | void OKeyConfigWidget::slotListViewItem( QListViewItem* _item) { | 987 | void OKeyConfigWidget::slotListViewItem( QListViewItem* _item) { |
988 | if ( !_item || !_item->parent() ) { | 988 | if ( !_item || !_item->parent() ) { |
989 | m_box->setEnabled( false ); | 989 | m_box->setEnabled( false ); |
990 | m_none->setChecked( true ); | 990 | m_none->setChecked( true ); |
991 | m_btn ->setEnabled( false ); | 991 | m_btn ->setEnabled( false ); |
992 | m_def ->setChecked( false ); | 992 | m_def ->setChecked( false ); |
993 | m_cus ->setChecked( false ); | 993 | m_cus ->setChecked( false ); |
994 | }else{ | 994 | }else{ |
995 | m_box->setEnabled( true ); | 995 | m_box->setEnabled( true ); |
996 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( _item ); | 996 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>( _item ); |
997 | OKeyConfigItem keyItem= item->item(); | 997 | OKeyConfigItem keyItem= item->item(); |
998 | m_lbl->setText( tr("Default: " )+ item->text( 3 ) ); | 998 | m_lbl->setText( tr("Default: " )+ item->text( 3 ) ); |
999 | if ( keyItem.keyPair().isEmpty() ) { | 999 | if ( keyItem.keyPair().isEmpty() ) { |
1000 | m_none->setChecked( true ); | 1000 | m_none->setChecked( true ); |
1001 | m_btn ->setEnabled( false ); | 1001 | m_btn ->setEnabled( false ); |
1002 | m_def ->setChecked( false ); | 1002 | m_def ->setChecked( false ); |
1003 | m_cus ->setChecked( false ); | 1003 | m_cus ->setChecked( false ); |
1004 | }else { | 1004 | }else { |
1005 | m_none->setChecked( false ); | 1005 | m_none->setChecked( false ); |
1006 | m_cus ->setChecked( true ); | 1006 | m_cus ->setChecked( true ); |
1007 | m_btn ->setEnabled( true ); | 1007 | m_btn ->setEnabled( true ); |
1008 | m_def ->setChecked( false ); | 1008 | m_def ->setChecked( false ); |
1009 | } | 1009 | } |
1010 | } | 1010 | } |
1011 | } | 1011 | } |
1012 | 1012 | ||
1013 | void OKeyConfigWidget::slotNoKey() { | 1013 | void OKeyConfigWidget::slotNoKey() { |
1014 | m_none->setChecked( true ); | 1014 | m_none->setChecked( true ); |
1015 | m_cus ->setChecked( false ); | 1015 | m_cus ->setChecked( false ); |
1016 | m_btn ->setEnabled( false ); | 1016 | m_btn ->setEnabled( false ); |
1017 | m_def ->setChecked( false ); | 1017 | m_def ->setChecked( false ); |
1018 | 1018 | ||
1019 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) | 1019 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) |
1020 | return; | 1020 | return; |
1021 | 1021 | ||
1022 | 1022 | ||
1023 | 1023 | ||
1024 | /* | 1024 | /* |
1025 | * If immediate we need to remove and readd the key | 1025 | * If immediate we need to remove and readd the key |
1026 | */ | 1026 | */ |
1027 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); | 1027 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); |
1028 | updateItem( item, OKeyPair::emptyKey() ); | 1028 | updateItem( item, OKeyPair::emptyKey() ); |
1029 | } | 1029 | } |
1030 | 1030 | ||
1031 | void OKeyConfigWidget::slotDefaultKey() { | 1031 | void OKeyConfigWidget::slotDefaultKey() { |
1032 | m_none->setChecked( false ); | 1032 | m_none->setChecked( false ); |
1033 | m_cus ->setChecked( false ); | 1033 | m_cus ->setChecked( false ); |
1034 | m_btn ->setEnabled( false ); | 1034 | m_btn ->setEnabled( false ); |
1035 | m_def ->setChecked( true ); | 1035 | m_def ->setChecked( true ); |
1036 | 1036 | ||
1037 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) | 1037 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) |
1038 | return; | 1038 | return; |
1039 | 1039 | ||
1040 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); | 1040 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); |
1041 | updateItem( item, item->item().defaultKeyPair() ); | 1041 | updateItem( item, item->item().defaultKeyPair() ); |
1042 | } | 1042 | } |
1043 | 1043 | ||
1044 | void OKeyConfigWidget::slotCustomKey() { | 1044 | void OKeyConfigWidget::slotCustomKey() { |
1045 | m_cus ->setChecked( true ); | 1045 | m_cus ->setChecked( true ); |
1046 | m_btn ->setEnabled( true ); | 1046 | m_btn ->setEnabled( true ); |
1047 | m_def ->setChecked( false ); | 1047 | m_def ->setChecked( false ); |
1048 | m_none->setChecked( false ); | 1048 | m_none->setChecked( false ); |
1049 | 1049 | ||
1050 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) | 1050 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) |
1051 | return; | 1051 | return; |
1052 | 1052 | ||
1053 | 1053 | ||
1054 | } | 1054 | } |
1055 | 1055 | ||
1056 | void OKeyConfigWidget::slotConfigure() { | 1056 | void OKeyConfigWidget::slotConfigure() { |
1057 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) | 1057 | if ( !m_view->currentItem() || !m_view->currentItem()->parent() ) |
1058 | return; | 1058 | return; |
1059 | 1059 | ||
1060 | /* FIXME make use of OModalHelper */ | 1060 | /* FIXME make use of OModalHelper */ |
1061 | OKeyChooserConfigDialog dlg( this, "Dialog Name", true ); | 1061 | OKeyChooserConfigDialog dlg( this, "Dialog Name", true ); |
1062 | dlg.setCaption(tr("Configure Key")); | 1062 | dlg.setCaption(tr("Configure Key")); |
1063 | connect(&dlg, SIGNAL(keyCaptured()), &dlg, SLOT(accept()) ); | 1063 | connect(&dlg, SIGNAL(keyCaptured()), &dlg, SLOT(accept()) ); |
1064 | 1064 | ||
1065 | if ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted ) { | 1065 | if ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted ) { |
1066 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); | 1066 | Opie::Ui::Private::OKeyListViewItem *item = static_cast<Opie::Ui::Private::OKeyListViewItem*>(m_view->currentItem()); |
1067 | updateItem( item, dlg.keyPair() ); | 1067 | updateItem( item, dlg.keyPair() ); |
1068 | } | 1068 | } |
1069 | 1069 | ||
1070 | 1070 | ||
1071 | } | 1071 | } |
1072 | 1072 | ||
1073 | bool OKeyConfigWidget::sanityCheck( Opie::Ui::Private::OKeyListViewItem* item, | 1073 | bool OKeyConfigWidget::sanityCheck( Opie::Ui::Private::OKeyListViewItem* item, |
1074 | const OKeyPair& newItem ) { | 1074 | const OKeyPair& newItem ) { |
1075 | OKeyPair::List bList = item->manager()->blackList(); | 1075 | OKeyPair::List bList = item->manager()->blackList(); |
1076 | for ( OKeyPair::List::Iterator it = bList.begin(); it != bList.end(); ++it ) { | 1076 | for ( OKeyPair::List::Iterator it = bList.begin(); it != bList.end(); ++it ) { |
1077 | /* black list matched */ | 1077 | /* black list matched */ |
1078 | if ( *it == newItem ) { | 1078 | if ( *it == newItem ) { |
1079 | QMessageBox::warning( 0, tr("Key is on BlackList" ), | 1079 | QMessageBox::warning( 0, tr("Key is on BlackList" ), |
1080 | tr("<qt>The Key you choose is on the black list " | 1080 | tr("<qt>The Key you choose is on the black list " |
1081 | "and may not be used with this manager. Please " | 1081 | "and may not be used with this manager. Please " |
1082 | "use a different key.</qt>" ) ); | 1082 | "use a different key.</qt>" ) ); |
1083 | return false; | 1083 | return false; |
1084 | } | 1084 | } |
1085 | } | 1085 | } |
1086 | /* no we need to check the other items which is dog slow */ | 1086 | /* no we need to check the other items which is dog slow */ |
1087 | QListViewItemIterator it( item->parent() ); | 1087 | QListViewItemIterator it( item->parent() ); |
1088 | while ( it.current() ) { | 1088 | while ( it.current() ) { |
1089 | /* if not our parent and not us */ | 1089 | /* if not our parent and not us */ |
1090 | if (it.current()->parent() && it.current() != item) { | 1090 | if (it.current()->parent() && it.current() != item) { |
1091 | /* damn already given away*/ | 1091 | /* damn already given away*/ |
1092 | if ( newItem == static_cast<Opie::Ui::Private::OKeyListViewItem*>(it.current() )->item().keyPair() ) { | 1092 | if ( newItem == static_cast<Opie::Ui::Private::OKeyListViewItem*>(it.current() )->item().keyPair() ) { |
1093 | QMessageBox::warning( 0, tr("Key is already assigned" ), | 1093 | QMessageBox::warning( 0, tr("Key is already assigned" ), |
1094 | tr("<qt>The Key you choose is already taken by " | 1094 | tr("<qt>The Key you choose is already taken by " |
1095 | "a different Item of your config. Please try" | 1095 | "a different Item of your config. Please try" |
1096 | "using a different key.</qt>" ) ); | 1096 | "using a different key.</qt>" ) ); |
1097 | return false; | 1097 | return false; |
1098 | } | 1098 | } |
1099 | } | 1099 | } |
1100 | ++it; | 1100 | ++it; |
1101 | } | 1101 | } |
1102 | 1102 | ||
1103 | return true; | 1103 | return true; |
1104 | } | 1104 | } |
1105 | 1105 | ||
1106 | void OKeyConfigWidget::updateItem( Opie::Ui::Private::OKeyListViewItem *item, | 1106 | void OKeyConfigWidget::updateItem( Opie::Ui::Private::OKeyListViewItem *item, |
1107 | const OKeyPair& newItem) { | 1107 | const OKeyPair& newItem) { |
1108 | /* sanity check | 1108 | /* sanity check |
1109 | * check against the blacklist of the manager | 1109 | * check against the blacklist of the manager |
1110 | * check if another item uses this key which is o(n) at least | 1110 | * check if another item uses this key which is o(n) at least |
1111 | */ | 1111 | */ |
1112 | if ( !newItem.isEmpty() && !sanityCheck(item, newItem )) | 1112 | if ( !newItem.isEmpty() && !sanityCheck(item, newItem )) |
1113 | return; | 1113 | return; |
1114 | 1114 | ||
1115 | 1115 | ||
1116 | 1116 | ||
1117 | /* | 1117 | /* |
1118 | * If immediate we need to remove and readd the key | 1118 | * If immediate we need to remove and readd the key |
1119 | */ | 1119 | */ |
1120 | if ( m_mode == Imediate ) | 1120 | if ( m_mode == Imediate ) |
1121 | item->manager()->removeKeyConfig( item->item() ); | 1121 | item->manager()->removeKeyConfig( item->item() ); |
1122 | 1122 | ||
1123 | item->item().setKeyPair( newItem ); | 1123 | item->item().setKeyPair( newItem ); |
1124 | item->updateText(); | 1124 | item->updateText(); |
1125 | 1125 | ||
1126 | if ( m_mode == Imediate ) | 1126 | if ( m_mode == Imediate ) |
1127 | item->manager()->addKeyConfig( item->item() ); | 1127 | item->manager()->addKeyConfig( item->item() ); |
1128 | } | 1128 | } |
1129 | 1129 | ||
1130 | 1130 | ||
1131 | 1131 | ||
1132 | ///// | 1132 | ///// |
1133 | OKeyChooserConfigDialog::OKeyChooserConfigDialog( QWidget* par, const char* nam, | 1133 | OKeyChooserConfigDialog::OKeyChooserConfigDialog( QWidget* par, const char* nam, |
1134 | bool mod, WFlags fl ) | 1134 | bool mod, WFlags fl ) |
1135 | : QDialog( par, nam, mod, fl ), m_virtKey( false ), m_keyPair( OKeyPair::emptyKey() ) , | 1135 | : QDialog( par, nam, mod, fl ), m_virtKey( false ), m_keyPair( OKeyPair::emptyKey() ) , |
1136 | m_key( 0 ), m_mod( 0 ) { | 1136 | m_key( 0 ), m_mod( 0 ) { |
1137 | setFocusPolicy( StrongFocus ); | 1137 | setFocusPolicy( StrongFocus ); |
1138 | 1138 | ||
1139 | QHBoxLayout *lay = new QHBoxLayout( this ); | 1139 | QHBoxLayout *lay = new QHBoxLayout( this ); |
1140 | 1140 | ||
1141 | QLabel *lbl = new QLabel( tr("Configure Key" ), this ); | 1141 | QLabel *lbl = new QLabel( tr("Configure Key" ), this ); |
1142 | lay->addWidget( lbl ); | 1142 | lay->addWidget( lbl ); |
1143 | lbl->setFocusPolicy( NoFocus ); | 1143 | lbl->setFocusPolicy( NoFocus ); |
1144 | 1144 | ||
1145 | m_lbl = new QLabel( this ); | 1145 | m_lbl = new QLabel( this ); |
1146 | lay->addWidget( m_lbl ); | 1146 | lay->addWidget( m_lbl ); |
1147 | m_lbl->setFocusPolicy( NoFocus ); | 1147 | m_lbl->setFocusPolicy( NoFocus ); |
1148 | 1148 | ||
1149 | m_timer = new QTimer( this ); | 1149 | m_timer = new QTimer( this ); |
1150 | connect(m_timer, SIGNAL(timeout()), | 1150 | connect(m_timer, SIGNAL(timeout()), |
1151 | this, SLOT(slotTimeUp()) ); | 1151 | this, SLOT(slotTimeUp()) ); |
1152 | } | 1152 | } |
1153 | 1153 | ||
1154 | OKeyChooserConfigDialog::~OKeyChooserConfigDialog() { | 1154 | OKeyChooserConfigDialog::~OKeyChooserConfigDialog() { |
1155 | } | 1155 | } |
1156 | 1156 | ||
1157 | Opie::Ui::OKeyPair OKeyChooserConfigDialog::keyPair()const{ | 1157 | Opie::Ui::OKeyPair OKeyChooserConfigDialog::keyPair()const{ |
1158 | return m_keyPair; | 1158 | return m_keyPair; |
1159 | } | 1159 | } |
1160 | 1160 | ||
1161 | void OKeyChooserConfigDialog::keyPressEvent( QKeyEvent* ev ) { | 1161 | void OKeyChooserConfigDialog::keyPressEvent( QKeyEvent* ev ) { |
1162 | QDialog::keyPressEvent( ev ); | 1162 | QDialog::keyPressEvent( ev ); |
1163 | 1163 | ||
1164 | if ( ev->isAutoRepeat() ) | 1164 | if ( ev->isAutoRepeat() ) |
1165 | return; | 1165 | return; |
1166 | 1166 | ||
1167 | int mod, key; | 1167 | int mod, key; |
1168 | Opie::Ui::Private::fixupKeys( key,mod, ev ); | 1168 | Opie::Ui::Private::fixupKeys( key,mod, ev ); |
1169 | 1169 | ||
1170 | /* either we used software keyboard | 1170 | /* either we used software keyboard |
1171 | * or we've true support | 1171 | * or we've true support |
1172 | */ | 1172 | */ |
1173 | if ( !m_virtKey && !ev->key()) { | 1173 | if ( !m_virtKey && !ev->key()) { |
1174 | m_virtKey = true; | 1174 | m_virtKey = true; |
1175 | m_keyPair = OKeyPair( key, mod ); | 1175 | m_keyPair = OKeyPair( key, mod ); |
1176 | }else{ | 1176 | }else{ |
1177 | mod = 0; | 1177 | mod = 0; |
1178 | switch( key ) { | 1178 | switch( key ) { |
1179 | case Qt::Key_Control: | 1179 | case Qt::Key_Control: |
1180 | mod = Qt::ControlButton; | 1180 | mod = Qt::ControlButton; |
1181 | break; | 1181 | break; |
1182 | case Qt::Key_Shift: | 1182 | case Qt::Key_Shift: |
1183 | mod = Qt::ShiftButton; | 1183 | mod = Qt::ShiftButton; |
1184 | break; | 1184 | break; |
1185 | case Qt::Key_Alt: | 1185 | case Qt::Key_Alt: |
1186 | mod = Qt::AltButton; | 1186 | mod = Qt::AltButton; |
1187 | break; | 1187 | break; |
1188 | default: | 1188 | default: |
1189 | break; | 1189 | break; |
1190 | } | 1190 | } |
1191 | if (mod ) | 1191 | if (mod ) { |
1192 | m_mod |= mod; | 1192 | m_mod |= mod; |
1193 | else | 1193 | key = 0; |
1194 | }else | ||
1194 | m_key = key; | 1195 | m_key = key; |
1195 | 1196 | ||
1196 | if ( ( !mod || m_key ) && !m_timer->isActive() ) | 1197 | if ( ( !mod || m_key || key ) && !m_timer->isActive() ) |
1197 | m_timer->start( 150, true ); | 1198 | m_timer->start( 150, true ); |
1198 | 1199 | ||
1199 | m_keyPair = OKeyPair( m_key, m_mod ); | 1200 | m_keyPair = OKeyPair( m_key, m_mod ); |
1200 | } | 1201 | } |
1201 | 1202 | ||
1202 | m_lbl->setText( Opie::Ui::Private::keyToString( m_keyPair ) ); | 1203 | m_lbl->setText( Opie::Ui::Private::keyToString( m_keyPair ) ); |
1203 | 1204 | ||
1204 | } | 1205 | } |
1205 | 1206 | ||
1206 | void OKeyChooserConfigDialog::keyReleaseEvent( QKeyEvent* ev ) { | 1207 | void OKeyChooserConfigDialog::keyReleaseEvent( QKeyEvent* ev ) { |
1207 | m_timer->stop(); | 1208 | m_timer->stop(); |
1208 | QDialog::keyPressEvent( ev ); | 1209 | QDialog::keyPressEvent( ev ); |
1209 | 1210 | ||
1210 | if ( ev->isAutoRepeat() ) | 1211 | if ( ev->isAutoRepeat() ) |
1211 | return; | 1212 | return; |
1212 | 1213 | ||
1213 | 1214 | ||
1214 | if ( m_virtKey && !ev->key()) { | 1215 | if ( m_virtKey && !ev->key()) { |
1215 | m_virtKey = false; | 1216 | m_virtKey = false; |
1216 | slotTimeUp(); | 1217 | slotTimeUp(); |
1217 | }else { | 1218 | }else { |
1218 | int mod = 0; | 1219 | int mod = 0; |
1219 | int key = ev->key(); | 1220 | int key = ev->key(); |
1220 | switch( key ) { | 1221 | switch( key ) { |
1221 | case Qt::Key_Control: | 1222 | case Qt::Key_Control: |
1222 | mod = Qt::ControlButton; | 1223 | mod = Qt::ControlButton; |
1223 | break; | 1224 | break; |
1224 | case Qt::Key_Shift: | 1225 | case Qt::Key_Shift: |
1225 | mod = Qt::ShiftButton; | 1226 | mod = Qt::ShiftButton; |
1226 | break; | 1227 | break; |
1227 | case Qt::Key_Alt: | 1228 | case Qt::Key_Alt: |
1228 | mod = Qt::AltButton; | 1229 | mod = Qt::AltButton; |
1229 | break; | 1230 | break; |
1230 | default: | 1231 | default: |
1231 | break; | 1232 | break; |
1232 | } | 1233 | } |
1233 | if (mod ) | 1234 | if (mod ) |
1234 | m_mod &= ~mod; | 1235 | m_mod &= ~mod; |
1235 | else | 1236 | else |
1236 | m_key = key; | 1237 | m_key = key; |
1237 | m_keyPair = OKeyPair( m_key, m_mod ); | 1238 | m_keyPair = OKeyPair( m_key, m_mod ); |
1238 | m_lbl->setText( Opie::Ui::Private::keyToString( m_keyPair ) ); | 1239 | m_lbl->setText( Opie::Ui::Private::keyToString( m_keyPair ) ); |
1239 | } | 1240 | } |
1240 | } | 1241 | } |
1241 | 1242 | ||
1242 | 1243 | ||
1243 | void OKeyChooserConfigDialog::slotTimeUp() { | 1244 | void OKeyChooserConfigDialog::slotTimeUp() { |
1244 | m_mod = m_key = 0; | 1245 | m_mod = m_key = 0; |
1245 | QTimer::singleShot(0, this, SIGNAL(keyCaptured()) ); | 1246 | QTimer::singleShot(0, this, SIGNAL(keyCaptured()) ); |
1246 | } | 1247 | } |
diff --git a/libopie2/opieui/opieui.pro b/libopie2/opieui/opieui.pro index 0749f7d..e97e82c 100644 --- a/libopie2/opieui/opieui.pro +++ b/libopie2/opieui/opieui.pro | |||
@@ -1,63 +1,65 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on | 2 | CONFIG += qt warn_on |
3 | DESTDIR = $(OPIEDIR)/lib | 3 | DESTDIR = $(OPIEDIR)/lib |
4 | HEADERS = oclickablelabel.h \ | 4 | HEADERS = oclickablelabel.h \ |
5 | odialog.h \ | 5 | odialog.h \ |
6 | ofontselector.h \ | 6 | ofontselector.h \ |
7 | oimageeffect.h \ | 7 | oimageeffect.h \ |
8 | okeyconfigwidget.h \ | ||
8 | olistview.h \ | 9 | olistview.h \ |
9 | opixmapeffect.h \ | 10 | opixmapeffect.h \ |
10 | opopupmenu.h \ | 11 | opopupmenu.h \ |
11 | opixmapprovider.h \ | 12 | opixmapprovider.h \ |
12 | oselector.h \ | 13 | oselector.h \ |
13 | oseparator.h \ | 14 | oseparator.h \ |
14 | otabinfo.h \ | 15 | otabinfo.h \ |
15 | otabbar.h \ | 16 | otabbar.h \ |
16 | otabwidget.h \ | 17 | otabwidget.h \ |
17 | otaskbarapplet.h \ | 18 | otaskbarapplet.h \ |
18 | oticker.h \ | 19 | oticker.h \ |
19 | otimepicker.h \ | 20 | otimepicker.h \ |
20 | oversatileview.h \ | 21 | oversatileview.h \ |
21 | oversatileviewitem.h \ | 22 | oversatileviewitem.h \ |
22 | owait.h | 23 | owait.h |
23 | 24 | ||
24 | SOURCES = oclickablelabel.cpp \ | 25 | SOURCES = oclickablelabel.cpp \ |
25 | odialog.cpp \ | 26 | odialog.cpp \ |
26 | ofontselector.cpp \ | 27 | ofontselector.cpp \ |
27 | oimageeffect.cpp \ | 28 | oimageeffect.cpp \ |
29 | okeyconfigwidget.cpp \ | ||
28 | olistview.cpp \ | 30 | olistview.cpp \ |
29 | opixmapeffect.cpp \ | 31 | opixmapeffect.cpp \ |
30 | opopupmenu.cpp \ | 32 | opopupmenu.cpp \ |
31 | opixmapprovider.cpp \ | 33 | opixmapprovider.cpp \ |
32 | oselector.cpp \ | 34 | oselector.cpp \ |
33 | oseparator.cpp \ | 35 | oseparator.cpp \ |
34 | otabbar.cpp \ | 36 | otabbar.cpp \ |
35 | otabwidget.cpp \ | 37 | otabwidget.cpp \ |
36 | otaskbarapplet.cpp \ | 38 | otaskbarapplet.cpp \ |
37 | oticker.cpp \ | 39 | oticker.cpp \ |
38 | otimepicker.cpp \ | 40 | otimepicker.cpp \ |
39 | oversatileview.cpp \ | 41 | oversatileview.cpp \ |
40 | oversatileviewitem.cpp \ | 42 | oversatileviewitem.cpp \ |
41 | owait.cpp | 43 | owait.cpp |
42 | 44 | ||
43 | include ( big-screen/big-screen.pro ) | 45 | include ( big-screen/big-screen.pro ) |
44 | include ( fileselector/fileselector.pro ) | 46 | include ( fileselector/fileselector.pro ) |
45 | 47 | ||
46 | INTERFACES = otimepickerbase.ui | 48 | INTERFACES = otimepickerbase.ui |
47 | 49 | ||
48 | TARGET = opieui2 | 50 | TARGET = opieui2 |
49 | VERSION = 1.8.5 | 51 | VERSION = 1.8.5 |
50 | 52 | ||
51 | INCLUDEPATH += $(OPIEDIR)/include | 53 | INCLUDEPATH += $(OPIEDIR)/include |
52 | DEPENDPATH += $(OPIEDIR)/include | 54 | DEPENDPATH += $(OPIEDIR)/include |
53 | 55 | ||
54 | LIBS += -lopiecore2 | 56 | LIBS += -lopiecore2 |
55 | 57 | ||
56 | !contains( platform, x11 ) { | 58 | !contains( platform, x11 ) { |
57 | include ( $(OPIEDIR)/include.pro ) | 59 | include ( $(OPIEDIR)/include.pro ) |
58 | } | 60 | } |
59 | 61 | ||
60 | contains( platform, x11 ) { | 62 | contains( platform, x11 ) { |
61 | LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib | 63 | LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib |
62 | } | 64 | } |
63 | 65 | ||