diff options
author | Jaeun Choi <jaeun12.choi@samsung.com> | 2014-04-15 16:07:17 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-04-15 16:07:17 +0900 |
commit | 2b4d28114bd46ef61d3f70c80d2023bca42af3ee (patch) | |
tree | f547a87f35775a1181edbd72d4d76fc8a4fd6052 /config | |
parent | fe6bb1d6b86933d50114b73da7302ec705633555 (diff) |
photocam: apply key binding
Summary: This patch applies key binding to elm_photocam.
Test Plan: None
Reviewers: Hermet, raster
Differential Revision: https://phab.enlightenment.org/D735
Diffstat (limited to 'config')
-rw-r--r-- | config/default/base.src | 89 | ||||
-rw-r--r-- | config/mobile/base.src | 89 | ||||
-rw-r--r-- | config/standard/base.src | 89 |
3 files changed, 267 insertions, 0 deletions
diff --git a/config/default/base.src b/config/default/base.src index ef1b85b31..2f501386a 100644 --- a/config/default/base.src +++ b/config/default/base.src | |||
@@ -1059,6 +1059,95 @@ group "Elm_Config" struct { | |||
1059 | } | 1059 | } |
1060 | } | 1060 | } |
1061 | group "Elm_Config_Bindings_Widget" struct { | 1061 | group "Elm_Config_Bindings_Widget" struct { |
1062 | value "name" string: "Elm_Photocam"; | ||
1063 | group "key_bindings" list { | ||
1064 | group "Elm_Config_Binding_Key" struct { | ||
1065 | value "context" int: 0; | ||
1066 | value "key" string: "Left"; | ||
1067 | value "action" string: "move"; | ||
1068 | value "params" string: "left"; | ||
1069 | } | ||
1070 | group "Elm_Config_Binding_Key" struct { | ||
1071 | value "context" int: 0; | ||
1072 | value "key" string: "KP_Left"; | ||
1073 | value "action" string: "move"; | ||
1074 | value "params" string: "left"; | ||
1075 | } | ||
1076 | group "Elm_Config_Binding_Key" struct { | ||
1077 | value "context" int: 0; | ||
1078 | value "key" string: "Right"; | ||
1079 | value "action" string: "move"; | ||
1080 | value "params" string: "right"; | ||
1081 | } | ||
1082 | group "Elm_Config_Binding_Key" struct { | ||
1083 | value "context" int: 0; | ||
1084 | value "key" string: "KP_Right"; | ||
1085 | value "action" string: "move"; | ||
1086 | value "params" string: "right"; | ||
1087 | } | ||
1088 | group "Elm_Config_Binding_Key" struct { | ||
1089 | value "context" int: 0; | ||
1090 | value "key" string: "Up"; | ||
1091 | value "action" string: "move"; | ||
1092 | value "params" string: "up"; | ||
1093 | } | ||
1094 | group "Elm_Config_Binding_Key" struct { | ||
1095 | value "context" int: 0; | ||
1096 | value "key" string: "KP_Up"; | ||
1097 | value "action" string: "move"; | ||
1098 | value "params" string: "up"; | ||
1099 | } | ||
1100 | group "Elm_Config_Binding_Key" struct { | ||
1101 | value "context" int: 0; | ||
1102 | value "key" string: "Down"; | ||
1103 | value "action" string: "move"; | ||
1104 | value "params" string: "down"; | ||
1105 | } | ||
1106 | group "Elm_Config_Binding_Key" struct { | ||
1107 | value "context" int: 0; | ||
1108 | value "key" string: "KP_Down"; | ||
1109 | value "action" string: "move"; | ||
1110 | value "params" string: "down"; | ||
1111 | } | ||
1112 | group "Elm_Config_Binding_Key" struct { | ||
1113 | value "context" int: 0; | ||
1114 | value "key" string: "Prior"; | ||
1115 | value "action" string: "move"; | ||
1116 | value "params" string: "prior"; | ||
1117 | } | ||
1118 | group "Elm_Config_Binding_Key" struct { | ||
1119 | value "context" int: 0; | ||
1120 | value "key" string: "KP_Prior"; | ||
1121 | value "action" string: "move"; | ||
1122 | value "params" string: "prior"; | ||
1123 | } | ||
1124 | group "Elm_Config_Binding_Key" struct { | ||
1125 | value "context" int: 0; | ||
1126 | value "key" string: "Next"; | ||
1127 | value "action" string: "move"; | ||
1128 | value "params" string: "next"; | ||
1129 | } | ||
1130 | group "Elm_Config_Binding_Key" struct { | ||
1131 | value "context" int: 0; | ||
1132 | value "key" string: "KP_Next"; | ||
1133 | value "action" string: "move"; | ||
1134 | value "params" string: "next"; | ||
1135 | } | ||
1136 | group "Elm_Config_Binding_Key" struct { | ||
1137 | value "context" int: 0; | ||
1138 | value "key" string: "KP_Add"; | ||
1139 | value "action" string: "zoom"; | ||
1140 | value "params" string: "in"; | ||
1141 | } | ||
1142 | group "Elm_Config_Binding_Key" struct { | ||
1143 | value "context" int: 0; | ||
1144 | value "key" string: "KP_Subtract"; | ||
1145 | value "action" string: "zoom"; | ||
1146 | value "params" string: "out"; | ||
1147 | } | ||
1148 | } | ||
1149 | } | ||
1150 | group "Elm_Config_Bindings_Widget" struct { | ||
1062 | value "name" string: "Elc_Naviframe"; | 1151 | value "name" string: "Elc_Naviframe"; |
1063 | group "key_bindings" list { | 1152 | group "key_bindings" list { |
1064 | group "Elm_Config_Binding_Key" struct { | 1153 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/mobile/base.src b/config/mobile/base.src index 5060e3b03..a5de3c84d 100644 --- a/config/mobile/base.src +++ b/config/mobile/base.src | |||
@@ -1063,6 +1063,95 @@ group "Elm_Config" struct { | |||
1063 | } | 1063 | } |
1064 | } | 1064 | } |
1065 | group "Elm_Config_Bindings_Widget" struct { | 1065 | group "Elm_Config_Bindings_Widget" struct { |
1066 | value "name" string: "Elm_Photocam"; | ||
1067 | group "key_bindings" list { | ||
1068 | group "Elm_Config_Binding_Key" struct { | ||
1069 | value "context" int: 0; | ||
1070 | value "key" string: "Left"; | ||
1071 | value "action" string: "move"; | ||
1072 | value "params" string: "left"; | ||
1073 | } | ||
1074 | group "Elm_Config_Binding_Key" struct { | ||
1075 | value "context" int: 0; | ||
1076 | value "key" string: "KP_Left"; | ||
1077 | value "action" string: "move"; | ||
1078 | value "params" string: "left"; | ||
1079 | } | ||
1080 | group "Elm_Config_Binding_Key" struct { | ||
1081 | value "context" int: 0; | ||
1082 | value "key" string: "Right"; | ||
1083 | value "action" string: "move"; | ||
1084 | value "params" string: "right"; | ||
1085 | } | ||
1086 | group "Elm_Config_Binding_Key" struct { | ||
1087 | value "context" int: 0; | ||
1088 | value "key" string: "KP_Right"; | ||
1089 | value "action" string: "move"; | ||
1090 | value "params" string: "right"; | ||
1091 | } | ||
1092 | group "Elm_Config_Binding_Key" struct { | ||
1093 | value "context" int: 0; | ||
1094 | value "key" string: "Up"; | ||
1095 | value "action" string: "move"; | ||
1096 | value "params" string: "up"; | ||
1097 | } | ||
1098 | group "Elm_Config_Binding_Key" struct { | ||
1099 | value "context" int: 0; | ||
1100 | value "key" string: "KP_Up"; | ||
1101 | value "action" string: "move"; | ||
1102 | value "params" string: "up"; | ||
1103 | } | ||
1104 | group "Elm_Config_Binding_Key" struct { | ||
1105 | value "context" int: 0; | ||
1106 | value "key" string: "Down"; | ||
1107 | value "action" string: "move"; | ||
1108 | value "params" string: "down"; | ||
1109 | } | ||
1110 | group "Elm_Config_Binding_Key" struct { | ||
1111 | value "context" int: 0; | ||
1112 | value "key" string: "KP_Down"; | ||
1113 | value "action" string: "move"; | ||
1114 | value "params" string: "down"; | ||
1115 | } | ||
1116 | group "Elm_Config_Binding_Key" struct { | ||
1117 | value "context" int: 0; | ||
1118 | value "key" string: "Prior"; | ||
1119 | value "action" string: "move"; | ||
1120 | value "params" string: "prior"; | ||
1121 | } | ||
1122 | group "Elm_Config_Binding_Key" struct { | ||
1123 | value "context" int: 0; | ||
1124 | value "key" string: "KP_Prior"; | ||
1125 | value "action" string: "move"; | ||
1126 | value "params" string: "prior"; | ||
1127 | } | ||
1128 | group "Elm_Config_Binding_Key" struct { | ||
1129 | value "context" int: 0; | ||
1130 | value "key" string: "Next"; | ||
1131 | value "action" string: "move"; | ||
1132 | value "params" string: "next"; | ||
1133 | } | ||
1134 | group "Elm_Config_Binding_Key" struct { | ||
1135 | value "context" int: 0; | ||
1136 | value "key" string: "KP_Next"; | ||
1137 | value "action" string: "move"; | ||
1138 | value "params" string: "next"; | ||
1139 | } | ||
1140 | group "Elm_Config_Binding_Key" struct { | ||
1141 | value "context" int: 0; | ||
1142 | value "key" string: "KP_Add"; | ||
1143 | value "action" string: "zoom"; | ||
1144 | value "params" string: "in"; | ||
1145 | } | ||
1146 | group "Elm_Config_Binding_Key" struct { | ||
1147 | value "context" int: 0; | ||
1148 | value "key" string: "KP_Subtract"; | ||
1149 | value "action" string: "zoom"; | ||
1150 | value "params" string: "out"; | ||
1151 | } | ||
1152 | } | ||
1153 | } | ||
1154 | group "Elm_Config_Bindings_Widget" struct { | ||
1066 | value "name" string: "Elc_Naviframe"; | 1155 | value "name" string: "Elc_Naviframe"; |
1067 | group "key_bindings" list { | 1156 | group "key_bindings" list { |
1068 | group "Elm_Config_Binding_Key" struct { | 1157 | group "Elm_Config_Binding_Key" struct { |
diff --git a/config/standard/base.src b/config/standard/base.src index 5ad716933..76c2d865f 100644 --- a/config/standard/base.src +++ b/config/standard/base.src | |||
@@ -1060,6 +1060,95 @@ group "Elm_Config" struct { | |||
1060 | } | 1060 | } |
1061 | } | 1061 | } |
1062 | group "Elm_Config_Bindings_Widget" struct { | 1062 | group "Elm_Config_Bindings_Widget" struct { |
1063 | value "name" string: "Elm_Photocam"; | ||
1064 | group "key_bindings" list { | ||
1065 | group "Elm_Config_Binding_Key" struct { | ||
1066 | value "context" int: 0; | ||
1067 | value "key" string: "Left"; | ||
1068 | value "action" string: "move"; | ||
1069 | value "params" string: "left"; | ||
1070 | } | ||
1071 | group "Elm_Config_Binding_Key" struct { | ||
1072 | value "context" int: 0; | ||
1073 | value "key" string: "KP_Left"; | ||
1074 | value "action" string: "move"; | ||
1075 | value "params" string: "left"; | ||
1076 | } | ||
1077 | group "Elm_Config_Binding_Key" struct { | ||
1078 | value "context" int: 0; | ||
1079 | value "key" string: "Right"; | ||
1080 | value "action" string: "move"; | ||
1081 | value "params" string: "right"; | ||
1082 | } | ||
1083 | group "Elm_Config_Binding_Key" struct { | ||
1084 | value "context" int: 0; | ||
1085 | value "key" string: "KP_Right"; | ||
1086 | value "action" string: "move"; | ||
1087 | value "params" string: "right"; | ||
1088 | } | ||
1089 | group "Elm_Config_Binding_Key" struct { | ||
1090 | value "context" int: 0; | ||
1091 | value "key" string: "Up"; | ||
1092 | value "action" string: "move"; | ||
1093 | value "params" string: "up"; | ||
1094 | } | ||
1095 | group "Elm_Config_Binding_Key" struct { | ||
1096 | value "context" int: 0; | ||
1097 | value "key" string: "KP_Up"; | ||
1098 | value "action" string: "move"; | ||
1099 | value "params" string: "up"; | ||
1100 | } | ||
1101 | group "Elm_Config_Binding_Key" struct { | ||
1102 | value "context" int: 0; | ||
1103 | value "key" string: "Down"; | ||
1104 | value "action" string: "move"; | ||
1105 | value "params" string: "down"; | ||
1106 | } | ||
1107 | group "Elm_Config_Binding_Key" struct { | ||
1108 | value "context" int: 0; | ||
1109 | value "key" string: "KP_Down"; | ||
1110 | value "action" string: "move"; | ||
1111 | value "params" string: "down"; | ||
1112 | } | ||
1113 | group "Elm_Config_Binding_Key" struct { | ||
1114 | value "context" int: 0; | ||
1115 | value "key" string: "Prior"; | ||
1116 | value "action" string: "move"; | ||
1117 | value "params" string: "prior"; | ||
1118 | } | ||
1119 | group "Elm_Config_Binding_Key" struct { | ||
1120 | value "context" int: 0; | ||
1121 | value "key" string: "KP_Prior"; | ||
1122 | value "action" string: "move"; | ||
1123 | value "params" string: "prior"; | ||
1124 | } | ||
1125 | group "Elm_Config_Binding_Key" struct { | ||
1126 | value "context" int: 0; | ||
1127 | value "key" string: "Next"; | ||
1128 | value "action" string: "move"; | ||
1129 | value "params" string: "next"; | ||
1130 | } | ||
1131 | group "Elm_Config_Binding_Key" struct { | ||
1132 | value "context" int: 0; | ||
1133 | value "key" string: "KP_Next"; | ||
1134 | value "action" string: "move"; | ||
1135 | value "params" string: "next"; | ||
1136 | } | ||
1137 | group "Elm_Config_Binding_Key" struct { | ||
1138 | value "context" int: 0; | ||
1139 | value "key" string: "KP_Add"; | ||
1140 | value "action" string: "zoom"; | ||
1141 | value "params" string: "in"; | ||
1142 | } | ||
1143 | group "Elm_Config_Binding_Key" struct { | ||
1144 | value "context" int: 0; | ||
1145 | value "key" string: "KP_Subtract"; | ||
1146 | value "action" string: "zoom"; | ||
1147 | value "params" string: "out"; | ||
1148 | } | ||
1149 | } | ||
1150 | } | ||
1151 | group "Elm_Config_Bindings_Widget" struct { | ||
1063 | value "name" string: "Elc_Naviframe"; | 1152 | value "name" string: "Elc_Naviframe"; |
1064 | group "key_bindings" list { | 1153 | group "key_bindings" list { |
1065 | group "Elm_Config_Binding_Key" struct { | 1154 | group "Elm_Config_Binding_Key" struct { |