diff options
author | Tom Hacohen <tom@stosb.com> | 2015-06-10 15:36:28 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-06-10 15:36:28 +0100 |
commit | 2605eb3c1524764c2bd5edef7bb08d914651cc75 (patch) | |
tree | e851346a2c167c4d8dbc446e906c585599c1d014 /src | |
parent | d10f9733ac7b9f5dc59607d2f61b4b70c3d9c787 (diff) |
Evas: Fix abi break in Evas_Callback_Type
You are not allowed to insert elements into an enum, except for at the
end!!!
Spank spank spank.
Was introduced in: 86751fdbaf28796736876e23b86f26480e22de52
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/evas/canvas/evas_types.eot | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib/evas/canvas/evas_types.eot b/src/lib/evas/canvas/evas_types.eot index ffa4e350df..262f7cdedb 100644 --- a/src/lib/evas/canvas/evas_types.eot +++ b/src/lib/evas/canvas/evas_types.eot | |||
@@ -186,21 +186,13 @@ enum Evas.Callback_Type | |||
186 | changed_size_hints, [[Size hints changed event]] | 186 | changed_size_hints, [[Size hints changed event]] |
187 | image_preloaded, [[Image has been preloaded]] | 187 | image_preloaded, [[Image has been preloaded]] |
188 | 188 | ||
189 | /* | ||
190 | * The following events are only for use with Evas canvases, with | ||
191 | * evas_event_callback_add(): | ||
192 | */ | ||
193 | canvas_focus_in, [[Canvas got focus as a whole]] | 189 | canvas_focus_in, [[Canvas got focus as a whole]] |
194 | canvas_focus_out, [[Canvas lost focus as a whole]] | 190 | canvas_focus_out, [[Canvas lost focus as a whole]] |
195 | render_flush_pre, [[Called just before rendering is updated on the canvas target]] | 191 | render_flush_pre, [[Called just before rendering is updated on the canvas target]] |
196 | render_flush_post, [[Called just after rendering is updated on the canvas target]] | 192 | render_flush_post, [[Called just after rendering is updated on the canvas target]] |
197 | canvas_object_focus_in, [[Canvas object got focus]] | 193 | canvas_object_focus_in, [[Canvas object got focus]] |
198 | canvas_object_focus_ouT, [[Canvas object lost focus]] | 194 | canvas_object_focus_ouT, [[Canvas object lost focus]] |
199 | canvas_viewport_resize, [[Canvas viewport resized @since 1.15]] | ||
200 | 195 | ||
201 | /* | ||
202 | * More Evas object event types - see evas_object_event_callback_add(): | ||
203 | */ | ||
204 | image_unloaded, [[Image data has been unloaded (by some mechanism in Evas that throw out original image data)]] | 196 | image_unloaded, [[Image data has been unloaded (by some mechanism in Evas that throw out original image data)]] |
205 | 197 | ||
206 | render_pre, [[Called just before rendering starts on the canvas target @since 1.2]] | 198 | render_pre, [[Called just before rendering starts on the canvas target @since 1.2]] |
@@ -210,6 +202,8 @@ enum Evas.Callback_Type | |||
210 | device_changed, [[Devices added, removed or changed on canvas @since 1.8]] | 202 | device_changed, [[Devices added, removed or changed on canvas @since 1.8]] |
211 | 203 | ||
212 | axis_update, [[Input device changed value on some axis @since 1.13]] | 204 | axis_update, [[Input device changed value on some axis @since 1.13]] |
205 | |||
206 | canvas_viewport_resize, [[Canvas viewport resized @since 1.15]] | ||
213 | last [[kept as last element/sentinel -- not really an event]] | 207 | last [[kept as last element/sentinel -- not really an event]] |
214 | } | 208 | } |
215 | 209 | ||