diff options
author | Tom Hacohen <tom@stosb.com> | 2015-06-10 16:56:43 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-06-10 16:56:48 +0100 |
commit | 24eaad059e88d0e9c65967cae59c32abd6338a7a (patch) | |
tree | 0f3219d8b2feb94a62d2ec4826b89833f79d005c /src/lib/edje/edje_types.eot | |
parent | 660e23fd75b40f09dfaba099b25121bf9d7e834e (diff) |
Edje object: Fix Eolian warnings (and migrate types).
Also add an eot file for general edje types.
Diffstat (limited to '')
-rw-r--r-- | src/lib/edje/edje_types.eot | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/lib/edje/edje_types.eot b/src/lib/edje/edje_types.eot new file mode 100644 index 0000000000..e8b4dc0f9c --- /dev/null +++ b/src/lib/edje/edje_types.eot | |||
@@ -0,0 +1,43 @@ | |||
1 | enum Edje.Cursor { | ||
2 | [[All available cursor states]] | ||
3 | main, [[Main cursor state]] | ||
4 | selection_begin, [[Selection begin cursor state]] | ||
5 | selection_end, [[Selection end cursor state]] | ||
6 | preedit_start, [[Pre-edit start cursor state]] | ||
7 | preedit_end, [[Pre-edit end cursor starge]] | ||
8 | user, [[User cursor state]] | ||
9 | user_extra [[User extra cursor state]] | ||
10 | } | ||
11 | |||
12 | enum Edje.Drag_Dir { | ||
13 | [[Dragable properties values]] | ||
14 | none = 0, [[Not dragable value]] | ||
15 | x = 1, [[X dragable value]] | ||
16 | y = 2, [[Y dragable value]] | ||
17 | xy = 3 [[X and Y dragable value]] | ||
18 | } | ||
19 | |||
20 | enum Edje.Load_Error { | ||
21 | [[Edje file loading error codes one can get - see edje_load_error_str() too.]] | ||
22 | |||
23 | none = 0, [[No error happened, the loading was successful]] | ||
24 | generic = 1, [[A generic error happened during the loading]] | ||
25 | does_not_exist = 2, [[The file pointed to did not exist]] | ||
26 | permission_denied = 3, [[Permission to read the given file was denied]] | ||
27 | resource_allocation_failed = 4, [[Resource allocation failed during the loading]] | ||
28 | corrupt_file = 5, [[The file pointed to was corrupt]] | ||
29 | unknown_format = 6, [[The file pointed to had an unknown format]] | ||
30 | incompatible_file = 7, [[The file pointed to is incompatible, i.e., it doesn't match the library's current version's format]] | ||
31 | unknown_collection = 8, [[The group/collection set to load from was @b not found in the file]] | ||
32 | recursive_reference = 9 [[The group/collection set to load from had <b>recursive references</b> on its components]] | ||
33 | } | ||
34 | |||
35 | enum Edje.Text.Autocapital_Type { | ||
36 | [[All Text auto capital mode type values]] | ||
37 | none, [[None mode value]] | ||
38 | word, [[Word mode value]] | ||
39 | sentence, [[Sentence mode value]] | ||
40 | allcharacter [[All characters mode value]] | ||
41 | } | ||
42 | |||
43 | struct Edje.Perspective; [[Perspective info for maps inside edje objects]] | ||