diff options
author | ali <ali198724@gmail.com> | 2020-02-04 16:40:59 +0100 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2020-02-04 16:44:58 +0100 |
commit | 5f5253214c4f2c9d224ed5b21affb1be8f9e624b (patch) | |
tree | 3416caf7cc70760731646a1975d48d062460eff4 /src/lib/efl | |
parent | 7c058d5e61b3dba29bd36e21f6a9245dce9edde5 (diff) |
efl.input.text: add underscore for enums names
Summary:
(Efl.Input_Text.Panel_Layout_Type) phonenumber -> phone_number
(Efl.Input_Text.Panel_Layout_Type) numberonly ->number_only
(Efl.Input_Text.Capitalize_Type) allcharacter -> all
(Efl.Input_Text.Panel_Layout_Normal_Variation_Type) filename -> file_name
(Efl.Input_Text.Panel_Layout_Password_Variation_Type) numberonly-> number_only
Reviewers: segfaultxavi, woohyun, bu5hm4n
Reviewed By: segfaultxavi
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Maniphest Tasks: T8541
Differential Revision: https://phab.enlightenment.org/D11280
Diffstat (limited to 'src/lib/efl')
-rw-r--r-- | src/lib/efl/interfaces/efl_input_text.eo | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/efl/interfaces/efl_input_text.eo b/src/lib/efl/interfaces/efl_input_text.eo index d967bbeb1a..7526658635 100644 --- a/src/lib/efl/interfaces/efl_input_text.eo +++ b/src/lib/efl/interfaces/efl_input_text.eo | |||
@@ -7,10 +7,10 @@ enum @beta Efl.Input_Text.Panel_Layout_Type | |||
7 | number, [[Number layout.]] | 7 | number, [[Number layout.]] |
8 | email, [[Email layout.]] | 8 | email, [[Email layout.]] |
9 | url, [[URL layout.]] | 9 | url, [[URL layout.]] |
10 | phonenumber, [[Phone Number layout.]] | 10 | phone_number, [[Phone Number layout.]] |
11 | ip, [[IP layout.]] | 11 | ip, [[IP layout.]] |
12 | month, [[Month layout.]] | 12 | month, [[Month layout.]] |
13 | numberonly, [[Number Only layout.]] | 13 | number_only, [[Number Only layout.]] |
14 | invalid, [[Never use this.]] | 14 | invalid, [[Never use this.]] |
15 | hex, [[Hexadecimal layout.]] | 15 | hex, [[Hexadecimal layout.]] |
16 | terminal, [[Command-line terminal layout including esc, alt, ctrl key, so on (no auto-correct, no auto-capitalization).]] | 16 | terminal, [[Command-line terminal layout including esc, alt, ctrl key, so on (no auto-correct, no auto-capitalization).]] |
@@ -36,7 +36,7 @@ enum @beta Efl.Input_Text.Capitalize_Type | |||
36 | none, [[No auto-capitalization when typing.]] | 36 | none, [[No auto-capitalization when typing.]] |
37 | word, [[Autocapitalize each word typed.]] | 37 | word, [[Autocapitalize each word typed.]] |
38 | sentence, [[Autocapitalize the start of each sentence.]] | 38 | sentence, [[Autocapitalize the start of each sentence.]] |
39 | allcharacter [[Autocapitalize all letters.]] | 39 | all [[Autocapitalize all letters.]] |
40 | } | 40 | } |
41 | 41 | ||
42 | enum @beta Efl.Input_Text.Panel_Return_Key_Type | 42 | enum @beta Efl.Input_Text.Panel_Return_Key_Type |
@@ -88,7 +88,7 @@ enum @beta Efl.Input_Text.Panel_Layout_Normal_Variation_Type | |||
88 | { | 88 | { |
89 | [[Enumeration for defining the types of @Efl.Input_Text.Panel_Layout_Type for normal variation.]] | 89 | [[Enumeration for defining the types of @Efl.Input_Text.Panel_Layout_Type for normal variation.]] |
90 | normal , [[The plain normal layout.]] | 90 | normal , [[The plain normal layout.]] |
91 | filename , [[Filename layout. Symbols such as '/' should be disabled.]] | 91 | file_name , [[Filename layout. Symbols such as '/' should be disabled.]] |
92 | person_name , [[The name of a person, @Efl.Input_Text.autocapitalization will be set to @Efl.Input_Text.Capitalize_Type.word.]] | 92 | person_name , [[The name of a person, @Efl.Input_Text.autocapitalization will be set to @Efl.Input_Text.Capitalize_Type.word.]] |
93 | } | 93 | } |
94 | 94 | ||
@@ -105,7 +105,7 @@ enum @beta Efl.Input_Text.Panel_Layout_Password_Variation_Type | |||
105 | { | 105 | { |
106 | [[Enumeration for defining the types of @Efl.Input_Text.Panel_Layout_Type for normal variation.]] | 106 | [[Enumeration for defining the types of @Efl.Input_Text.Panel_Layout_Type for normal variation.]] |
107 | normal , [[The normal password layout.]] | 107 | normal , [[The normal password layout.]] |
108 | numberonly , [[The password layout to allow only number.]] | 108 | number_only , [[The password layout to allow only number.]] |
109 | } | 109 | } |
110 | 110 | ||
111 | 111 | ||