diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-04-16 17:18:22 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-04-16 17:29:16 +0900 |
commit | 250fb937d8e1035485929eb41cb994989ec7e2bb (patch) | |
tree | 9e301d2caedb56f8609a7f37496171f9713f64c8 /config | |
parent | 2ab5db6b42c0af64349a0dd390c4af782a12b03a (diff) |
genlist: apply key binding
Summary: This patch applies key binding to elm_genlist.
Test Plan: None
Reviewers: Hermet, raster
Reviewed By: raster
Differential Revision: https://phab.enlightenment.org/D743
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src | 208 | ||||
-rw-r--r-- | config/mobile/base.src | 197 | ||||
-rw-r--r-- | config/standard/base.src | 197 |
3 files changed, 602 insertions, 0 deletions
diff --git a/config/default/base.src b/config/default/base.src index 7b9458a41..e4388261f 100644 --- a/config/default/base.src +++ b/config/default/base.src | |||
@@ -655,6 +655,203 @@ group "Elm_Config" struct { | |||
655 | } | 655 | } |
656 | } | 656 | } |
657 | group "Elm_Config_Bindings_Widget" struct { | 657 | group "Elm_Config_Bindings_Widget" struct { |
658 | value "name" string: "Elm_Genlist"; | ||
659 | group "key_bindings" list { | ||
660 | group "Elm_Config_Binding_Key" struct { | ||
661 | value "context" int: 0; | ||
662 | value "key" string: "Left"; | ||
663 | value "action" string: "move"; | ||
664 | value "params" string: "left"; | ||
665 | } | ||
666 | group "Elm_Config_Binding_Key" struct { | ||
667 | value "context" int: 0; | ||
668 | value "key" string: "KP_Left"; | ||
669 | value "action" string: "move"; | ||
670 | value "params" string: "left"; | ||
671 | } | ||
672 | group "Elm_Config_Binding_Key" struct { | ||
673 | value "context" int: 0; | ||
674 | value "key" string: "Right"; | ||
675 | value "action" string: "move"; | ||
676 | value "params" string: "right"; | ||
677 | } | ||
678 | group "Elm_Config_Binding_Key" struct { | ||
679 | value "context" int: 0; | ||
680 | value "key" string: "KP_Right"; | ||
681 | value "action" string: "move"; | ||
682 | value "params" string: "right"; | ||
683 | } | ||
684 | group "Elm_Config_Binding_Key" struct { | ||
685 | value "context" int: 0; | ||
686 | value "key" string: "Up"; | ||
687 | value "action" string: "move"; | ||
688 | value "params" string: "up"; | ||
689 | group "modifiers" list { | ||
690 | group "Elm_Config_Binding_Modifier" struct { | ||
691 | value "mod" string: "Shift"; | ||
692 | value "flag" uchar: 0; | ||
693 | } | ||
694 | } | ||
695 | } | ||
696 | group "Elm_Config_Binding_Key" struct { | ||
697 | value "context" int: 0; | ||
698 | value "key" string: "Up"; | ||
699 | value "action" string: "move"; | ||
700 | value "params" string: "up_multi"; | ||
701 | group "modifiers" list { | ||
702 | group "Elm_Config_Binding_Modifier" struct { | ||
703 | value "mod" string: "Shift"; | ||
704 | value "flag" uchar: 1; | ||
705 | } | ||
706 | } | ||
707 | } | ||
708 | group "Elm_Config_Binding_Key" struct { | ||
709 | value "context" int: 0; | ||
710 | value "key" string: "KP_Up"; | ||
711 | value "action" string: "move"; | ||
712 | value "params" string: "up"; | ||
713 | group "modifiers" list { | ||
714 | group "Elm_Config_Binding_Modifier" struct { | ||
715 | value "mod" string: "Shift"; | ||
716 | value "flag" uchar: 0; | ||
717 | } | ||
718 | } | ||
719 | } | ||
720 | group "Elm_Config_Binding_Key" struct { | ||
721 | value "context" int: 0; | ||
722 | value "key" string: "KP_Up"; | ||
723 | value "action" string: "move"; | ||
724 | value "params" string: "up_multi"; | ||
725 | group "modifiers" list { | ||
726 | group "Elm_Config_Binding_Modifier" struct { | ||
727 | value "mod" string: "Shift"; | ||
728 | value "flag" uchar: 1; | ||
729 | } | ||
730 | } | ||
731 | } | ||
732 | group "Elm_Config_Binding_Key" struct { | ||
733 | value "context" int: 0; | ||
734 | value "key" string: "Down"; | ||
735 | value "action" string: "move"; | ||
736 | value "params" string: "down"; | ||
737 | group "modifiers" list { | ||
738 | group "Elm_Config_Binding_Modifier" struct { | ||
739 | value "mod" string: "Shift"; | ||
740 | value "flag" uchar: 0; | ||
741 | } | ||
742 | } | ||
743 | } | ||
744 | group "Elm_Config_Binding_Key" struct { | ||
745 | value "context" int: 0; | ||
746 | value "key" string: "Down"; | ||
747 | value "action" string: "move"; | ||
748 | value "params" string: "down_multi"; | ||
749 | group "modifiers" list { | ||
750 | group "Elm_Config_Binding_Modifier" struct { | ||
751 | value "mod" string: "Shift"; | ||
752 | value "flag" uchar: 1; | ||
753 | } | ||
754 | } | ||
755 | } | ||
756 | group "Elm_Config_Binding_Key" struct { | ||
757 | value "context" int: 0; | ||
758 | value "key" string: "KP_Down"; | ||
759 | value "action" string: "move"; | ||
760 | value "params" string: "down"; | ||
761 | group "modifiers" list { | ||
762 | group "Elm_Config_Binding_Modifier" struct { | ||
763 | value "mod" string: "Shift"; | ||
764 | value "flag" uchar: 0; | ||
765 | } | ||
766 | } | ||
767 | } | ||
768 | group "Elm_Config_Binding_Key" struct { | ||
769 | value "context" int: 0; | ||
770 | value "key" string: "KP_Down"; | ||
771 | value "action" string: "move"; | ||
772 | value "params" string: "down_multi"; | ||
773 | group "modifiers" list { | ||
774 | group "Elm_Config_Binding_Modifier" struct { | ||
775 | value "mod" string: "Shift"; | ||
776 | value "flag" uchar: 1; | ||
777 | } | ||
778 | } | ||
779 | } | ||
780 | group "Elm_Config_Binding_Key" struct { | ||
781 | value "context" int: 0; | ||
782 | value "key" string: "Home"; | ||
783 | value "action" string: "move"; | ||
784 | value "params" string: "first"; | ||
785 | } | ||
786 | group "Elm_Config_Binding_Key" struct { | ||
787 | value "context" int: 0; | ||
788 | value "key" string: "KP_Home"; | ||
789 | value "action" string: "move"; | ||
790 | value "params" string: "first"; | ||
791 | } | ||
792 | group "Elm_Config_Binding_Key" struct { | ||
793 | value "context" int: 0; | ||
794 | value "key" string: "End"; | ||
795 | value "action" string: "move"; | ||
796 | value "params" string: "last"; | ||
797 | } | ||
798 | group "Elm_Config_Binding_Key" struct { | ||
799 | value "context" int: 0; | ||
800 | value "key" string: "KP_End"; | ||
801 | value "action" string: "move"; | ||
802 | value "params" string: "last"; | ||
803 | } | ||
804 | group "Elm_Config_Binding_Key" struct { | ||
805 | value "context" int: 0; | ||
806 | value "key" string: "Prior"; | ||
807 | value "action" string: "move"; | ||
808 | value "params" string: "prior"; | ||
809 | } | ||
810 | group "Elm_Config_Binding_Key" struct { | ||
811 | value "context" int: 0; | ||
812 | value "key" string: "KP_Prior"; | ||
813 | value "action" string: "move"; | ||
814 | value "params" string: "prior"; | ||
815 | } | ||
816 | group "Elm_Config_Binding_Key" struct { | ||
817 | value "context" int: 0; | ||
818 | value "key" string: "Next"; | ||
819 | value "action" string: "move"; | ||
820 | value "params" string: "next"; | ||
821 | } | ||
822 | group "Elm_Config_Binding_Key" struct { | ||
823 | value "context" int: 0; | ||
824 | value "key" string: "KP_Next"; | ||
825 | value "action" string: "move"; | ||
826 | value "params" string: "next"; | ||
827 | } | ||
828 | group "Elm_Config_Binding_Key" struct { | ||
829 | value "context" int: 0; | ||
830 | value "key" string: "Return"; | ||
831 | value "action" string: "select"; | ||
832 | value "params" string: ""; | ||
833 | } | ||
834 | group "Elm_Config_Binding_Key" struct { | ||
835 | value "context" int: 0; | ||
836 | value "key" string: "KP_Enter"; | ||
837 | value "action" string: "select"; | ||
838 | value "params" string: ""; | ||
839 | } | ||
840 | group "Elm_Config_Binding_Key" struct { | ||
841 | value "context" int: 0; | ||
842 | value "key" string: "space"; | ||
843 | value "action" string: "select"; | ||
844 | value "params" string: ""; | ||
845 | } | ||
846 | group "Elm_Config_Binding_Key" struct { | ||
847 | value "context" int: 0; | ||
848 | value "key" string: "Escape"; | ||
849 | value "action" string: "escape"; | ||
850 | value "params" string: ""; | ||
851 | } | ||
852 | } | ||
853 | } | ||
854 | group "Elm_Config_Bindings_Widget" struct { | ||
658 | value "name" string: "Elm_Image"; | 855 | value "name" string: "Elm_Image"; |
659 | group "key_bindings" list { | 856 | group "key_bindings" list { |
660 | group "Elm_Config_Binding_Key" struct { | 857 | group "Elm_Config_Binding_Key" struct { |
@@ -1651,5 +1848,16 @@ group "Elm_Config" struct { | |||
1651 | } | 1848 | } |
1652 | } | 1849 | } |
1653 | } | 1850 | } |
1851 | group "Elm_Config_Bindings_Widget" struct { | ||
1852 | value "name" string: "Elm_Web"; | ||
1853 | group "key_bindings" list { | ||
1854 | group "Elm_Config_Binding_Key" struct { | ||
1855 | value "context" int: 0; | ||
1856 | value "key" string: "Tab"; | ||
1857 | value "action" string: "return"; | ||
1858 | value "params" string: ""; | ||
1859 | } | ||
1860 | } | ||
1861 | } | ||
1654 | } | 1862 | } |
1655 | } | 1863 | } |
diff --git a/config/mobile/base.src b/config/mobile/base.src index 6504352c0..f7a6a862f 100644 --- a/config/mobile/base.src +++ b/config/mobile/base.src | |||
@@ -659,6 +659,203 @@ group "Elm_Config" struct { | |||
659 | } | 659 | } |
660 | } | 660 | } |
661 | group "Elm_Config_Bindings_Widget" struct { | 661 | group "Elm_Config_Bindings_Widget" struct { |
662 | value "name" string: "Elm_Genlist"; | ||
663 | group "key_bindings" list { | ||
664 | group "Elm_Config_Binding_Key" struct { | ||
665 | value "context" int: 0; | ||
666 | value "key" string: "Left"; | ||
667 | value "action" string: "move"; | ||
668 | value "params" string: "left"; | ||
669 | } | ||
670 | group "Elm_Config_Binding_Key" struct { | ||
671 | value "context" int: 0; | ||
672 | value "key" string: "KP_Left"; | ||
673 | value "action" string: "move"; | ||
674 | value "params" string: "left"; | ||
675 | } | ||
676 | group "Elm_Config_Binding_Key" struct { | ||
677 | value "context" int: 0; | ||
678 | value "key" string: "Right"; | ||
679 | value "action" string: "move"; | ||
680 | value "params" string: "right"; | ||
681 | } | ||
682 | group "Elm_Config_Binding_Key" struct { | ||
683 | value "context" int: 0; | ||
684 | value "key" string: "KP_Right"; | ||
685 | value "action" string: "move"; | ||
686 | value "params" string: "right"; | ||
687 | } | ||
688 | group "Elm_Config_Binding_Key" struct { | ||
689 | value "context" int: 0; | ||
690 | value "key" string: "Up"; | ||
691 | value "action" string: "move"; | ||
692 | value "params" string: "up"; | ||
693 | group "modifiers" list { | ||
694 | group "Elm_Config_Binding_Modifier" struct { | ||
695 | value "mod" string: "Shift"; | ||
696 | value "flag" uchar: 0; | ||
697 | } | ||
698 | } | ||
699 | } | ||
700 | group "Elm_Config_Binding_Key" struct { | ||
701 | value "context" int: 0; | ||
702 | value "key" string: "Up"; | ||
703 | value "action" string: "move"; | ||
704 | value "params" string: "up_multi"; | ||
705 | group "modifiers" list { | ||
706 | group "Elm_Config_Binding_Modifier" struct { | ||
707 | value "mod" string: "Shift"; | ||
708 | value "flag" uchar: 1; | ||
709 | } | ||
710 | } | ||
711 | } | ||
712 | group "Elm_Config_Binding_Key" struct { | ||
713 | value "context" int: 0; | ||
714 | value "key" string: "KP_Up"; | ||
715 | value "action" string: "move"; | ||
716 | value "params" string: "up"; | ||
717 | group "modifiers" list { | ||
718 | group "Elm_Config_Binding_Modifier" struct { | ||
719 | value "mod" string: "Shift"; | ||
720 | value "flag" uchar: 0; | ||
721 | } | ||
722 | } | ||
723 | } | ||
724 | group "Elm_Config_Binding_Key" struct { | ||
725 | value "context" int: 0; | ||
726 | value "key" string: "KP_Up"; | ||
727 | value "action" string: "move"; | ||
728 | value "params" string: "up_multi"; | ||
729 | group "modifiers" list { | ||
730 | group "Elm_Config_Binding_Modifier" struct { | ||
731 | value "mod" string: "Shift"; | ||
732 | value "flag" uchar: 1; | ||
733 | } | ||
734 | } | ||
735 | } | ||
736 | group "Elm_Config_Binding_Key" struct { | ||
737 | value "context" int: 0; | ||
738 | value "key" string: "Down"; | ||
739 | value "action" string: "move"; | ||
740 | value "params" string: "down"; | ||
741 | group "modifiers" list { | ||
742 | group "Elm_Config_Binding_Modifier" struct { | ||
743 | value "mod" string: "Shift"; | ||
744 | value "flag" uchar: 0; | ||
745 | } | ||
746 | } | ||
747 | } | ||
748 | group "Elm_Config_Binding_Key" struct { | ||
749 | value "context" int: 0; | ||
750 | value "key" string: "Down"; | ||
751 | value "action" string: "move"; | ||
752 | value "params" string: "down_multi"; | ||
753 | group "modifiers" list { | ||
754 | group "Elm_Config_Binding_Modifier" struct { | ||
755 | value "mod" string: "Shift"; | ||
756 | value "flag" uchar: 1; | ||
757 | } | ||
758 | } | ||
759 | } | ||
760 | group "Elm_Config_Binding_Key" struct { | ||
761 | value "context" int: 0; | ||
762 | value "key" string: "KP_Down"; | ||
763 | value "action" string: "move"; | ||
764 | value "params" string: "down"; | ||
765 | group "modifiers" list { | ||
766 | group "Elm_Config_Binding_Modifier" struct { | ||
767 | value "mod" string: "Shift"; | ||
768 | value "flag" uchar: 0; | ||
769 | } | ||
770 | } | ||
771 | } | ||
772 | group "Elm_Config_Binding_Key" struct { | ||
773 | value "context" int: 0; | ||
774 | value "key" string: "KP_Down"; | ||
775 | value "action" string: "move"; | ||
776 | value "params" string: "down_multi"; | ||
777 | group "modifiers" list { | ||
778 | group "Elm_Config_Binding_Modifier" struct { | ||
779 | value "mod" string: "Shift"; | ||
780 | value "flag" uchar: 1; | ||
781 | } | ||
782 | } | ||
783 | } | ||
784 | group "Elm_Config_Binding_Key" struct { | ||
785 | value "context" int: 0; | ||
786 | value "key" string: "Home"; | ||
787 | value "action" string: "move"; | ||
788 | value "params" string: "first"; | ||
789 | } | ||
790 | group "Elm_Config_Binding_Key" struct { | ||
791 | value "context" int: 0; | ||
792 | value "key" string: "KP_Home"; | ||
793 | value "action" string: "move"; | ||
794 | value "params" string: "first"; | ||
795 | } | ||
796 | group "Elm_Config_Binding_Key" struct { | ||
797 | value "context" int: 0; | ||
798 | value "key" string: "End"; | ||
799 | value "action" string: "move"; | ||
800 | value "params" string: "last"; | ||
801 | } | ||
802 | group "Elm_Config_Binding_Key" struct { | ||
803 | value "context" int: 0; | ||
804 | value "key" string: "KP_End"; | ||
805 | value "action" string: "move"; | ||
806 | value "params" string: "last"; | ||
807 | } | ||
808 | group "Elm_Config_Binding_Key" struct { | ||
809 | value "context" int: 0; | ||
810 | value "key" string: "Prior"; | ||
811 | value "action" string: "move"; | ||
812 | value "params" string: "prior"; | ||
813 | } | ||
814 | group "Elm_Config_Binding_Key" struct { | ||
815 | value "context" int: 0; | ||
816 | value "key" string: "KP_Prior"; | ||
817 | value "action" string: "move"; | ||
818 | value "params" string: "prior"; | ||
819 | } | ||
820 | group "Elm_Config_Binding_Key" struct { | ||
821 | value "context" int: 0; | ||
822 | value "key" string: "Next"; | ||
823 | value "action" string: "move"; | ||
824 | value "params" string: "next"; | ||
825 | } | ||
826 | group "Elm_Config_Binding_Key" struct { | ||
827 | value "context" int: 0; | ||
828 | value "key" string: "KP_Next"; | ||
829 | value "action" string: "move"; | ||
830 | value "params" string: "next"; | ||
831 | } | ||
832 | group "Elm_Config_Binding_Key" struct { | ||
833 | value "context" int: 0; | ||
834 | value "key" string: "Return"; | ||
835 | value "action" string: "select"; | ||
836 | value "params" string: ""; | ||
837 | } | ||
838 | group "Elm_Config_Binding_Key" struct { | ||
839 | value "context" int: 0; | ||
840 | value "key" string: "KP_Enter"; | ||
841 | value "action" string: "select"; | ||
842 | value "params" string: ""; | ||
843 | } | ||
844 | group "Elm_Config_Binding_Key" struct { | ||
845 | value "context" int: 0; | ||
846 | value "key" string: "space"; | ||
847 | value "action" string: "select"; | ||
848 | value "params" string: ""; | ||
849 | } | ||
850 | group "Elm_Config_Binding_Key" struct { | ||
851 | value "context" int: 0; | ||
852 | value "key" string: "Escape"; | ||
853 | value "action" string: "escape"; | ||
854 | value "params" string: ""; | ||
855 | } | ||
856 | } | ||
857 | } | ||
858 | group "Elm_Config_Bindings_Widget" struct { | ||
662 | value "name" string: "Elm_Image"; | 859 | value "name" string: "Elm_Image"; |
663 | group "key_bindings" list { | 860 | group "key_bindings" list { |
664 | group "Elm_Config_Binding_Key" struct { | 861 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/standard/base.src b/config/standard/base.src index 9c507c014..be6af4a07 100644 --- a/config/standard/base.src +++ b/config/standard/base.src | |||
@@ -656,6 +656,203 @@ group "Elm_Config" struct { | |||
656 | } | 656 | } |
657 | } | 657 | } |
658 | group "Elm_Config_Bindings_Widget" struct { | 658 | group "Elm_Config_Bindings_Widget" struct { |
659 | value "name" string: "Elm_Genlist"; | ||
660 | group "key_bindings" list { | ||
661 | group "Elm_Config_Binding_Key" struct { | ||
662 | value "context" int: 0; | ||
663 | value "key" string: "Left"; | ||
664 | value "action" string: "move"; | ||
665 | value "params" string: "left"; | ||
666 | } | ||
667 | group "Elm_Config_Binding_Key" struct { | ||
668 | value "context" int: 0; | ||
669 | value "key" string: "KP_Left"; | ||
670 | value "action" string: "move"; | ||
671 | value "params" string: "left"; | ||
672 | } | ||
673 | group "Elm_Config_Binding_Key" struct { | ||
674 | value "context" int: 0; | ||
675 | value "key" string: "Right"; | ||
676 | value "action" string: "move"; | ||
677 | value "params" string: "right"; | ||
678 | } | ||
679 | group "Elm_Config_Binding_Key" struct { | ||
680 | value "context" int: 0; | ||
681 | value "key" string: "KP_Right"; | ||
682 | value "action" string: "move"; | ||
683 | value "params" string: "right"; | ||
684 | } | ||
685 | group "Elm_Config_Binding_Key" struct { | ||
686 | value "context" int: 0; | ||
687 | value "key" string: "Up"; | ||
688 | value "action" string: "move"; | ||
689 | value "params" string: "up"; | ||
690 | group "modifiers" list { | ||
691 | group "Elm_Config_Binding_Modifier" struct { | ||
692 | value "mod" string: "Shift"; | ||
693 | value "flag" uchar: 0; | ||
694 | } | ||
695 | } | ||
696 | } | ||
697 | group "Elm_Config_Binding_Key" struct { | ||
698 | value "context" int: 0; | ||
699 | value "key" string: "Up"; | ||
700 | value "action" string: "move"; | ||
701 | value "params" string: "up_multi"; | ||
702 | group "modifiers" list { | ||
703 | group "Elm_Config_Binding_Modifier" struct { | ||
704 | value "mod" string: "Shift"; | ||
705 | value "flag" uchar: 1; | ||
706 | } | ||
707 | } | ||
708 | } | ||
709 | group "Elm_Config_Binding_Key" struct { | ||
710 | value "context" int: 0; | ||
711 | value "key" string: "KP_Up"; | ||
712 | value "action" string: "move"; | ||
713 | value "params" string: "up"; | ||
714 | group "modifiers" list { | ||
715 | group "Elm_Config_Binding_Modifier" struct { | ||
716 | value "mod" string: "Shift"; | ||
717 | value "flag" uchar: 0; | ||
718 | } | ||
719 | } | ||
720 | } | ||
721 | group "Elm_Config_Binding_Key" struct { | ||
722 | value "context" int: 0; | ||
723 | value "key" string: "KP_Up"; | ||
724 | value "action" string: "move"; | ||
725 | value "params" string: "up_multi"; | ||
726 | group "modifiers" list { | ||
727 | group "Elm_Config_Binding_Modifier" struct { | ||
728 | value "mod" string: "Shift"; | ||
729 | value "flag" uchar: 1; | ||
730 | } | ||
731 | } | ||
732 | } | ||
733 | group "Elm_Config_Binding_Key" struct { | ||
734 | value "context" int: 0; | ||
735 | value "key" string: "Down"; | ||
736 | value "action" string: "move"; | ||
737 | value "params" string: "down"; | ||
738 | group "modifiers" list { | ||
739 | group "Elm_Config_Binding_Modifier" struct { | ||
740 | value "mod" string: "Shift"; | ||
741 | value "flag" uchar: 0; | ||
742 | } | ||
743 | } | ||
744 | } | ||
745 | group "Elm_Config_Binding_Key" struct { | ||
746 | value "context" int: 0; | ||
747 | value "key" string: "Down"; | ||
748 | value "action" string: "move"; | ||
749 | value "params" string: "down_multi"; | ||
750 | group "modifiers" list { | ||
751 | group "Elm_Config_Binding_Modifier" struct { | ||
752 | value "mod" string: "Shift"; | ||
753 | value "flag" uchar: 1; | ||
754 | } | ||
755 | } | ||
756 | } | ||
757 | group "Elm_Config_Binding_Key" struct { | ||
758 | value "context" int: 0; | ||
759 | value "key" string: "KP_Down"; | ||
760 | value "action" string: "move"; | ||
761 | value "params" string: "down"; | ||
762 | group "modifiers" list { | ||
763 | group "Elm_Config_Binding_Modifier" struct { | ||
764 | value "mod" string: "Shift"; | ||
765 | value "flag" uchar: 0; | ||
766 | } | ||
767 | } | ||
768 | } | ||
769 | group "Elm_Config_Binding_Key" struct { | ||
770 | value "context" int: 0; | ||
771 | value "key" string: "KP_Down"; | ||
772 | value "action" string: "move"; | ||
773 | value "params" string: "down_multi"; | ||
774 | group "modifiers" list { | ||
775 | group "Elm_Config_Binding_Modifier" struct { | ||
776 | value "mod" string: "Shift"; | ||
777 | value "flag" uchar: 1; | ||
778 | } | ||
779 | } | ||
780 | } | ||
781 | group "Elm_Config_Binding_Key" struct { | ||
782 | value "context" int: 0; | ||
783 | value "key" string: "Home"; | ||
784 | value "action" string: "move"; | ||
785 | value "params" string: "first"; | ||
786 | } | ||
787 | group "Elm_Config_Binding_Key" struct { | ||
788 | value "context" int: 0; | ||
789 | value "key" string: "KP_Home"; | ||
790 | value "action" string: "move"; | ||
791 | value "params" string: "first"; | ||
792 | } | ||
793 | group "Elm_Config_Binding_Key" struct { | ||
794 | value "context" int: 0; | ||
795 | value "key" string: "End"; | ||
796 | value "action" string: "move"; | ||
797 | value "params" string: "last"; | ||
798 | } | ||
799 | group "Elm_Config_Binding_Key" struct { | ||
800 | value "context" int: 0; | ||
801 | value "key" string: "KP_End"; | ||
802 | value "action" string: "move"; | ||
803 | value "params" string: "last"; | ||
804 | } | ||
805 | group "Elm_Config_Binding_Key" struct { | ||
806 | value "context" int: 0; | ||
807 | value "key" string: "Prior"; | ||
808 | value "action" string: "move"; | ||
809 | value "params" string: "prior"; | ||
810 | } | ||
811 | group "Elm_Config_Binding_Key" struct { | ||
812 | value "context" int: 0; | ||
813 | value "key" string: "KP_Prior"; | ||
814 | value "action" string: "move"; | ||
815 | value "params" string: "prior"; | ||
816 | } | ||
817 | group "Elm_Config_Binding_Key" struct { | ||
818 | value "context" int: 0; | ||
819 | value "key" string: "Next"; | ||
820 | value "action" string: "move"; | ||
821 | value "params" string: "next"; | ||
822 | } | ||
823 | group "Elm_Config_Binding_Key" struct { | ||
824 | value "context" int: 0; | ||
825 | value "key" string: "KP_Next"; | ||
826 | value "action" string: "move"; | ||
827 | value "params" string: "next"; | ||
828 | } | ||
829 | group "Elm_Config_Binding_Key" struct { | ||
830 | value "context" int: 0; | ||
831 | value "key" string: "Return"; | ||
832 | value "action" string: "select"; | ||
833 | value "params" string: ""; | ||
834 | } | ||
835 | group "Elm_Config_Binding_Key" struct { | ||
836 | value "context" int: 0; | ||
837 | value "key" string: "KP_Enter"; | ||
838 | value "action" string: "select"; | ||
839 | value "params" string: ""; | ||
840 | } | ||
841 | group "Elm_Config_Binding_Key" struct { | ||
842 | value "context" int: 0; | ||
843 | value "key" string: "space"; | ||
844 | value "action" string: "select"; | ||
845 | value "params" string: ""; | ||
846 | } | ||
847 | group "Elm_Config_Binding_Key" struct { | ||
848 | value "context" int: 0; | ||
849 | value "key" string: "Escape"; | ||
850 | value "action" string: "escape"; | ||
851 | value "params" string: ""; | ||
852 | } | ||
853 | } | ||
854 | } | ||
855 | group "Elm_Config_Bindings_Widget" struct { | ||
659 | value "name" string: "Elm_Image"; | 856 | value "name" string: "Elm_Image"; |
660 | group "key_bindings" list { | 857 | group "key_bindings" list { |
661 | group "Elm_Config_Binding_Key" struct { | 858 | group "Elm_Config_Binding_Key" struct { |