elementary: move definition of Elm_Glob_Match_Flags to elm_general.eot
authorVitor Sousa <vitorsousasilva@gmail.com>
Fri, 22 Jan 2016 21:42:58 +0000 (19:42 -0200)
committerFelipe Magno de Almeida <felipe@expertisesolutions.com.br>
Tue, 9 Feb 2016 16:14:08 +0000 (14:14 -0200)
Move definition of Elm_Glob_Match_Flags from elm_gen.h to
elm_general.eot.
Use the Eolian name Elm.Glob.Match_Flags and replace the older name
by it in all .eo files.

Keep the legacy prefix "ELM_GLOB_MATCH".

legacy/elementary/src/lib/elm_gen.h
legacy/elementary/src/lib/elm_general.eot
legacy/elementary/src/lib/elm_gengrid.eo
legacy/elementary/src/lib/elm_genlist.eo

index 9d09e71..8c1ce84 100644 (file)
@@ -45,11 +45,3 @@ typedef Eina_Bool                     (*Elm_Gen_Item_Filter_Get_Cb)(void *data,
 
 #define ELM_GEN_ITEM_CLASS_VERSION 2
 #define ELM_GEN_ITEM_CLASS_HEADER ELM_GEN_ITEM_CLASS_VERSION, 0, 0
-
-typedef enum
-{
-   ELM_GLOB_MATCH_NO_ESCAPE = (1 << 0), /**< Treat backslash as an ordinary character instead of escape */
-   ELM_GLOB_MATCH_PATH = (1 << 1), /**< Match a slash in string only with a slash in pattern and not by an asterisk (*) or a question mark (?) metacharacter, nor by a bracket expression ([]) containing a slash. */
-   ELM_GLOB_MATCH_PERIOD = (1 << 2), /**< Leading  period in string has to be matched exactly by a period in pattern. A period is considered to be leading if it is the first character in string, or if both ELM_GLOB_MATCH_PATH is set and the period immediately follows a slash. */
-   ELM_GLOB_MATCH_NOCASE = (1 << 3) /**< The pattern is matched case-insensitively. */
-} Elm_Glob_Match_Flags; /**< Glob matching bitfiled flags. @since 1.11 */
index ac19ca1..68e7e16 100644 (file)
@@ -47,6 +47,21 @@ type Elm.Gengrid.Item.Class: Elm.Gen.Item.Class; [[ See @Elm.Gen.Item.Class. ]]
 
 type Elm.Genlist.Item.Class: Elm.Gen.Item.Class; [[ See @Elm.Gen.Item.Class. ]]
 
+enum Elm.Glob.Match_Flags
+{
+   [[Glob matching bitfiled flags. @since 1.11]]
+   legacy: elm_glob_match;
+   no_escape = (1 << 0), [[Treat backslash as an ordinary character instead of escape]]
+   path = (1 << 1), [[Match a slash in string only with a slash in pattern and not by
+                      an asterisk (*) or a question mark (?) metacharacter, nor by a
+                      bracket expression ([]) containing a slash.]]
+   period = (1 << 2), [[Leading  period in string has to be matched exactly by a period
+                        in pattern. A period is considered to be leading if it is the
+                        first character in string, or if both ELM_GLOB_MATCH_PATH is
+                        set and the period immediately follows a slash.]]
+   nocase = (1 << 3), [[The pattern is matched case-insensitively.]]
+}
+
 enum Elm.Policy
 {
    [[Policy identifiers.]]
index 9fa3952..5dfead5 100644 (file)
@@ -515,7 +515,7 @@ class Elm.Gengrid (Elm.Layout, Elm.Interface_Scrollable,
             ]]
             @in part_name: const(char) *; [[Name of the TEXT part of gengrid item to search string in.]]
             @in pattern: const(char) *; [[The search pattern.]]
-            @in flags: Elm_Glob_Match_Flags; [[Search flags.]]
+            @in flags: Elm.Glob.Match_Flags; [[Search flags.]]
          }
       }
       reorder_mode_start {
index ddee611..84a7e9a 100644 (file)
@@ -506,7 +506,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac
             ]]
             @in part_name: const(char)*; [[Name of the TEXT part of genlist item to search string in.]]
             @in pattern: const(char)*; [[The search pattern.]]
-            @in flags: Elm_Glob_Match_Flags; [[Search flags.]]
+            @in flags: Elm.Glob.Match_Flags; [[Search flags.]]
          }
       }
    }