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
This commit is contained in:
Ali Alzyod 2020-02-04 16:40:59 +01:00 committed by Xavi Artigas
parent 7c058d5e61
commit 5f5253214c
1 changed files with 5 additions and 5 deletions

View File

@ -7,10 +7,10 @@ enum @beta Efl.Input_Text.Panel_Layout_Type
number, [[Number layout.]]
email, [[Email layout.]]
url, [[URL layout.]]
phonenumber, [[Phone Number layout.]]
phone_number, [[Phone Number layout.]]
ip, [[IP layout.]]
month, [[Month layout.]]
numberonly, [[Number Only layout.]]
number_only, [[Number Only layout.]]
invalid, [[Never use this.]]
hex, [[Hexadecimal layout.]]
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
none, [[No auto-capitalization when typing.]]
word, [[Autocapitalize each word typed.]]
sentence, [[Autocapitalize the start of each sentence.]]
allcharacter [[Autocapitalize all letters.]]
all [[Autocapitalize all letters.]]
}
enum @beta Efl.Input_Text.Panel_Return_Key_Type
@ -88,7 +88,7 @@ enum @beta Efl.Input_Text.Panel_Layout_Normal_Variation_Type
{
[[Enumeration for defining the types of @Efl.Input_Text.Panel_Layout_Type for normal variation.]]
normal , [[The plain normal layout.]]
filename , [[Filename layout. Symbols such as '/' should be disabled.]]
file_name , [[Filename layout. Symbols such as '/' should be disabled.]]
person_name , [[The name of a person, @Efl.Input_Text.autocapitalization will be set to @Efl.Input_Text.Capitalize_Type.word.]]
}
@ -105,7 +105,7 @@ enum @beta Efl.Input_Text.Panel_Layout_Password_Variation_Type
{
[[Enumeration for defining the types of @Efl.Input_Text.Panel_Layout_Type for normal variation.]]
normal , [[The normal password layout.]]
numberonly , [[The password layout to allow only number.]]
number_only , [[The password layout to allow only number.]]
}