From 815acbc305f5c14671c1af20496994f9576bbc3e Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Fri, 11 Jul 2014 14:44:47 +0100 Subject: [PATCH] move all eo files to new builtin bool type --- legacy/elementary/src/lib/elc_ctxpopup.eo | 4 +- legacy/elementary/src/lib/elc_fileselector.eo | 2 +- .../src/lib/elc_fileselector_button.eo | 2 +- .../src/lib/elc_fileselector_entry.eo | 2 +- legacy/elementary/src/lib/elc_hoversel.eo | 4 +- .../src/lib/elc_multibuttonentry.eo | 4 +- legacy/elementary/src/lib/elc_naviframe.eo | 6 +- legacy/elementary/src/lib/elc_popup.eo | 2 +- .../elementary/src/lib/elm_app_client_view.eo | 2 +- legacy/elementary/src/lib/elm_app_server.eo | 4 +- .../elementary/src/lib/elm_app_server_view.eo | 2 +- legacy/elementary/src/lib/elm_bg.eo | 2 +- legacy/elementary/src/lib/elm_box.eo | 4 +- legacy/elementary/src/lib/elm_button.eo | 4 +- legacy/elementary/src/lib/elm_calendar.eo | 4 +- legacy/elementary/src/lib/elm_check.eo | 4 +- legacy/elementary/src/lib/elm_clock.eo | 8 +- legacy/elementary/src/lib/elm_container.eo | 2 +- legacy/elementary/src/lib/elm_datetime.eo | 16 ++-- legacy/elementary/src/lib/elm_dayselector.eo | 4 +- legacy/elementary/src/lib/elm_diskselector.eo | 2 +- legacy/elementary/src/lib/elm_entry.eo | 46 +++++----- legacy/elementary/src/lib/elm_flip.eo | 8 +- legacy/elementary/src/lib/elm_frame.eo | 6 +- legacy/elementary/src/lib/elm_gengrid.eo | 12 +-- legacy/elementary/src/lib/elm_genlist.eo | 14 +-- .../elementary/src/lib/elm_gesture_layer.eo | 4 +- legacy/elementary/src/lib/elm_glview.eo | 6 +- legacy/elementary/src/lib/elm_grid.eo | 2 +- legacy/elementary/src/lib/elm_icon.eo | 2 +- legacy/elementary/src/lib/elm_image.eo | 36 ++++---- legacy/elementary/src/lib/elm_index.eo | 8 +- .../src/lib/elm_interface_atspi_action.eo | 4 +- .../src/lib/elm_interface_atspi_component.eo | 18 ++-- .../lib/elm_interface_atspi_editable_text.eo | 12 +-- .../src/lib/elm_interface_atspi_image.eo | 2 +- .../src/lib/elm_interface_atspi_selection.eo | 12 +-- .../src/lib/elm_interface_atspi_text.eo | 22 ++--- .../src/lib/elm_interface_atspi_value.eo | 2 +- .../src/lib/elm_interface_fileselector.eo | 16 ++-- .../src/lib/elm_interface_scrollable.eo | 28 +++--- legacy/elementary/src/lib/elm_label.eo | 2 +- legacy/elementary/src/lib/elm_layout.eo | 48 +++++----- legacy/elementary/src/lib/elm_list.eo | 6 +- legacy/elementary/src/lib/elm_map.eo | 4 +- legacy/elementary/src/lib/elm_mapbuf.eo | 8 +- legacy/elementary/src/lib/elm_notify.eo | 2 +- legacy/elementary/src/lib/elm_panel.eo | 4 +- legacy/elementary/src/lib/elm_panes.eo | 4 +- legacy/elementary/src/lib/elm_photo.eo | 8 +- legacy/elementary/src/lib/elm_photocam.eo | 4 +- legacy/elementary/src/lib/elm_plug.eo | 4 +- legacy/elementary/src/lib/elm_prefs.eo | 26 +++--- legacy/elementary/src/lib/elm_progressbar.eo | 8 +- legacy/elementary/src/lib/elm_scroller.eo | 2 +- legacy/elementary/src/lib/elm_separator.eo | 2 +- legacy/elementary/src/lib/elm_slider.eo | 8 +- legacy/elementary/src/lib/elm_slideshow.eo | 2 +- legacy/elementary/src/lib/elm_spinner.eo | 4 +- legacy/elementary/src/lib/elm_systray.eo | 2 +- legacy/elementary/src/lib/elm_table.eo | 4 +- legacy/elementary/src/lib/elm_thumb.eo | 4 +- legacy/elementary/src/lib/elm_toolbar.eo | 4 +- legacy/elementary/src/lib/elm_video.eo | 10 +- legacy/elementary/src/lib/elm_web.eo | 48 +++++----- legacy/elementary/src/lib/elm_widget.eo | 92 +++++++++---------- legacy/elementary/src/lib/elm_win.eo | 58 ++++++------ 67 files changed, 356 insertions(+), 356 deletions(-) diff --git a/legacy/elementary/src/lib/elc_ctxpopup.eo b/legacy/elementary/src/lib/elc_ctxpopup.eo index 30ef26cbe7..b9ffdbc673 100644 --- a/legacy/elementary/src/lib/elc_ctxpopup.eo +++ b/legacy/elementary/src/lib/elc_ctxpopup.eo @@ -20,7 +20,7 @@ class Elm_Ctxpopup (Elm_Layout) @ingroup Ctxpopup */ } values { - Eina_Bool horizontal; /*@ @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical */ + bool horizontal; /*@ @c EINA_TRUE for horizontal mode, @c EINA_FALSE for vertical */ } } auto_hide_disabled { @@ -53,7 +53,7 @@ class Elm_Ctxpopup (Elm_Layout) @ingroup Ctxpopup */ } values { - Eina_Bool disabled; /*@ auto hide enable/disable. */ + bool disabled; /*@ auto hide enable/disable. */ } } hover_parent { diff --git a/legacy/elementary/src/lib/elc_fileselector.eo b/legacy/elementary/src/lib/elc_fileselector.eo index e69348522f..255da19c34 100644 --- a/legacy/elementary/src/lib/elc_fileselector.eo +++ b/legacy/elementary/src/lib/elc_fileselector.eo @@ -29,7 +29,7 @@ class Elm_Fileselector (Elm_Layout, Elm_Interface_Fileselector) @ingroup Fileselector */ } values { - Eina_Bool visible; /*@ @c EINA_TRUE to show buttons, @c EINA_FALSE to hide. */ + bool visible; /*@ @c EINA_TRUE to show buttons, @c EINA_FALSE to hide. */ } } } diff --git a/legacy/elementary/src/lib/elc_fileselector_button.eo b/legacy/elementary/src/lib/elc_fileselector_button.eo index 1c88efca6e..8a738e725f 100644 --- a/legacy/elementary/src/lib/elc_fileselector_button.eo +++ b/legacy/elementary/src/lib/elc_fileselector_button.eo @@ -29,7 +29,7 @@ class Elm_Fileselector_Button (Elm_Button, Elm_Interface_Fileselector) @ingroup File_Selector_Button */ } values { - Eina_Bool value; /*@ @c EINA_TRUE to make it use an inner window, @c + bool value; /*@ @c EINA_TRUE to make it use an inner window, @c EINA_FALSE to make it use a dedicated window */ } } diff --git a/legacy/elementary/src/lib/elc_fileselector_entry.eo b/legacy/elementary/src/lib/elc_fileselector_entry.eo index 6966ddf609..7582212d7d 100644 --- a/legacy/elementary/src/lib/elc_fileselector_entry.eo +++ b/legacy/elementary/src/lib/elc_fileselector_entry.eo @@ -29,7 +29,7 @@ class Elm_Fileselector_Entry (Elm_Layout, Elm_Interface_Fileselector) @ingroup File_Selector_Entry */ } values { - Eina_Bool value; /*@ @c EINA_TRUE to make it use an inner window, @c + bool value; /*@ @c EINA_TRUE to make it use an inner window, @c EINA_FALSE to make it use a dedicated window */ } } diff --git a/legacy/elementary/src/lib/elc_hoversel.eo b/legacy/elementary/src/lib/elc_hoversel.eo index 26a2f42527..385356ec3d 100644 --- a/legacy/elementary/src/lib/elc_hoversel.eo +++ b/legacy/elementary/src/lib/elc_hoversel.eo @@ -23,7 +23,7 @@ class Elm_Hoversel (Elm_Button, Evas.Selectable_Interface) @ingroup Hoversel */ } values { - Eina_Bool horizontal; /*@ If true, the hover will expand horizontally to the + bool horizontal; /*@ If true, the hover will expand horizontally to the right. */ } } @@ -63,7 +63,7 @@ class Elm_Hoversel (Elm_Button, Evas.Selectable_Interface) @c EINA_FALSE if it is not expanded. @ingroup Hoversel */ - return Eina_Bool; + return bool; } } items { diff --git a/legacy/elementary/src/lib/elc_multibuttonentry.eo b/legacy/elementary/src/lib/elc_multibuttonentry.eo index fddd30ecca..73d59e0031 100644 --- a/legacy/elementary/src/lib/elc_multibuttonentry.eo +++ b/legacy/elementary/src/lib/elc_multibuttonentry.eo @@ -22,7 +22,7 @@ class Elm_Multibuttonentry (Elm_Layout) @since 1.7 */ } values { - Eina_Bool editable; /*@ If @c EINA_TRUE, user can add/delete item in multibuttonentry, if not, the multibuttonentry is non-editable. */ + bool editable; /*@ If @c EINA_TRUE, user can add/delete item in multibuttonentry, if not, the multibuttonentry is non-editable. */ } } expanded { @@ -45,7 +45,7 @@ class Elm_Multibuttonentry (Elm_Layout) @ingroup Multibuttonentry */ } values { - Eina_Bool expanded; /*@ the value of expanded state. + bool expanded; /*@ the value of expanded state. Set this to @c EINA_TRUE for expanded state. Set this to EINA_FALSE for single line state. */ } diff --git a/legacy/elementary/src/lib/elc_naviframe.eo b/legacy/elementary/src/lib/elc_naviframe.eo index d3c6fdb00e..fe3daee546 100644 --- a/legacy/elementary/src/lib/elc_naviframe.eo +++ b/legacy/elementary/src/lib/elc_naviframe.eo @@ -30,7 +30,7 @@ class Elm_Naviframe (Elm_Layout) @ingroup Naviframe */ } values { - Eina_Bool enabled; /*@ Events are received when enabled is @c EINA_TRUE, and + bool enabled; /*@ Events are received when enabled is @c EINA_TRUE, and ignored otherwise. */ } } @@ -54,7 +54,7 @@ class Elm_Naviframe (Elm_Layout) @ingroup Naviframe */ } values { - Eina_Bool preserve; /*@ Enable the preserve mode if @c EINA_TRUE, disable otherwise */ + bool preserve; /*@ Enable the preserve mode if @c EINA_TRUE, disable otherwise */ } } prev_btn_auto_pushed { @@ -79,7 +79,7 @@ class Elm_Naviframe (Elm_Layout) @ingroup Naviframe */ } values { - Eina_Bool auto_pushed; /*@ If @c EINA_TRUE, the previous button(back button) will + bool auto_pushed; /*@ If @c EINA_TRUE, the previous button(back button) will be created internally when you pass the @c NULL to the prev_btn parameter in elm_naviframe_item_push */ } diff --git a/legacy/elementary/src/lib/elc_popup.eo b/legacy/elementary/src/lib/elc_popup.eo index a147f80c63..00618eb9ba 100644 --- a/legacy/elementary/src/lib/elc_popup.eo +++ b/legacy/elementary/src/lib/elc_popup.eo @@ -49,7 +49,7 @@ class Elm_Popup (Elm_Layout) @note By default the Blocked event area is present */ } values { - Eina_Bool allow; /*@ @c EINA_TRUE Events are passed to lower objects, else not */ + bool allow; /*@ @c EINA_TRUE Events are passed to lower objects, else not */ } } content_text_wrap_type { diff --git a/legacy/elementary/src/lib/elm_app_client_view.eo b/legacy/elementary/src/lib/elm_app_client_view.eo index 9766143eef..c676d5deec 100644 --- a/legacy/elementary/src/lib/elm_app_client_view.eo +++ b/legacy/elementary/src/lib/elm_app_client_view.eo @@ -42,7 +42,7 @@ class Elm_App_Client_View (Eo.Base) values { uint w; /*@ icon width */ uint h; /*@ icon height */ - Eina_Bool has_alpha; /*@ if icon have alpha channel */ + bool has_alpha; /*@ if icon have alpha channel */ const(uchar)* pixels; /*@ uchar array, with all bytes of icon */ } } diff --git a/legacy/elementary/src/lib/elm_app_server.eo b/legacy/elementary/src/lib/elm_app_server.eo index fd9f1f3e11..945fd76fca 100644 --- a/legacy/elementary/src/lib/elm_app_server.eo +++ b/legacy/elementary/src/lib/elm_app_server.eo @@ -53,7 +53,7 @@ class Elm_App_Server (Eo.Base) values { uint w; uint h; - Eina_Bool has_alpha; + bool has_alpha; const(uchar)* pixels; } } @@ -67,7 +67,7 @@ class Elm_App_Server (Eo.Base) params { @in const(char)* id; /*@ view identifier */ } - return Eina_Bool; /* @c EINA_TRUE if id is valid or @c EINA_FALSE if not */ + return bool; /* @c EINA_TRUE if id is valid or @c EINA_FALSE if not */ } view_add { /*@ Add a view to elm_app_server. This should only be used if the application open a view that was not requested by create_view_cb. */ diff --git a/legacy/elementary/src/lib/elm_app_server_view.eo b/legacy/elementary/src/lib/elm_app_server_view.eo index 1877b8f876..83df539188 100644 --- a/legacy/elementary/src/lib/elm_app_server_view.eo +++ b/legacy/elementary/src/lib/elm_app_server_view.eo @@ -85,7 +85,7 @@ class Elm_App_Server_View (Eo.Base) values { uint w; uint h; - Eina_Bool has_alpha; + bool has_alpha; const(uchar)* pixels; } } diff --git a/legacy/elementary/src/lib/elm_bg.eo b/legacy/elementary/src/lib/elm_bg.eo index 825ad96486..cb9cf3ec05 100644 --- a/legacy/elementary/src/lib/elm_bg.eo +++ b/legacy/elementary/src/lib/elm_bg.eo @@ -94,7 +94,7 @@ class Elm_Bg (Elm_Layout) that method on this object. @ingroup Bg */ - return Eina_Bool; + return bool; } get { /*@ diff --git a/legacy/elementary/src/lib/elm_box.eo b/legacy/elementary/src/lib/elm_box.eo index 5b7301aa34..b0e37a4418 100644 --- a/legacy/elementary/src/lib/elm_box.eo +++ b/legacy/elementary/src/lib/elm_box.eo @@ -23,7 +23,7 @@ class Elm_Box (Elm_Widget) @ingroup Box */ } values { - Eina_Bool homogeneous; /*@ The homogeneous flag */ + bool homogeneous; /*@ The homogeneous flag */ } } align { @@ -71,7 +71,7 @@ class Elm_Box (Elm_Widget) @return @c EINA_TRUE if the box is set to horizontal mode, @c EINA_FALSE otherwise */ } values { - Eina_Bool horizontal; /*@ The horizontal flag (@c EINA_TRUE = horizontal, + bool horizontal; /*@ The horizontal flag (@c EINA_TRUE = horizontal, @c EINA_FALSE = vertical) */ } } diff --git a/legacy/elementary/src/lib/elm_button.eo b/legacy/elementary/src/lib/elm_button.eo index 74f3e0c4ea..4e0d567fa3 100644 --- a/legacy/elementary/src/lib/elm_button.eo +++ b/legacy/elementary/src/lib/elm_button.eo @@ -83,7 +83,7 @@ class Elm_Button (Elm_Layout, Evas.Clickable_Interface, @ingroup Button */ } values { - Eina_Bool on; /*@ A bool to turn on/off the event */ + bool on; /*@ A bool to turn on/off the event */ } } admits_autorepeat { @@ -92,7 +92,7 @@ class Elm_Button (Elm_Layout, Evas.Clickable_Interface, legacy null; } values { - Eina_Bool ret; + bool ret; } } } diff --git a/legacy/elementary/src/lib/elm_calendar.eo b/legacy/elementary/src/lib/elm_calendar.eo index df707a7f80..06124848e0 100644 --- a/legacy/elementary/src/lib/elm_calendar.eo +++ b/legacy/elementary/src/lib/elm_calendar.eo @@ -287,7 +287,7 @@ class Elm_Calendar (Elm_Layout) @ingroup Calendar */ const; - return Eina_Bool; + return bool; params { @inout struct tm selected_time; /*@ A @b tm struct to point to selected date */ } @@ -387,7 +387,7 @@ class Elm_Calendar (Elm_Layout) @since 1.8 */ const; - return Eina_Bool; + return bool; params { @inout struct tm displayed_time; /*@ A @b tm struct to point to displayed date */ } diff --git a/legacy/elementary/src/lib/elm_check.eo b/legacy/elementary/src/lib/elm_check.eo index 38ad73c4ae..17d49ee8c1 100644 --- a/legacy/elementary/src/lib/elm_check.eo +++ b/legacy/elementary/src/lib/elm_check.eo @@ -22,7 +22,7 @@ class Elm_Check (Elm_Layout, Elm_Interface_Atspi_Widget_Action) @ingroup Check */ } values { - Eina_Bool state; /*@ The state to use (1 == on, 0 == off) */ + bool state; /*@ The state to use (1 == on, 0 == off) */ } } state_pointer { @@ -40,7 +40,7 @@ class Elm_Check (Elm_Layout, Elm_Interface_Atspi_Widget_Action) @ingroup Check */ } values { - Eina_Bool *statep; /*@ Pointer to the boolean to modify */ + bool *statep; /*@ Pointer to the boolean to modify */ } } } diff --git a/legacy/elementary/src/lib/elm_clock.eo b/legacy/elementary/src/lib/elm_clock.eo index 97bdf8b1c9..25d991d335 100644 --- a/legacy/elementary/src/lib/elm_clock.eo +++ b/legacy/elementary/src/lib/elm_clock.eo @@ -33,7 +33,7 @@ class Elm_Clock (Elm_Layout) @ingroup Clock */ } values { - Eina_Bool am_pm; /*@ @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE + bool am_pm; /*@ @c EINA_TRUE to put it in am/pm mode, @c EINA_FALSE to military mode */ } } @@ -104,7 +104,7 @@ class Elm_Clock (Elm_Layout) @ingroup Clock */ } values { - Eina_Bool seconds; /*@ @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise */ + bool seconds; /*@ @c EINA_TRUE to show seconds, @c EINA_FALSE otherwise */ } } edit { @@ -141,7 +141,7 @@ class Elm_Clock (Elm_Layout) @ingroup Clock */ } values { - Eina_Bool edit; /*@ @c EINA_TRUE to put it in edition, @c EINA_FALSE to + bool edit; /*@ @c EINA_TRUE to put it in edition, @c EINA_FALSE to put it back to "displaying only" mode */ } } @@ -171,7 +171,7 @@ class Elm_Clock (Elm_Layout) @since 1.9 */ } values { - Eina_Bool paused; /*@ @c EINA_TRUE to pause clock, @c EINA_FALSE otherwise */ + bool paused; /*@ @c EINA_TRUE to pause clock, @c EINA_FALSE otherwise */ } } time { diff --git a/legacy/elementary/src/lib/elm_container.eo b/legacy/elementary/src/lib/elm_container.eo index b6983eb44e..ccf8f38cd7 100644 --- a/legacy/elementary/src/lib/elm_container.eo +++ b/legacy/elementary/src/lib/elm_container.eo @@ -20,7 +20,7 @@ class Elm_Container (Elm_Widget) @in const(char)* name; @in Evas_Object *content; } - return Eina_Bool; + return bool; } content_get { /*@ No description supplied by the EAPI. */ diff --git a/legacy/elementary/src/lib/elm_datetime.eo b/legacy/elementary/src/lib/elm_datetime.eo index 52148c5d31..4f44c2fca4 100644 --- a/legacy/elementary/src/lib/elm_datetime.eo +++ b/legacy/elementary/src/lib/elm_datetime.eo @@ -148,7 +148,7 @@ class Elm_Datetime (Elm_Layout) @see elm_datetime_value_min_get() @ingroup Datetime */ - return Eina_Bool; + return bool; params { @in const(struct tm)* mintime; /*@ Time structure containing the minimum time value. */ } @@ -174,7 +174,7 @@ class Elm_Datetime (Elm_Layout) @ingroup Datepicker */ const; - return Eina_Bool; + return bool; params { @inout struct tm mintime; /*@ Time structure. */ } @@ -200,7 +200,7 @@ class Elm_Datetime (Elm_Layout) @see elm_datetime_value_set() @ingroup Datetime */ - return Eina_Bool; + return bool; params { @in const(struct tm)* newtime; /*@ Time structure filled with values to be set. */ } @@ -226,7 +226,7 @@ class Elm_Datetime (Elm_Layout) @ingroup Datetime */ const; - return Eina_Bool; + return bool; params { @inout struct tm currtime; /*@ Time structure. */ } @@ -248,7 +248,7 @@ class Elm_Datetime (Elm_Layout) params { @in Elm_Datetime_Field_Type fieldtype; /*@ Type of the field. ELM_DATETIME_YEAR etc. */ - @in Eina_Bool visible; /*@ @c EINA_TRUE field can be visible, @c EINA_FALSE otherwise. */ + @in bool visible; /*@ @c EINA_TRUE field can be visible, @c EINA_FALSE otherwise. */ } } field_visible_get { @@ -261,7 +261,7 @@ class Elm_Datetime (Elm_Layout) @ingroup Datetime */ const; - return Eina_Bool; + return bool; params { @in Elm_Datetime_Field_Type fieldtype; /*@ Type of the field. ELM_DATETIME_YEAR etc */ } @@ -286,7 +286,7 @@ class Elm_Datetime (Elm_Layout) @see elm_datetime_value_max_get() @ingroup Datetime */ - return Eina_Bool; + return bool; params { @in const(struct tm)* maxtime; /*@ Time structure containing the maximum time value. */ } @@ -312,7 +312,7 @@ class Elm_Datetime (Elm_Layout) @ingroup Datetime */ const; - return Eina_Bool; + return bool; params { @inout struct tm maxtime; /*@ Time structure containing the maximum time value. */ } diff --git a/legacy/elementary/src/lib/elm_dayselector.eo b/legacy/elementary/src/lib/elm_dayselector.eo index 0e1a959691..ae16344aa7 100644 --- a/legacy/elementary/src/lib/elm_dayselector.eo +++ b/legacy/elementary/src/lib/elm_dayselector.eo @@ -140,7 +140,7 @@ class Elm_Dayselector (Elm_Layout) params { @in Elm_Dayselector_Day day; /*@ Dayselector_Day that the user want to set state. */ - @in Eina_Bool selected; /*@ state of the day. @c EINA_TRUE is selected. */ + @in bool selected; /*@ state of the day. @c EINA_TRUE is selected. */ } } day_selected_get { @@ -155,7 +155,7 @@ class Elm_Dayselector (Elm_Layout) @ingroup Dayselector */ const; - return Eina_Bool; + return bool; params { @in Elm_Dayselector_Day day; /*@ Dayselector_Day that the user want to know state. */ } diff --git a/legacy/elementary/src/lib/elm_diskselector.eo b/legacy/elementary/src/lib/elm_diskselector.eo index 968d4b8b22..11655603ec 100644 --- a/legacy/elementary/src/lib/elm_diskselector.eo +++ b/legacy/elementary/src/lib/elm_diskselector.eo @@ -66,7 +66,7 @@ class Elm_Diskselector (Elm_Widget, Elm_Interface_Scrollable) @ingroup Diskselector */ } values { - Eina_Bool enabled; /*@ @c EINA_TRUE to enable round mode or @c EINA_FALSE to + bool enabled; /*@ @c EINA_TRUE to enable round mode or @c EINA_FALSE to disable it. */ } } diff --git a/legacy/elementary/src/lib/elm_entry.eo b/legacy/elementary/src/lib/elm_entry.eo index 40c30fd12a..08b75e3e72 100644 --- a/legacy/elementary/src/lib/elm_entry.eo +++ b/legacy/elementary/src/lib/elm_entry.eo @@ -24,7 +24,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool scroll; /*@ EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise */ + bool scroll; /*@ EINA_TRUE if it is to be scrollable, EINA_FALSE otherwise */ } } input_panel_show_on_demand { @@ -45,7 +45,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool ondemand; /*@ If true, the input panel will be shown in case of only Mouse up event. + bool ondemand; /*@ If true, the input panel will be shown in case of only Mouse up event. (Focus event will be ignored.) @since 1.9 */ } @@ -67,7 +67,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool disabled; /*@ If true, the menu is disabled */ + bool disabled; /*@ If true, the menu is disabled */ } } cnp_mode { @@ -133,7 +133,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, legacy null; } values { - Eina_Bool disabled; /*@ If true, the selection handlers are disabled. */ + bool disabled; /*@ If true, the selection handlers are disabled. */ } } input_panel_layout_variation { @@ -206,7 +206,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool editable; /*@ If EINA_TRUE, user input will be inserted in the entry, + bool editable; /*@ If EINA_TRUE, user input will be inserted in the entry, if not, the entry is read-only and no user input is allowed. */ } } @@ -267,7 +267,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool single_line; /*@ If true, the text in the entry + bool single_line; /*@ If true, the text in the entry will be on a single line. */ } } @@ -293,7 +293,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool password; /*@ If true, password mode is enabled. */ + bool password; /*@ If true, password mode is enabled. */ } } file { @@ -310,7 +310,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @return @c EINA_TRUE on success, @c EINA_FALSE otherwise @ingroup Entry */ - return Eina_Bool; + return bool; } get { /*@ @@ -342,7 +342,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool disabled; /*@ The state to put in in: @c EINA_TRUE for + bool disabled; /*@ The state to put in in: @c EINA_TRUE for disabled, @c EINA_FALSE for enabled */ } } @@ -366,7 +366,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool auto_save; /*@ Autosave the loaded file or not */ + bool auto_save; /*@ Autosave the loaded file or not */ } } anchor_hover_parent { @@ -411,7 +411,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool prediction; /*@ Whether the entry should allow to use the text prediction. */ + bool prediction; /*@ Whether the entry should allow to use the text prediction. */ } } input_panel_layout { @@ -474,7 +474,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool enabled; /*@ If true, the input panel is appeared when entry is clicked or has a focus */ + bool enabled; /*@ If true, the input panel is appeared when entry is clicked or has a focus */ } } line_wrap { @@ -537,7 +537,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool setting; /*@ EINA_TRUE if the object should be displayed, + bool setting; /*@ EINA_TRUE if the object should be displayed, EINA_FALSE if not. */ } } @@ -574,7 +574,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool enabled; /*@ If @p enabled is EINA_TRUE, the return key is automatically disabled when the entry has no text. */ + bool enabled; /*@ If @p enabled is EINA_TRUE, the return key is automatically disabled when the entry has no text. */ } } end_visible { @@ -586,7 +586,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ } values { - Eina_Bool setting; /*@ EINA_TRUE if the object should be displayed, + bool setting; /*@ EINA_TRUE if the object should be displayed, EINA_FALSE if not. */ } } @@ -658,7 +658,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @return EINA_TRUE upon success, EINA_FALSE upon failure @ingroup Entry */ - return Eina_Bool; + return bool; } values { Evas_Coord x; /*@ returned geometry */ @@ -700,7 +700,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @see elm_entry_cursor_is_visible_format_get() @ingroup Entry */ - return Eina_Bool; + return bool; } } cursor_content { @@ -749,7 +749,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @see elm_entry_cursor_is_format_get() @ingroup Entry */ - return Eina_Bool; + return bool; } } } @@ -762,7 +762,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ - return Eina_Bool; + return bool; } text_style_user_pop { /*@ @@ -846,7 +846,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ - return Eina_Bool; + return bool; } file_save { /*@ @@ -923,7 +923,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ - return Eina_Bool; + return bool; } entry_insert { /*@ @@ -991,7 +991,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ - return Eina_Bool; + return bool; } select_none { /*@ @@ -1045,7 +1045,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ const; - return Eina_Bool; + return bool; } markup_filter_remove { /*@ diff --git a/legacy/elementary/src/lib/elm_flip.eo b/legacy/elementary/src/lib/elm_flip.eo index 15d929c8d7..f43c20cf8d 100644 --- a/legacy/elementary/src/lib/elm_flip.eo +++ b/legacy/elementary/src/lib/elm_flip.eo @@ -49,7 +49,7 @@ class Elm_Flip (Elm_Container) showing. @ingroup Flip */ - return Eina_Bool; + return bool; } } } @@ -114,7 +114,7 @@ class Elm_Flip (Elm_Container) params { @in Elm_Flip_Direction dir; /*@ The direction to change */ - @in Eina_Bool enabled; /*@ If that direction is enabled or not */ + @in bool enabled; /*@ If that direction is enabled or not */ } } interaction_direction_enabled_get { @@ -129,7 +129,7 @@ class Elm_Flip (Elm_Container) @ingroup Flip */ - return Eina_Bool; + return bool; params { @in Elm_Flip_Direction dir; /*@ The direction to check */ } @@ -235,7 +235,7 @@ class Elm_Flip (Elm_Container) @ingroup Flip */ params { - @in Eina_Bool front; /*@ if @c EINA_TRUE, makes front visible, otherwise makes back. */ + @in bool front; /*@ if @c EINA_TRUE, makes front visible, otherwise makes back. */ @in Elm_Flip_Mode mode; /*@ The mode type */ } } diff --git a/legacy/elementary/src/lib/elm_frame.eo b/legacy/elementary/src/lib/elm_frame.eo index ac8fc923b4..a2e33eb0e7 100644 --- a/legacy/elementary/src/lib/elm_frame.eo +++ b/legacy/elementary/src/lib/elm_frame.eo @@ -20,7 +20,7 @@ class Elm_Frame (Elm_Layout, Evas.Clickable_Interface) @ingroup Frame */ } values { - Eina_Bool collapse; /*@ true to collapse, false to expand */ + bool collapse; /*@ true to collapse, false to expand */ } } autocollapse { @@ -45,7 +45,7 @@ class Elm_Frame (Elm_Layout, Evas.Clickable_Interface) @ingroup Frame */ } values { - Eina_Bool autocollapse; /*@ Whether to enable autocollapse */ + bool autocollapse; /*@ Whether to enable autocollapse */ } } } @@ -58,7 +58,7 @@ class Elm_Frame (Elm_Layout, Evas.Clickable_Interface) @ingroup Frame */ params { - @in Eina_Bool collapse; /*@ true to collapse, false to expand */ + @in bool collapse; /*@ true to collapse, false to expand */ } } } diff --git a/legacy/elementary/src/lib/elm_gengrid.eo b/legacy/elementary/src/lib/elm_gengrid.eo index 73fad5d9cf..b5c7dec5e7 100644 --- a/legacy/elementary/src/lib/elm_gengrid.eo +++ b/legacy/elementary/src/lib/elm_gengrid.eo @@ -66,7 +66,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Gengrid */ } values { - Eina_Bool fill; /*@ Filled if True */ + bool fill; /*@ Filled if True */ } } page_relative { @@ -112,7 +112,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Gengrid */ } values { - Eina_Bool multi; /*@ @c EINA_TRUE, to enable multi-selection, + bool multi; /*@ @c EINA_TRUE, to enable multi-selection, @c EINA_FALSE to disable it. */ } } @@ -214,7 +214,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Gengrid */ } values { - Eina_Bool reorder_mode; /*@ Use @c EINA_TRUE to turn reordering on, + bool reorder_mode; /*@ Use @c EINA_TRUE to turn reordering on, @c EINA_FALSE to turn it off */ } } @@ -226,7 +226,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac /*@ Get whether the gengrid items' should be highlighted when item selected. */ } values { - Eina_Bool highlight; + bool highlight; } } item_size { @@ -326,7 +326,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Gengrid */ } values { - Eina_Bool horizontal; /*@ @c EINA_TRUE to make the gengrid expand horizontally, + bool horizontal; /*@ @c EINA_TRUE to make the gengrid expand horizontally, @c EINA_FALSE to expand vertically. */ } } @@ -456,7 +456,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Gengrid */ } values { - Eina_Bool disabled; /*@ Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE + bool disabled; /*@ Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE to enable it. */ } } diff --git a/legacy/elementary/src/lib/elm_genlist.eo b/legacy/elementary/src/lib/elm_genlist.eo index e42aa5dd07..205f6984ba 100644 --- a/legacy/elementary/src/lib/elm_genlist.eo +++ b/legacy/elementary/src/lib/elm_genlist.eo @@ -34,7 +34,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool homogeneous; /*@ Assume the items within the genlist are of the + bool homogeneous; /*@ Assume the items within the genlist are of the same height and width (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE. */ } @@ -95,7 +95,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool enabled; /*@ The tree effect status + bool enabled; /*@ The tree effect status (EINA_TRUE = enabled, EINA_FALSE = disabled) */ } } @@ -156,7 +156,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool multi; /*@ Multi-select enable/disable. Default is disabled. */ + bool multi; /*@ Multi-select enable/disable. Default is disabled. */ } } reorder_mode { @@ -180,7 +180,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool reorder_mode; /*@ The reorder mode + bool reorder_mode; /*@ The reorder mode (EINA_TRUE = on, EINA_FALSE = off) */ } } @@ -203,7 +203,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool decorated; /*@ The decorate mode status + bool decorated; /*@ The decorate mode status (EINA_TRUE = decorate mode, EINA_FALSE = normal mode */ } } @@ -294,7 +294,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool enabled; /*@ The tree effect status + bool enabled; /*@ The tree effect status (EINA_TRUE = enabled, EINA_FALSE = disabled */ } } @@ -324,7 +324,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac @ingroup Genlist */ } values { - Eina_Bool highlight; /*@ @c EINA_TRUE to enable highlighting or @c EINA_FALSE to + bool highlight; /*@ @c EINA_TRUE to enable highlighting or @c EINA_FALSE to disable it. */ } } diff --git a/legacy/elementary/src/lib/elm_gesture_layer.eo b/legacy/elementary/src/lib/elm_gesture_layer.eo index 8435448d3d..2ba1e3b638 100644 --- a/legacy/elementary/src/lib/elm_gesture_layer.eo +++ b/legacy/elementary/src/lib/elm_gesture_layer.eo @@ -58,7 +58,7 @@ class Elm_Gesture_Layer (Elm_Widget) @see elm_gesture_layer_hold_events_set() */ } values { - Eina_Bool hold_events; /*@ hold events or not. */ + bool hold_events; /*@ hold events or not. */ } } rotate_step { @@ -110,7 +110,7 @@ class Elm_Gesture_Layer (Elm_Widget) @return @c EINA_TRUE, on success, @c EINA_FALSE otherwise. */ - return Eina_Bool; + return bool; params { @in Evas_Object *target; /*@ Object to attach to @a obj (target) */ } diff --git a/legacy/elementary/src/lib/elm_glview.eo b/legacy/elementary/src/lib/elm_glview.eo index c17bd5fd4b..eb0d4ac9fa 100644 --- a/legacy/elementary/src/lib/elm_glview.eo +++ b/legacy/elementary/src/lib/elm_glview.eo @@ -37,7 +37,7 @@ class Elm_Glview (Elm_Widget) object and not the underlying GL Surface. @ingroup GLView */ - return Eina_Bool; + return bool; } values { Elm_GLView_Resize_Policy policy; /*@ The scaling policy. */ @@ -111,7 +111,7 @@ class Elm_Glview (Elm_Widget) whether it is visible or needs redrawing. @ingroup GLView */ - return Eina_Bool; + return bool; } values { Elm_GLView_Render_Policy policy; /*@ The render policy. */ @@ -130,7 +130,7 @@ class Elm_Glview (Elm_Widget) window. @ingroup GLView */ - return Eina_Bool; + return bool; } values { Elm_GLView_Mode mode; /*@ The mode Options OR'ed enabling Alpha, Depth, Stencil, Direct. */ diff --git a/legacy/elementary/src/lib/elm_grid.eo b/legacy/elementary/src/lib/elm_grid.eo index fcb1a220b4..639a5de728 100644 --- a/legacy/elementary/src/lib/elm_grid.eo +++ b/legacy/elementary/src/lib/elm_grid.eo @@ -44,7 +44,7 @@ class Elm_Grid (Elm_Widget) @ingroup Grid */ params { - @in Eina_Bool clear; /*@ If true, it will delete just removed children */ + @in bool clear; /*@ If true, it will delete just removed children */ } } unpack { diff --git a/legacy/elementary/src/lib/elm_icon.eo b/legacy/elementary/src/lib/elm_icon.eo index 2814174961..0654a66ee2 100644 --- a/legacy/elementary/src/lib/elm_icon.eo +++ b/legacy/elementary/src/lib/elm_icon.eo @@ -54,7 +54,7 @@ class Elm_Icon (Elm_Image) @see elm_image_file_set() @ingroup Icon */ - return Eina_Bool; + return bool; } get { /*@ diff --git a/legacy/elementary/src/lib/elm_image.eo b/legacy/elementary/src/lib/elm_image.eo index c7670a14e3..f0341c4fa1 100644 --- a/legacy/elementary/src/lib/elm_image.eo +++ b/legacy/elementary/src/lib/elm_image.eo @@ -24,7 +24,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool set; /*@ Turn on or off editability. Default is @c EINA_FALSE. */ + bool set; /*@ Turn on or off editability. Default is @c EINA_FALSE. */ } } smooth_scale { @@ -37,7 +37,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image legacy null; } values { - Eina_Bool smooth; + bool smooth; } } resize_down { @@ -50,7 +50,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image legacy null; } values { - Eina_Bool resize_down; + bool resize_down; } } load_size { @@ -106,7 +106,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @since 1.7 */ } values { - Eina_Bool play; /*@ @c EINA_TRUE to start the animation, @c EINA_FALSE + bool play; /*@ @c EINA_TRUE to start the animation, @c EINA_FALSE otherwise. Default is @c EINA_FALSE. */ } } @@ -120,7 +120,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image legacy null; } values { - Eina_Bool resize_up; + bool resize_up; } } smooth { @@ -151,7 +151,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool smooth; /*@ @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE + bool smooth; /*@ @c EINA_TRUE if smooth scaling should be used, @c EINA_FALSE otherwise. Default is @c EINA_TRUE. */ } } @@ -182,7 +182,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool no_scale; /*@ @c EINA_TRUE if the object is not scalable, @c EINA_FALSE + bool no_scale; /*@ @c EINA_TRUE if the object is not scalable, @c EINA_FALSE otherwise. Default is @c EINA_FALSE. */ } } @@ -217,7 +217,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @since 1.7 */ } values { - Eina_Bool anim; /*@ @c EINA_TRUE if the object is to animate itself, + bool anim; /*@ @c EINA_TRUE if the object is to animate itself, @c EINA_FALSE otherwise. Default is @c EINA_FALSE. */ } } @@ -253,7 +253,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image unwanted frames. @ingroup Image */ - return Eina_Bool; + return bool; legacy null; } get { @@ -281,7 +281,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image legacy null; } values { - Eina_Bool fill_inside; + bool fill_inside; } } aspect_fixed { @@ -309,7 +309,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool fixed; /*@ @c EINA_TRUE if the image should retain the aspect, + bool fixed; /*@ @c EINA_TRUE if the image should retain the aspect, @c EINA_FALSE otherwise. */ } } @@ -371,7 +371,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool fill_outside; /*@ @c EINA_TRUE if the object is filled outside, + bool fill_outside; /*@ @c EINA_TRUE if the object is filled outside, @c EINA_FALSE otherwise. Default is @c EINA_FALSE. */ } } @@ -397,9 +397,9 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool up; /*@ A bool to set if the object is resizable up. Default is + bool up; /*@ A bool to set if the object is resizable up. Default is @c EINA_TRUE. */ - Eina_Bool down; /*@ A bool to set if the object is resizable down. Default + bool down; /*@ A bool to set if the object is resizable down. Default is @c EINA_TRUE. */ } } @@ -411,7 +411,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image */ } values { - Eina_Bool disabled; /*@ If EINA_TRUE, preloading will be disabled */ + bool disabled; /*@ If EINA_TRUE, preloading will be disabled */ } } mmap { @@ -433,7 +433,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image unwanted frames. @ingroup Image */ - return Eina_Bool; + return bool; legacy null; } values { @@ -463,7 +463,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @since 1.7 @ingroup Image */ - return Eina_Bool; + return bool; } values { const(void)* img; /*@ The binary data that will be used as image source */ @@ -490,7 +490,7 @@ class Elm_Image (Elm_Widget, Evas.Clickable_Interface, Elm_Interface_Atspi_Image @ingroup Image @since 1.7 */ - return Eina_Bool; + return bool; } } object { diff --git a/legacy/elementary/src/lib/elm_index.eo b/legacy/elementary/src/lib/elm_index.eo index ce0aff187d..ed28f41376 100644 --- a/legacy/elementary/src/lib/elm_index.eo +++ b/legacy/elementary/src/lib/elm_index.eo @@ -22,7 +22,7 @@ class Elm_Index (Elm_Layout) @ingroup Index */ } values { - Eina_Bool disabled; /*@ @c EINA_TRUE to disable auto hiding, @c EINA_FALSE to enable */ + bool disabled; /*@ @c EINA_TRUE to disable auto hiding, @c EINA_FALSE to enable */ } } omit_enabled { @@ -49,7 +49,7 @@ class Elm_Index (Elm_Layout) @ingroup Index */ } values { - Eina_Bool enabled; /*@ @c EINA_TRUE to enable omit feature, @c EINA_FALSE to disable */ + bool enabled; /*@ @c EINA_TRUE to enable omit feature, @c EINA_FALSE to disable */ } } horizontal { @@ -79,7 +79,7 @@ class Elm_Index (Elm_Layout) @ingroup Index */ } values { - Eina_Bool horizontal; /*@ @c EINA_TRUE to enable horizontal or @c EINA_FALSE to + bool horizontal; /*@ @c EINA_TRUE to enable horizontal or @c EINA_FALSE to disable it, i.e., to enable vertical mode. it's an area one @ref Fingers "finger" wide on the bottom side of the index widget's container. */ } @@ -131,7 +131,7 @@ class Elm_Index (Elm_Layout) @ingroup Index */ } values { - Eina_Bool disabled; /*@ @c EINA_TRUE to disable it, @c EINA_FALSE to enable it */ + bool disabled; /*@ @c EINA_TRUE to disable it, @c EINA_FALSE to enable it */ } } item_level { diff --git a/legacy/elementary/src/lib/elm_interface_atspi_action.eo b/legacy/elementary/src/lib/elm_interface_atspi_action.eo index 51e45f8a0c..b1b43544ef 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_action.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_action.eo @@ -32,7 +32,7 @@ mixin Elm_Interface_Atspi_Action () } set { /*@ Sets action description for given id */ - return Eina_Bool; + return bool; } values { const(char)* description; @@ -56,7 +56,7 @@ mixin Elm_Interface_Atspi_Action () params { @in int id; } - return Eina_Bool; + return bool; } protected keybinding_get { /*@ Gets configured keybinding for specific action and widget. */ diff --git a/legacy/elementary/src/lib/elm_interface_atspi_component.eo b/legacy/elementary/src/lib/elm_interface_atspi_component.eo index 4d98213452..525463453b 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_component.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_component.eo @@ -7,7 +7,7 @@ mixin Elm_Interface_Atspi_Component () protected size { set { /*@ Sets size of accessible widget. */ - return Eina_Bool; + return bool; } get { /*@ Gets size of accessible widget. */ @@ -48,10 +48,10 @@ mixin Elm_Interface_Atspi_Component () } set { /*@ Sets geometry of accessible widget. */ - return Eina_Bool; + return bool; } keys { - Eina_Bool screen_coords; /*@ If true x and y values will be relative + bool screen_coords; /*@ If true x and y values will be relative to screen origin, otherwise relative to canvas */ } @@ -65,13 +65,13 @@ mixin Elm_Interface_Atspi_Component () protected position { set { /*@ Sets position of accessible widget. */ - return Eina_Bool; + return bool; } get { /*@ Gets position of accessible widget. */ } keys { - Eina_Bool screen_coords; /*@ If true x and y values will be relative + bool screen_coords; /*@ If true x and y values will be relative to screen origin, otherwise relative to canvas */ } @@ -84,25 +84,25 @@ mixin Elm_Interface_Atspi_Component () methods { protected contains { params { - Eina_Bool screen_coords; /*@ If true x and y values will be relative + bool screen_coords; /*@ If true x and y values will be relative to screen origin, otherwise relative to canvas */ @in int x; @in int y; } - return Eina_Bool; + return bool; } focus_grab { /*@ Focuses accessible widget. @return true if focus grab focus has successed, false otherwise. */ - return Eina_Bool; + return bool; } protected accessible_at_point_get { /*@ Gets top component object occupying space at given coordinates. */ params { - Eina_Bool screen_coords; /*@ If true x and y values will be relative + bool screen_coords; /*@ If true x and y values will be relative to screen origin, otherwise relative to canvas */ @in int x; diff --git a/legacy/elementary/src/lib/elm_interface_atspi_editable_text.eo b/legacy/elementary/src/lib/elm_interface_atspi_editable_text.eo index fcc47c93f1..e2628f5deb 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_editable_text.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_editable_text.eo @@ -6,7 +6,7 @@ interface Elm_Interface_Atspi_Editable_Text () properties { protected content { set { - return Eina_Bool; + return bool; } values { const(char)* string; @@ -19,34 +19,34 @@ interface Elm_Interface_Atspi_Editable_Text () @in const(char)* string; @in int position; } - return Eina_Bool; + return bool; } protected copy { params { @in int start; @in int end; } - return Eina_Bool; + return bool; } protected cut { params { @in int start; @in int end; } - return Eina_Bool; + return bool; } protected delete { params { @in int start; @in int end; } - return Eina_Bool; + return bool; } protected paste { params { @in int position; } - return Eina_Bool; + return bool; } } } diff --git a/legacy/elementary/src/lib/elm_interface_atspi_image.eo b/legacy/elementary/src/lib/elm_interface_atspi_image.eo index 8a6d4e97ac..16ab1678c3 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_image.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_image.eo @@ -9,7 +9,7 @@ mixin Elm_Interface_Atspi_Image () /*@ Gets an image extents. */ } keys { - Eina_Bool screen_coords; + bool screen_coords; } values { int x; diff --git a/legacy/elementary/src/lib/elm_interface_atspi_selection.eo b/legacy/elementary/src/lib/elm_interface_atspi_selection.eo index f1770db8d4..79785a557d 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_selection.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_selection.eo @@ -26,36 +26,36 @@ interface Elm_Interface_Atspi_Selection () params { @in int child_index; } - return Eina_Bool; + return bool; } protected selected_child_deselect { /* Removes selection for given child index */ params { @in int child_index; } - return Eina_Bool; + return bool; } protected is_child_selected { /* Determines if child specified by index is selected */ params { @in int child_index; } - return Eina_Bool; + return bool; } protected all_children_select { /* Adds selection for all children */ - return Eina_Bool; + return bool; } protected clear { /* Clears the current selection */ - return Eina_Bool; + return bool; } protected child_deselect { /* Removes selection for given child index */ params { @in int child_index; } - return Eina_Bool; + return bool; } } events { diff --git a/legacy/elementary/src/lib/elm_interface_atspi_text.eo b/legacy/elementary/src/lib/elm_interface_atspi_text.eo index 15634b8798..af8d8694d3 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_text.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_text.eo @@ -54,7 +54,7 @@ interface Elm_Interface_Atspi_Text () /*@ Gets offset position of caret (cursor) */ } set { - return Eina_Bool; /*@ EINA_TRUE if caret was successfully moved, + return bool; /*@ EINA_TRUE if caret was successfully moved, EINA_FASLE otherwise. */ } values { @@ -64,7 +64,7 @@ interface Elm_Interface_Atspi_Text () protected attribute { get { /*@ Indicate if a text attribute with a given name is set */ - return Eina_Bool; + return bool; } keys { const(char)* name @nonull; /*@ text attribute name */ @@ -98,11 +98,11 @@ interface Elm_Interface_Atspi_Text () } protected character_extents { get { - return Eina_Bool; + return bool; } keys { int offset; - Eina_Bool screen_coords; + bool screen_coords; } values { Eina_Rectangle rect; @@ -119,7 +119,7 @@ interface Elm_Interface_Atspi_Text () get { } keys { - Eina_Bool screen_coords; + bool screen_coords; int x; int y; } @@ -131,7 +131,7 @@ interface Elm_Interface_Atspi_Text () get { } keys { - Eina_Bool screen_coords; + bool screen_coords; Eina_Rectangle rect; Elm_Atspi_Text_Clip_Type xclip; Elm_Atspi_Text_Clip_Type yclip; @@ -142,10 +142,10 @@ interface Elm_Interface_Atspi_Text () } protected range_extents { get { - return Eina_Bool; + return bool; } keys { - Eina_Bool screen_coords; /*@ If true x and y values will be relative + bool screen_coords; /*@ If true x and y values will be relative to screen origin, otherwise relative to canvas */ int start_offset; @@ -166,7 +166,7 @@ interface Elm_Interface_Atspi_Text () get { } set { - return Eina_Bool; + return bool; } keys { int selection_number; @@ -183,13 +183,13 @@ interface Elm_Interface_Atspi_Text () @in int start_offset; @in int end_offset; } - return Eina_Bool; + return bool; } protected selection_remove { params { @in int selection_number; } - return Eina_Bool; + return bool; } } events { diff --git a/legacy/elementary/src/lib/elm_interface_atspi_value.eo b/legacy/elementary/src/lib/elm_interface_atspi_value.eo index c4d39b186d..96ae355fa8 100644 --- a/legacy/elementary/src/lib/elm_interface_atspi_value.eo +++ b/legacy/elementary/src/lib/elm_interface_atspi_value.eo @@ -9,7 +9,7 @@ interface Elm_Interface_Atspi_Value () /*@ Gets value displayed by a accessible widget. */ } set { - return Eina_Bool; /*@ EINA_TRUE if setting widgets value has + return bool; /*@ EINA_TRUE if setting widgets value has successed, EINA_FALSE otherwise. */ } values { diff --git a/legacy/elementary/src/lib/elm_interface_fileselector.eo b/legacy/elementary/src/lib/elm_interface_fileselector.eo index db7fd533a1..8fbae0f9f6 100644 --- a/legacy/elementary/src/lib/elm_interface_fileselector.eo +++ b/legacy/elementary/src/lib/elm_interface_fileselector.eo @@ -12,13 +12,13 @@ interface Elm_Interface_Fileselector () /*@ Get whether folder-only view is set for a given file selector */ } values { - Eina_Bool only; + bool only; } } selected { set { /*@ Set, programmatically, the currently selected file/directory in the given file selector widget */ - return Eina_Bool; + return bool; } get { /*@ Get the currently selected item's (full) path, in the given file the given file selector widget */ @@ -47,7 +47,7 @@ interface Elm_Interface_Fileselector () /*@ Get if hiden files/directories in the file selector are visible or not. */ } values { - Eina_Bool multi; + bool multi; } } sort_method { @@ -69,7 +69,7 @@ interface Elm_Interface_Fileselector () /*@ Gets if multi-selection in fileselector is enabled or disabled. */ } values { - Eina_Bool multi; + bool multi; } } expandable { @@ -80,7 +80,7 @@ interface Elm_Interface_Fileselector () /*@ Get whether tree view is enabled for the given file selector */ } values { - Eina_Bool expand; + bool expand; } } path { @@ -113,7 +113,7 @@ interface Elm_Interface_Fileselector () /*@ Get whether the given file selector is in "saving dialog" mode */ } values { - Eina_Bool is_save; + bool is_save; } } selected_paths { @@ -133,7 +133,7 @@ interface Elm_Interface_Fileselector () @in void *data; @in const(char)* filter_name; } - return Eina_Bool; + return bool; } filters_clear { /*@ Clear all filters registered */ @@ -144,7 +144,7 @@ interface Elm_Interface_Fileselector () @in const(char)* mime_types; @in const(char)* filter_name; } - return Eina_Bool; + return bool; } } } diff --git a/legacy/elementary/src/lib/elm_interface_scrollable.eo b/legacy/elementary/src/lib/elm_interface_scrollable.eo index 4768d1551e..16d3981460 100644 --- a/legacy/elementary/src/lib/elm_interface_scrollable.eo +++ b/legacy/elementary/src/lib/elm_interface_scrollable.eo @@ -24,8 +24,8 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool horiz; - Eina_Bool vert; + bool horiz; + bool vert; } } wheel_disabled { @@ -36,7 +36,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool disabled; + bool disabled; } } movement_block { @@ -58,7 +58,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool disabled; + bool disabled; } } policy { @@ -95,7 +95,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ It gets whether the scrollable object propagates the events to content object or not. */ } values { - Eina_Bool repeat_events; + bool repeat_events; } } page_size { @@ -118,7 +118,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool disabled; + bool disabled; } } page_scroll_limit { @@ -141,8 +141,8 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ Get wether page bouncing is enabled, for paged scrollers, on each axis. */ } values { - Eina_Bool horiz; - Eina_Bool vert; + bool horiz; + bool vert; } } paging { @@ -211,7 +211,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool freeze; + bool freeze; } } content_viewport_resize_cb { @@ -283,7 +283,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool hold; + bool hold; } } animate_start_cb { @@ -332,7 +332,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool mirrored; + bool mirrored; } } content_min_limit_cb { @@ -461,7 +461,7 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) params { @in Evas_Coord x; @in Evas_Coord y; - @in Eina_Bool sig; + @in bool sig; } } content_pos_get { @@ -506,8 +506,8 @@ mixin Elm_Interface_Scrollable(Evas.Scrollable_Interface, Evas.Object_Smart) content_min_limit { /*@ No description supplied by the EAPI. */ params { - @in Eina_Bool w; - @in Eina_Bool h; + @in bool w; + @in bool h; } } } diff --git a/legacy/elementary/src/lib/elm_label.eo b/legacy/elementary/src/lib/elm_label.eo index 63f85f93b0..92bb550184 100644 --- a/legacy/elementary/src/lib/elm_label.eo +++ b/legacy/elementary/src/lib/elm_label.eo @@ -171,7 +171,7 @@ class Elm_Label (Elm_Layout) @ingroup Label */ } values { - Eina_Bool ellipsis; /*@ To ellipsis text or not */ + bool ellipsis; /*@ To ellipsis text or not */ } } } diff --git a/legacy/elementary/src/lib/elm_layout.eo b/legacy/elementary/src/lib/elm_layout.eo index 1e2f5aa4cf..a1f7cb93e2 100644 --- a/legacy/elementary/src/lib/elm_layout.eo +++ b/legacy/elementary/src/lib/elm_layout.eo @@ -14,7 +14,7 @@ class Elm_Layout (Elm_Container) @since 1.7 @ingroup Layout */ - return Eina_Bool; + return bool; } get { /*@ @@ -31,7 +31,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ } values { - Eina_Bool can_access; /*@ makes all textblock(text) parts in the layout @p obj possible + bool can_access; /*@ makes all textblock(text) parts in the layout @p obj possible to have accessibility. @c EINA_TRUE means textblock(text) parts can be accessible */ } } @@ -43,7 +43,7 @@ class Elm_Layout (Elm_Container) @return (1 = success, 0 = error) @ingroup Layout */ - return Eina_Bool; + return bool; } values { const(char)* file; /*@ The path to file (edj) that will be used as layout */ @@ -61,7 +61,7 @@ class Elm_Layout (Elm_Container) elm_object_style_set() call. @ingroup Layout */ - return Eina_Bool; + return bool; } values { const(char)* klass; /*@ the class of the group */ @@ -134,10 +134,10 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ The box part name to remove child. */ - @in Eina_Bool clear; /*@ If EINA_TRUE, then all objects will be deleted as + @in bool clear; /*@ If EINA_TRUE, then all objects will be deleted as well, otherwise they will just be removed and will be dangling on the canvas. */ } @@ -156,10 +156,10 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part_name; /*@ a part from loaded edje group. */ - @in Eina_Bool engine_only; /*@ if cursors should be just provided by the engine (EINA_TRUE) + @in bool engine_only; /*@ if cursors should be just provided by the engine (EINA_TRUE) or should also search on widget's theme as well (EINA_FALSE) */ } } @@ -172,7 +172,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ const; - return Eina_Bool; + return bool; params { @in const(char)* part_name; /*@ a part from loaded edje group. */ } @@ -214,7 +214,7 @@ class Elm_Layout (Elm_Container) theme_enable { /*@ No description supplied by the EAPI. */ legacy null; - return Eina_Bool; + return bool; } sizing_eval { /*@ @@ -272,8 +272,8 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ params { - @in Eina_Bool width; /*@ Restrict minimum size to the current width */ - @in Eina_Bool height; /*@ Restrict minimum size ot the current height */ + @in bool width; /*@ Restrict minimum size to the current width */ + @in bool height; /*@ Restrict minimum size ot the current height */ } } part_cursor_style_set { @@ -285,7 +285,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part_name; /*@ a part from loaded edje group. */ @in const(char)* style; /*@ the theme style to use (default, transparent, ...) */ @@ -314,7 +314,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ The TEXT part where to set the text */ @in const(char)* text; /*@ The text to set */ @@ -363,7 +363,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part_name; /*@ a part from loaded edje group. */ @in const(char)* cursor; /*@ cursor name to use, see Elementary_Cursor.h */ @@ -401,7 +401,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ the box part to insert. */ @in Evas_Object *child; /*@ the child object to insert into box. */ @@ -426,7 +426,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ the box part to insert. */ @in Evas_Object *child; /*@ the child object to insert into box. */ @@ -436,7 +436,7 @@ class Elm_Layout (Elm_Container) sub_object_add_enable { /*@ No description supplied by the EAPI. */ legacy null; - return Eina_Bool; + return bool; } data_get { /*@ @@ -488,7 +488,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ the box part to which the object will be appended. */ @in Evas_Object *child; /*@ the child object to append to box. */ @@ -550,7 +550,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ the box part to prepend. */ @in Evas_Object *child; /*@ the child object to prepend to box. */ @@ -599,7 +599,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ the box part to pack child. */ @in Evas_Object *child; /*@ the child object to pack into table. */ @@ -618,7 +618,7 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part_name; /*@ a part from loaded edje group, that had a cursor set with elm_layout_part_cursor_set(). */ @@ -639,10 +639,10 @@ class Elm_Layout (Elm_Container) @ingroup Layout */ - return Eina_Bool; + return bool; params { @in const(char)* part; /*@ The table part name to remove child. */ - @in Eina_Bool clear; /*@ If EINA_TRUE, then all objects will be deleted as + @in bool clear; /*@ If EINA_TRUE, then all objects will be deleted as well, otherwise they will just be removed and will be dangling on the canvas. */ } diff --git a/legacy/elementary/src/lib/elm_list.eo b/legacy/elementary/src/lib/elm_list.eo index 8c591cb80b..2b51b528e6 100644 --- a/legacy/elementary/src/lib/elm_list.eo +++ b/legacy/elementary/src/lib/elm_list.eo @@ -31,7 +31,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable) @ingroup List */ } values { - Eina_Bool horizontal; /*@ @c EINA_TRUE to enable horizontal or @c EINA_FALSE to + bool horizontal; /*@ @c EINA_TRUE to enable horizontal or @c EINA_FALSE to disable it, i.e., to enable vertical mode. */ } } @@ -91,7 +91,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable) @ingroup List */ } values { - Eina_Bool enabled; /*@ The tree effect status + bool enabled; /*@ The tree effect status (EINA_TRUE = enabled, EINA_FALSE = disabled) */ } } @@ -123,7 +123,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable) @ingroup List */ } values { - Eina_Bool multi; /*@ @c EINA_TRUE to enable multi selection or @c EINA_FALSE to + bool multi; /*@ @c EINA_TRUE to enable multi selection or @c EINA_FALSE to disable it. */ } } diff --git a/legacy/elementary/src/lib/elm_map.eo b/legacy/elementary/src/lib/elm_map.eo index 0cf2e4f711..8cce2657cb 100644 --- a/legacy/elementary/src/lib/elm_map.eo +++ b/legacy/elementary/src/lib/elm_map.eo @@ -73,7 +73,7 @@ class Elm_Map (Elm_Widget, Elm_Interface_Scrollable) @ingroup Map */ } values { - Eina_Bool paused; /*@ Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE + bool paused; /*@ Use @c EINA_TRUE to pause the map @p obj or @c EINA_FALSE to unpause it. */ } } @@ -104,7 +104,7 @@ class Elm_Map (Elm_Widget, Elm_Interface_Scrollable) @ingroup Map */ } values { - Eina_Bool disabled; /*@ Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE + bool disabled; /*@ Use @c EINA_TRUE to disable mouse wheel or @c EINA_FALSE to enable it. */ } } diff --git a/legacy/elementary/src/lib/elm_mapbuf.eo b/legacy/elementary/src/lib/elm_mapbuf.eo index 676cefb323..39276d3696 100644 --- a/legacy/elementary/src/lib/elm_mapbuf.eo +++ b/legacy/elementary/src/lib/elm_mapbuf.eo @@ -31,7 +31,7 @@ class Elm_Mapbuf (Elm_Container) @ingroup Mapbuf */ } values { - Eina_Bool on; /*@ @c EINA_TRUE to enable auto mode or @c EINA_FALSE + bool on; /*@ @c EINA_TRUE to enable auto mode or @c EINA_FALSE to disable it. */ } } @@ -60,7 +60,7 @@ class Elm_Mapbuf (Elm_Container) @ingroup Mapbuf */ } values { - Eina_Bool smooth; /*@ @c EINA_TRUE to enable smooth map rendering or @c EINA_FALSE + bool smooth; /*@ @c EINA_TRUE to enable smooth map rendering or @c EINA_FALSE to disable it. */ } } @@ -90,7 +90,7 @@ class Elm_Mapbuf (Elm_Container) @ingroup Mapbuf */ } values { - Eina_Bool alpha; /*@ @c EINA_TRUE to enable alpha blending or @c EINA_FALSE + bool alpha; /*@ @c EINA_TRUE to enable alpha blending or @c EINA_FALSE to disable it. */ } } @@ -129,7 +129,7 @@ class Elm_Mapbuf (Elm_Container) @ingroup Mapbuf */ } values { - Eina_Bool enabled; /*@ @c EINA_TRUE to enable map or @c EINA_FALSE to disable it. */ + bool enabled; /*@ @c EINA_TRUE to enable map or @c EINA_FALSE to disable it. */ } } } diff --git a/legacy/elementary/src/lib/elm_notify.eo b/legacy/elementary/src/lib/elm_notify.eo index 566732ecb4..33f8d2f08e 100644 --- a/legacy/elementary/src/lib/elm_notify.eo +++ b/legacy/elementary/src/lib/elm_notify.eo @@ -49,7 +49,7 @@ class Elm_Notify (Elm_Container) @ingroup Notify */ } values { - Eina_Bool allow; /*@ EINA_TRUE If events are allowed, otherwise not */ + bool allow; /*@ EINA_TRUE If events are allowed, otherwise not */ } } timeout { diff --git a/legacy/elementary/src/lib/elm_panel.eo b/legacy/elementary/src/lib/elm_panel.eo index 0924ebebb9..25e98b7ac9 100644 --- a/legacy/elementary/src/lib/elm_panel.eo +++ b/legacy/elementary/src/lib/elm_panel.eo @@ -42,7 +42,7 @@ class Elm_Panel (Elm_Layout, Elm_Interface_Scrollable) @ingroup Panel */ } values { - Eina_Bool hidden; /*@ If true, the panel will run the animation to disappear. */ + bool hidden; /*@ If true, the panel will run the animation to disappear. */ } } scrollable { @@ -53,7 +53,7 @@ class Elm_Panel (Elm_Layout, Elm_Interface_Scrollable) @ingroup Panel */ } values { - Eina_Bool scrollable; + bool scrollable; } } scrollable_content_size { diff --git a/legacy/elementary/src/lib/elm_panes.eo b/legacy/elementary/src/lib/elm_panes.eo index ae70e2e635..4cff9738ea 100644 --- a/legacy/elementary/src/lib/elm_panes.eo +++ b/legacy/elementary/src/lib/elm_panes.eo @@ -67,7 +67,7 @@ class Elm_Panes (Elm_Layout) @ingroup Panes */ } values { - Eina_Bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to split panes + bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to split panes horizontally ("top" and "bottom" contents). @c EINA_FALSE to make it vertically ("left" and "right" contents) */ } @@ -98,7 +98,7 @@ class Elm_Panes (Elm_Layout) @ingroup Panes */ } values { - Eina_Bool fixed; /*@ Use @c EINA_TRUE to fix the left and right panes sizes and make + bool fixed; /*@ Use @c EINA_TRUE to fix the left and right panes sizes and make them not to be resized by user interaction. Use @c EINA_FALSE to make them resizable. */ } diff --git a/legacy/elementary/src/lib/elm_photo.eo b/legacy/elementary/src/lib/elm_photo.eo index 516d303271..aa1a703c33 100644 --- a/legacy/elementary/src/lib/elm_photo.eo +++ b/legacy/elementary/src/lib/elm_photo.eo @@ -15,7 +15,7 @@ class Elm_Photo (Elm_Widget, Evas.Clickable_Interface, Evas.Draggable_Interface) /*@ Get editability of the photo. */ } values { - Eina_Bool set; /*@ To set of clear editability. */ + bool set; /*@ To set of clear editability. */ } } fill_inside { @@ -29,7 +29,7 @@ class Elm_Photo (Elm_Widget, Evas.Clickable_Interface, Evas.Draggable_Interface) /*@ Get if the photo should be completely visible or not. */ } values { - Eina_Bool fill; /*@ if true the photo will be completely visible */ + bool fill; /*@ if true the photo will be completely visible */ } } aspect_fixed { @@ -56,7 +56,7 @@ class Elm_Photo (Elm_Widget, Evas.Clickable_Interface, Evas.Draggable_Interface) @ingroup Photo */ } values { - Eina_Bool fixed; /*@ @c EINA_TRUE if the photo should fix the aspect, + bool fixed; /*@ @c EINA_TRUE if the photo should fix the aspect, @c EINA_FALSE otherwise. */ } } @@ -85,7 +85,7 @@ class Elm_Photo (Elm_Widget, Evas.Clickable_Interface, Evas.Draggable_Interface) initial state, which indicates "no photo". @ingroup Photo */ - return Eina_Bool; + return bool; } values { const(char)* file; /*@ The path to file that will be used as @a obj's image. */ diff --git a/legacy/elementary/src/lib/elm_photocam.eo b/legacy/elementary/src/lib/elm_photocam.eo index 7f31738476..70dfb3bf19 100644 --- a/legacy/elementary/src/lib/elm_photocam.eo +++ b/legacy/elementary/src/lib/elm_photocam.eo @@ -27,7 +27,7 @@ class Elm_Photocam (Elm_Widget, Elm_Interface_Scrollable) @ingroup Photocam */ } values { - Eina_Bool paused; /*@ The pause state to set */ + bool paused; /*@ The pause state to set */ } } file { @@ -84,7 +84,7 @@ class Elm_Photocam (Elm_Widget, Elm_Interface_Scrollable) @ingroup Photocam */ } values { - Eina_Bool gesture; /*@ The gesture state to set */ + bool gesture; /*@ The gesture state to set */ } } zoom { diff --git a/legacy/elementary/src/lib/elm_plug.eo b/legacy/elementary/src/lib/elm_plug.eo index 7e2738d431..7b5098c7c1 100644 --- a/legacy/elementary/src/lib/elm_plug.eo +++ b/legacy/elementary/src/lib/elm_plug.eo @@ -31,11 +31,11 @@ class Elm_Plug (Elm_Widget) @ingroup Plug */ - return Eina_Bool; + return bool; params { @in const(char)* svcname; /*@ The service name to connect to set up by the socket. */ @in int svcnum; /*@ The service number to connect to (set up by socket). */ - @in Eina_Bool svcsys; /*@ Boolean to set if the service is a system one or not (set up by socket). */ + @in bool svcsys; /*@ Boolean to set if the service is a system one or not (set up by socket). */ } } } diff --git a/legacy/elementary/src/lib/elm_prefs.eo b/legacy/elementary/src/lib/elm_prefs.eo index 07ed43d9ec..9bc9eb20ef 100644 --- a/legacy/elementary/src/lib/elm_prefs.eo +++ b/legacy/elementary/src/lib/elm_prefs.eo @@ -34,7 +34,7 @@ class Elm_Prefs (Elm_Widget) @see elm_prefs_data_get() @since 1.8 */ - return Eina_Bool; + return bool; } get { /*@ @@ -80,7 +80,7 @@ class Elm_Prefs (Elm_Widget) @see elm_prefs_file_get() @since 1.8 */ - return Eina_Bool; + return bool; } get { /*@ @@ -94,7 +94,7 @@ class Elm_Prefs (Elm_Widget) @see elm_prefs_file_set() for more information @since 1.8 */ - return Eina_Bool; + return bool; } values { const(char)* file; /*@ The @b .epb (binary) file to get contents from */ @@ -134,7 +134,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ } values { - Eina_Bool autosave; /*@ @c EINA_TRUE to save automatically, @c EINA_FALSE + bool autosave; /*@ @c EINA_TRUE to save automatically, @c EINA_FALSE otherwise. */ } } @@ -168,7 +168,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ - return Eina_Bool; + return bool; params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) */ @@ -190,7 +190,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ const; - return Eina_Bool; + return bool; params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to get value from */ @@ -234,7 +234,7 @@ class Elm_Prefs (Elm_Widget) params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to act on */ - @in Eina_Bool disabled; /*@ @c EINA_TRUE, to make it disabled, @c EINA_FALSE + @in bool disabled; /*@ @c EINA_TRUE, to make it disabled, @c EINA_FALSE otherwise */ } } @@ -251,7 +251,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ const; - return Eina_Bool; + return bool; params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to get disabled state from */ @@ -267,7 +267,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ - return Eina_Bool; + return bool; params { @in const(char)* name; /*@ the name of the SWALLOW item (as declared in the prefs collection) */ @@ -290,7 +290,7 @@ class Elm_Prefs (Elm_Widget) params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to act on */ - @in Eina_Bool editable; /*@ @c EINA_TRUE, to make it editable, @c EINA_FALSE + @in bool editable; /*@ @c EINA_TRUE, to make it editable, @c EINA_FALSE otherwise */ } } @@ -307,7 +307,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ const; - return Eina_Bool; + return bool; params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to get editable state from */ @@ -345,7 +345,7 @@ class Elm_Prefs (Elm_Widget) params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to change visibility of */ - @in Eina_Bool visible; /*@ @c EINA_TRUE, to make it visible, @c EINA_FALSE + @in bool visible; /*@ @c EINA_TRUE, to make it visible, @c EINA_FALSE otherwise */ } } @@ -362,7 +362,7 @@ class Elm_Prefs (Elm_Widget) @since 1.8 */ const; - return Eina_Bool; + return bool; params { @in const(char)* name; /*@ The name of the item (as declared in the prefs collection) to get visibility state from */ diff --git a/legacy/elementary/src/lib/elm_progressbar.eo b/legacy/elementary/src/lib/elm_progressbar.eo index 140f4431d7..2f4a62757a 100644 --- a/legacy/elementary/src/lib/elm_progressbar.eo +++ b/legacy/elementary/src/lib/elm_progressbar.eo @@ -71,7 +71,7 @@ class Elm_Progressbar (Elm_Layout) @ingroup Progressbar */ } values { - Eina_Bool pulse; /*@ @c EINA_TRUE to put @p obj in pulsing mode, + bool pulse; /*@ @c EINA_TRUE to put @p obj in pulsing mode, @c EINA_FALSE to put it back to its default one */ } } @@ -133,7 +133,7 @@ class Elm_Progressbar (Elm_Layout) @ingroup Progressbar */ } values { - Eina_Bool inverted; /*@ Use @c EINA_TRUE to make @p obj inverted, + bool inverted; /*@ Use @c EINA_TRUE to make @p obj inverted, @c EINA_FALSE to bring it back to default, non-inverted values. */ } } @@ -161,7 +161,7 @@ class Elm_Progressbar (Elm_Layout) @ingroup Progressbar */ } values { - Eina_Bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to be + bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to be @b horizontal, @c EINA_FALSE to make it @b vertical */ } } @@ -270,7 +270,7 @@ class Elm_Progressbar (Elm_Layout) @ingroup Progressbar */ params { - @in Eina_Bool state; /*@ @c EINA_TRUE, to @b start the pulsing animation, + @in bool state; /*@ @c EINA_TRUE, to @b start the pulsing animation, @c EINA_FALSE to @b stop it */ } } diff --git a/legacy/elementary/src/lib/elm_scroller.eo b/legacy/elementary/src/lib/elm_scroller.eo index 4972c12939..de9a6e7756 100644 --- a/legacy/elementary/src/lib/elm_scroller.eo +++ b/legacy/elementary/src/lib/elm_scroller.eo @@ -26,7 +26,7 @@ class Elm_Scroller (Elm_Layout, Elm_Interface_Scrollable) @ingroup Scroller */ } values { - Eina_Bool propagation; /*@ If propagation is enabled or not */ + bool propagation; /*@ If propagation is enabled or not */ } } custom_widget_base_theme { diff --git a/legacy/elementary/src/lib/elm_separator.eo b/legacy/elementary/src/lib/elm_separator.eo index 4f597f7de0..9a358a75af 100644 --- a/legacy/elementary/src/lib/elm_separator.eo +++ b/legacy/elementary/src/lib/elm_separator.eo @@ -20,7 +20,7 @@ class Elm_Separator (Elm_Layout) @ingroup Separator */ } values { - Eina_Bool horizontal; /*@ If true, the separator is horizontal */ + bool horizontal; /*@ If true, the separator is horizontal */ } } } diff --git a/legacy/elementary/src/lib/elm_slider.eo b/legacy/elementary/src/lib/elm_slider.eo index c8dcac6300..c4255eb788 100644 --- a/legacy/elementary/src/lib/elm_slider.eo +++ b/legacy/elementary/src/lib/elm_slider.eo @@ -28,7 +28,7 @@ class Elm_Slider (Elm_Layout, Elm_Interface_Atspi_Value) @ingroup Slider */ } values { - Eina_Bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to be + bool horizontal; /*@ Use @c EINA_TRUE to make @p obj to be @b horizontal, @c EINA_FALSE to make it @b vertical. */ } } @@ -135,7 +135,7 @@ class Elm_Slider (Elm_Layout, Elm_Interface_Atspi_Value) @ingroup Slider */ } values { - Eina_Bool inverted; /*@ Use @c EINA_TRUE to make @p obj inverted, + bool inverted; /*@ Use @c EINA_TRUE to make @p obj inverted, @c EINA_FALSE to bring it back to default, non-inverted values. */ } } @@ -163,7 +163,7 @@ class Elm_Slider (Elm_Layout, Elm_Interface_Atspi_Value) @ingroup Slider */ } values { - Eina_Bool show; /*@ @c EINA_TRUE will make it enlarge, @c EINA_FALSE will + bool show; /*@ @c EINA_TRUE will make it enlarge, @c EINA_FALSE will let the knob always at default size. */ } } @@ -260,7 +260,7 @@ class Elm_Slider (Elm_Layout, Elm_Interface_Atspi_Value) @ingroup Slider */ } values { - Eina_Bool flag; /*@ @ EINA_TRUE sets the indicator visible */ + bool flag; /*@ @ EINA_TRUE sets the indicator visible */ } } span_size { diff --git a/legacy/elementary/src/lib/elm_slideshow.eo b/legacy/elementary/src/lib/elm_slideshow.eo index 3196e0cd7a..d49774751b 100644 --- a/legacy/elementary/src/lib/elm_slideshow.eo +++ b/legacy/elementary/src/lib/elm_slideshow.eo @@ -143,7 +143,7 @@ class Elm_Slideshow (Elm_Layout) @ingroup Slideshow */ } values { - Eina_Bool loop; /*@ Use @c EINA_TRUE to make it cycle through items or + bool loop; /*@ Use @c EINA_TRUE to make it cycle through items or @c EINA_FALSE for it to stop at the end of @p obj's internal list of items */ } diff --git a/legacy/elementary/src/lib/elm_spinner.eo b/legacy/elementary/src/lib/elm_spinner.eo index f21338a7ee..ec35135aa0 100644 --- a/legacy/elementary/src/lib/elm_spinner.eo +++ b/legacy/elementary/src/lib/elm_spinner.eo @@ -115,7 +115,7 @@ class Elm_Spinner (Elm_Layout) @ingroup Spinner */ } values { - Eina_Bool wrap; /*@ @c EINA_TRUE to enable wrap or @c EINA_FALSE to + bool wrap; /*@ @c EINA_TRUE to enable wrap or @c EINA_FALSE to disable it. */ } } @@ -218,7 +218,7 @@ class Elm_Spinner (Elm_Layout) @ingroup Spinner */ } values { - Eina_Bool editable; /*@ @c EINA_TRUE to allow users to edit it or @c EINA_FALSE to + bool editable; /*@ @c EINA_TRUE to allow users to edit it or @c EINA_FALSE to don't allow users to edit it directly. */ } } diff --git a/legacy/elementary/src/lib/elm_systray.eo b/legacy/elementary/src/lib/elm_systray.eo index a439928ddb..ba01f738d4 100644 --- a/legacy/elementary/src/lib/elm_systray.eo +++ b/legacy/elementary/src/lib/elm_systray.eo @@ -95,7 +95,7 @@ class Elm_Systray (Eo.Base) methods { register { /*@ Register this Status Notifier Item in the System Tray Watcher. This function should only be called after the event ELM_EVENT_SYSTRAY_READY is emitted. */ - return Eina_Bool; + return bool; } } diff --git a/legacy/elementary/src/lib/elm_table.eo b/legacy/elementary/src/lib/elm_table.eo index 5ccb237f7d..fed5c07cd3 100644 --- a/legacy/elementary/src/lib/elm_table.eo +++ b/legacy/elementary/src/lib/elm_table.eo @@ -20,7 +20,7 @@ class Elm_Table (Elm_Widget) @ingroup Table */ } values { - Eina_Bool homogeneous; /*@ A boolean to set if the layout is homogeneous in the + bool homogeneous; /*@ A boolean to set if the layout is homogeneous in the table (EINA_TRUE = homogeneous, EINA_FALSE = no homogeneous) */ } } @@ -53,7 +53,7 @@ class Elm_Table (Elm_Widget) @ingroup Table */ params { - @in Eina_Bool clear; /*@ If true, will delete children, else just remove from table. */ + @in bool clear; /*@ If true, will delete children, else just remove from table. */ } } child_get { diff --git a/legacy/elementary/src/lib/elm_thumb.eo b/legacy/elementary/src/lib/elm_thumb.eo index 389de8cedc..a219a0315f 100644 --- a/legacy/elementary/src/lib/elm_thumb.eo +++ b/legacy/elementary/src/lib/elm_thumb.eo @@ -169,7 +169,7 @@ class Elm_Thumb (Elm_Layout, Evas.Clickable_Interface) @see elm_thumb_editable_get() @ingroup Thumb */ - return Eina_Bool; + return bool; } get { /*@ @@ -185,7 +185,7 @@ class Elm_Thumb (Elm_Layout, Evas.Clickable_Interface) @ingroup Thumb */ } values { - Eina_Bool edit; /*@ Turn on or off editability. Default is @c EINA_FALSE. */ + bool edit; /*@ Turn on or off editability. Default is @c EINA_FALSE. */ } } aspect { diff --git a/legacy/elementary/src/lib/elm_toolbar.eo b/legacy/elementary/src/lib/elm_toolbar.eo index 58f0cdb40d..24f38c2825 100644 --- a/legacy/elementary/src/lib/elm_toolbar.eo +++ b/legacy/elementary/src/lib/elm_toolbar.eo @@ -24,7 +24,7 @@ class Elm_Toolbar (Elm_Widget, Elm_Interface_Scrollable) @ingroup Toolbar */ } values { - Eina_Bool homogeneous; /*@ Assume the items within the toolbar are of the + bool homogeneous; /*@ Assume the items within the toolbar are of the same size (EINA_TRUE = on, EINA_FALSE = off). Default is @c EINA_FALSE. */ } } @@ -133,7 +133,7 @@ class Elm_Toolbar (Elm_Widget, Elm_Interface_Scrollable) @ingroup Toolbar */ } values { - Eina_Bool horizontal; /*@ If @c EINA_TRUE, the toolbar is horizontal */ + bool horizontal; /*@ If @c EINA_TRUE, the toolbar is horizontal */ } } icon_order_lookup { diff --git a/legacy/elementary/src/lib/elm_video.eo b/legacy/elementary/src/lib/elm_video.eo index c5ea9b485f..f3382146d8 100644 --- a/legacy/elementary/src/lib/elm_video.eo +++ b/legacy/elementary/src/lib/elm_video.eo @@ -42,7 +42,7 @@ class Elm_Video (Elm_Layout) @ingroup Video */ } values { - Eina_Bool remember; /*@ the last played position of the Elm_Video object. */ + bool remember; /*@ the last played position of the Elm_Video object. */ } } play_position { @@ -82,7 +82,7 @@ class Elm_Video (Elm_Layout) @ingroup Video */ } values { - Eina_Bool mute; /*@ The new mute state. */ + bool mute; /*@ The new mute state. */ } } file { @@ -99,7 +99,7 @@ class Elm_Video (Elm_Layout) @see elm_player_add() @ingroup Video */ - return Eina_Bool; + return bool; } values { const(char)* filename; /*@ The file or URI to target. @@ -120,7 +120,7 @@ class Elm_Video (Elm_Layout) the object state. @ingroup Video */ - return Eina_Bool; + return bool; } } play_length { @@ -153,7 +153,7 @@ class Elm_Video (Elm_Layout) @return @c EINA_TRUE if is possible to seek inside the video. @ingroup Video */ - return Eina_Bool; + return bool; } } title { diff --git a/legacy/elementary/src/lib/elm_web.eo b/legacy/elementary/src/lib/elm_web.eo index 980f96a313..0fa5076996 100644 --- a/legacy/elementary/src/lib/elm_web.eo +++ b/legacy/elementary/src/lib/elm_web.eo @@ -13,7 +13,7 @@ class Elm_Web (Elm_Widget) @return @c EINA_TRUE on success, @c EINA_FALSE otherwise @ingroup Web */ - return Eina_Bool; + return bool; } get { /*@ @@ -25,7 +25,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ } values { - Eina_Bool highlight; /*@ Whether to highlight the marks or not */ + bool highlight; /*@ Whether to highlight the marks or not */ } } useragent { @@ -58,7 +58,7 @@ class Elm_Web (Elm_Widget) @return @c EINA_TRUE if the URL could be set, @c EINA_FALSE if an error occurred. @ingroup Web */ - return Eina_Bool; + return bool; } get { /*@ @@ -122,7 +122,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ } values { - Eina_Bool value; /*@ @c EINA_TRUE to use Inwin, @c EINA_FALSE to use a normal window */ + bool value; /*@ @c EINA_TRUE to use Inwin, @c EINA_FALSE to use a normal window */ } } tab_propagate { @@ -149,7 +149,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ } values { - Eina_Bool propagate; /*@ Whether to propagate Tab keys to Elementary or not */ + bool propagate; /*@ Whether to propagate Tab keys to Elementary or not */ } } history_enabled { @@ -168,7 +168,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ } values { - Eina_Bool enable; /*@ Whether to enable or disable the browsing history */ + bool enable; /*@ Whether to enable or disable the browsing history */ } } zoom_mode { @@ -364,7 +364,7 @@ class Elm_Web (Elm_Widget) otherwise @ingroup Web */ - return Eina_Bool; + return bool; } } webkit_view { @@ -396,7 +396,7 @@ class Elm_Web (Elm_Widget) otherwise @ingroup Web */ - return Eina_Bool; + return bool; } } load_progress { @@ -462,7 +462,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; params { @in int steps; /*@ The number of steps to jump */ } @@ -482,7 +482,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } html_string_load { /*@ @@ -500,7 +500,7 @@ class Elm_Web (Elm_Widget) @since 1.9 @ingroup Web */ - return Eina_Bool; + return bool; params { @in const(char)* html; /*@ HTML data to load */ @in const(char)* base_url; /*@ Base URL used for relative paths to external objects (optional) */ @@ -517,12 +517,12 @@ class Elm_Web (Elm_Widget) @ingroup Web */ const; - return Eina_Bool; + return bool; params { @in const(char)* string; /*@ String to search */ - @in Eina_Bool case_sensitive; /*@ If search should be case sensitive or not */ - @in Eina_Bool forward; /*@ If search is from cursor and on or backwards */ - @in Eina_Bool wrap; /*@ If search should wrap at the end */ + @in bool case_sensitive; /*@ If search should be case sensitive or not */ + @in bool forward; /*@ If search is from cursor and on or backwards */ + @in bool wrap; /*@ If search should wrap at the end */ } } popup_destroy { @@ -539,7 +539,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } region_show { /*@ @@ -569,7 +569,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } text_matches_mark { /*@ @@ -582,8 +582,8 @@ class Elm_Web (Elm_Widget) return uint; params { @in const(char)* string; /*@ String to match */ - @in Eina_Bool case_sensitive; /*@ If match should be case sensitive or not */ - @in Eina_Bool highlight; /*@ If matches should be highlighted */ + @in bool case_sensitive; /*@ If match should be case sensitive or not */ + @in bool highlight; /*@ If matches should be highlighted */ @in uint limit; /*@ Maximum amount of matches, or zero to unlimited */ } } @@ -615,7 +615,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } navigate_possible_get { /*@ @@ -629,7 +629,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; params { @in int steps; /*@ The number of steps to check for */ } @@ -642,7 +642,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } text_matches_unmark_all { /*@ @@ -652,7 +652,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } reload { /*@ @@ -662,7 +662,7 @@ class Elm_Web (Elm_Widget) @ingroup Web */ - return Eina_Bool; + return bool; } } implements { diff --git a/legacy/elementary/src/lib/elm_widget.eo b/legacy/elementary/src/lib/elm_widget.eo index 323b788f57..b9436a884d 100644 --- a/legacy/elementary/src/lib/elm_widget.eo +++ b/legacy/elementary/src/lib/elm_widget.eo @@ -11,7 +11,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool focus; + bool focus; } } drag_lock_y { @@ -22,13 +22,13 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool lock; + bool lock; } } focus_highlight_style { set { /*@ This function set the widget focus highlight style. */ - return Eina_Bool; + return bool; } get { /*@ This function returns the widget focus highlight style. */ @@ -45,7 +45,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool tree_unfocusable; + bool tree_unfocusable; } } mirrored { @@ -56,7 +56,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ Returns the widget's mirrored mode. */ } values { - Eina_Bool mirrored; + bool mirrored; } } theme { @@ -78,7 +78,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool disabled; + bool disabled; } } highlight_ignore { @@ -89,7 +89,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool ignore; + bool ignore; } } mirrored_automatic { @@ -100,7 +100,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ Returns the widget's mirrored mode setting. */ } values { - Eina_Bool automatic; + bool automatic; } } orientation_mode_disabled { @@ -111,13 +111,13 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool disabled; + bool disabled; } } style { set { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; } get { /*@ No description supplied by the EAPI. */ @@ -157,7 +157,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool can_focus; + bool can_focus; } } highlight_in_theme { @@ -168,7 +168,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool highlight; + bool highlight; } } parent { @@ -201,7 +201,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool lock; + bool lock; } } access_highlight_in_theme { @@ -212,7 +212,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool highlight; /*@ highlight */ + bool highlight; /*@ highlight */ } } parent_highlight { @@ -220,13 +220,13 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool highlighted; + bool highlighted; } } theme_object { set { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; } values { Evas_Object *edj; @@ -267,7 +267,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) values { const(char)* part; const(char)* domain; - Eina_Bool translatable; + bool translatable; } } orientation { @@ -284,7 +284,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } values { Evas_Object *sobj; - Eina_Bool sub_obj; + bool sub_obj; } } domain_translatable_part_text { @@ -325,13 +325,13 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ Get the value whether item loop feature is enabled or not. */ } values { - Eina_Bool enable; + bool enable; } } child_can_focus { get { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; } } scroll_freeze { @@ -343,7 +343,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) focus_region { get { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; } values { Evas_Coord x; @@ -387,8 +387,8 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_Bool horiz; - Eina_Bool vert; + bool horiz; + bool vert; } } parent_widget { @@ -401,7 +401,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) highlight { get { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; } } focused_object { @@ -443,7 +443,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) return Evas_Object *; params { @out uint newest_focus_order; - @in Eina_Bool can_focus_only; + @in bool can_focus_only; } } scroll_hold_push { @@ -503,19 +503,19 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) params { @in Elm_Activate act; } - return Eina_Bool; + return bool; legacy null; /* the legacy API has not the same number of parameter to we don't generate it. */ } sub_object_add { /*@ 'Virtual' function handling sub objects being added. */ - return Eina_Bool; + return bool; params { @in Evas_Object *sobj; } } focus_direction_manager_is { /*@ 'Virtual' function which checks if handling of passing focus to sub-objects in given direction is supported by widget. */ - return Eina_Bool; + return bool; legacy null; } event { @@ -525,7 +525,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) @in Evas_Callback_Type type; @in void *event_info; } - return Eina_Bool; + return bool; } event_callback_add { /*@ No description supplied by the EAPI. */ @@ -537,7 +537,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) access { /*@ 'Virtual' function on the widget being set access. */ params { - @in Eina_Bool acs; + @in bool acs; } legacy null; } @@ -558,7 +558,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) on_focus { /*@ 'Virtual' function handling focus in/out events on the widget. return EINA_TRUE if this widget can handle focus, EINA_FALSE otherwise */ - return Eina_Bool; + return bool; } on_focus_region { /*@ 'Virtual' function returning an inner area of a widget that should be brought into the visible area of a broader viewport, may this context arise. */ @@ -568,7 +568,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) @out Evas_Coord w; @out Evas_Coord h; } - return Eina_Bool; + return bool; } focus_cycle { /*@ No description supplied by the EAPI. */ @@ -584,11 +584,11 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) @out Evas_Object *direction; @out double weight; } - return Eina_Bool; + return bool; } event_propagate { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; params { @in Evas_Callback_Type type; @in void *event_info; @@ -606,7 +606,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } focus_next_manager_is { /*@ 'Virtual' function which checks if handling of passing focus to sub-objects is supported by widget. */ - return Eina_Bool; + return bool; } name_find { /*@ No description supplied by the EAPI. */ @@ -620,7 +620,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) focus_list_direction_get { /*@ No description supplied by the EAPI. */ const; - return Eina_Bool; + return bool; params { @in const(Evas_Object)* base; @in const(Eina_List)* items; @@ -635,7 +635,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } focus_direction_go { /*@ No description supplied by the EAPI. */ - return Eina_Bool; + return bool; params { @in double degree; } @@ -647,7 +647,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) @in Evas_Coord y; @in Evas_Coord w; @in Evas_Coord h; - @in Eina_Bool forceshow; + @in bool forceshow; } } show_region_get { @@ -672,7 +672,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) focus_next_get { /*@ No description supplied by the EAPI. */ const; - return Eina_Bool; + return bool; params { @in Elm_Focus_Direction dir; @out Evas_Object *next; @@ -704,7 +704,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } translate { /*@ 'Virtual' function handling language changes on Elementary. */ - return Eina_Bool; + return bool; legacy null; } scroll_freeze_push { @@ -725,12 +725,12 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) @in Elm_Focus_Direction dir; @out Evas_Object *next; } - return Eina_Bool; + return bool; } focus_list_next_get { /*@ No description supplied by the EAPI. */ const; - return Eina_Bool; + return bool; params { @in const(Eina_List)* items; @in list_data_get_func_type list_data_get; @@ -744,12 +744,12 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } theme_apply { /*@ 'Virtual' function on the widget being re-themed. */ - return Eina_Bool; + return bool; } focus_direction_get { /*@ No description supplied by the EAPI. */ const; - return Eina_Bool; + return bool; params { @in const(Evas_Object)* base; @in double degree; @@ -775,11 +775,11 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget) } disable { /*@ 'Virtual' function on the widget being disabled. */ - return Eina_Bool; + return bool; } sub_object_del { /*@ 'Virtual' function handling sub objects being removed. */ - return Eina_Bool; + return bool; params { @in Evas_Object *sobj; } diff --git a/legacy/elementary/src/lib/elm_win.eo b/legacy/elementary/src/lib/elm_win.eo index 7e5211e403..b2b564fdc6 100644 --- a/legacy/elementary/src/lib/elm_win.eo +++ b/legacy/elementary/src/lib/elm_win.eo @@ -27,7 +27,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool is_keyboard; /*@ If true, the window is a virtual keyboard */ + bool is_keyboard; /*@ If true, the window is a virtual keyboard */ } } autodel { @@ -59,7 +59,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool autodel; /*@ If true, the window will automatically delete itself when + bool autodel; /*@ If true, the window will automatically delete itself when closed */ } } @@ -91,7 +91,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool override; /*@ If true, the window is overridden */ + bool override; /*@ If true, the window is overridden */ } } iconified { @@ -110,7 +110,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool iconified; /*@ If true, the window is iconified */ + bool iconified; /*@ If true, the window is iconified */ } } wm_available_rotations { @@ -139,7 +139,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) ingroup Win @since 1.9 */ legacy elm_win_wm_rotation_available_rotations_get; - return Eina_Bool; + return bool; } values { int *rotations; /*@ The array of rotation value. */ @@ -181,7 +181,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool maximized; /*@ If true, the window is maximized */ + bool maximized; /*@ If true, the window is maximized */ } } modal { @@ -200,7 +200,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool modal; /*@ If true, the window is modal */ + bool modal; /*@ If true, the window is modal */ } } icon_name { @@ -242,7 +242,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool withdrawn; /*@ If true, the window is withdrawn */ + bool withdrawn; /*@ If true, the window is withdrawn */ } } role { @@ -338,7 +338,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool borderless; /*@ If true, the window is borderless */ + bool borderless; /*@ If true, the window is borderless */ } } screen_constrain { @@ -359,7 +359,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool constrain; /*@ EINA_TRUE to restrict the window's maximum size, EINA_FALSE to disable restriction */ + bool constrain; /*@ EINA_TRUE to restrict the window's maximum size, EINA_FALSE to disable restriction */ } } available_profiles { @@ -379,7 +379,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win @since 1.8 */ - return Eina_Bool; + return bool; } values { char **profiles; /*@ The string array of available profiles */ @@ -405,7 +405,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool enabled; /*@ The enabled value for the highlight */ + bool enabled; /*@ The enabled value for the highlight */ } } title { @@ -457,7 +457,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool alpha; /*@ EINA_TRUE if the window alpha channel is enabled, EINA_FALSE otherwise */ + bool alpha; /*@ EINA_TRUE if the window alpha channel is enabled, EINA_FALSE otherwise */ } } urgent { @@ -476,7 +476,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool urgent; /*@ If true, the window is urgent */ + bool urgent; /*@ If true, the window is urgent */ } } rotation { @@ -588,7 +588,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool sticky; /*@ If true, the window's sticky state is enabled */ + bool sticky; /*@ If true, the window's sticky state is enabled */ } } keyboard_mode { @@ -629,7 +629,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool animate; /*@ The enabled value for the highlight animation */ + bool animate; /*@ The enabled value for the highlight animation */ } } aspect { @@ -706,7 +706,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool demand_attention; /*@ If true, the window is demand_attention */ + bool demand_attention; /*@ If true, the window is demand_attention */ } } wm_preferred_rotation { @@ -819,7 +819,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool shaped; /*@ If true, the window is shaped */ + bool shaped; /*@ If true, the window is shaped */ } } fullscreen { @@ -838,7 +838,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool fullscreen; /*@ If true, the window is fullscreen */ + bool fullscreen; /*@ If true, the window is fullscreen */ } } wm_manual_rotation_done { @@ -874,7 +874,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) legacy elm_win_wm_rotation_manual_rotation_done_get; } values { - Eina_Bool set; /*@ EINA_TRUE means to set manual rotation done mode EINA_FALSE otherwise. */ + bool set; /*@ EINA_TRUE means to set manual rotation done mode EINA_FALSE otherwise. */ } } indicator_mode { @@ -912,7 +912,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool conformant; /*@ The conformant flag (1 = conformant, 0 = non-conformant) */ + bool conformant; /*@ The conformant flag (1 = conformant, 0 = non-conformant) */ } } size_base { @@ -959,7 +959,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool quickpanel; /*@ The quickpanel flag (1 = quickpanel, 0 = normal window) */ + bool quickpanel; /*@ The quickpanel flag (1 = quickpanel, 0 = normal window) */ } } rotation_with_resize { @@ -998,7 +998,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ } values { - Eina_Bool skip; /*@ The skip flag state (EINA_TRUE if it is to be skipped) */ + bool skip; /*@ The skip flag state (EINA_TRUE if it is to be skipped) */ } } screen_position { @@ -1034,7 +1034,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win @since 1.9 */ - return Eina_Bool; + return bool; } } xwindow { @@ -1055,7 +1055,7 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @return EINA_TRUE if the window exists and has focus, else EINA_FALSE @ingroup Win */ - return Eina_Bool; + return bool; } } screen_size { @@ -1173,11 +1173,11 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ - return Eina_Bool; + return bool; params { @in const(char)* svcname; /*@ The name of the service to be advertised. ensure that it is unique (when combined with @p svcnum) otherwise creation may fail. */ @in int svcnum; /*@ A number (any value, 0 being the common default) to differentiate multiple instances of services with the same name. */ - @in Eina_Bool svcsys; /*@ A boolean that if true, specifies to create a system-wide service all users can connect to, otherwise the service is private to the user id that created the service. */ + @in bool svcsys; /*@ A boolean that if true, specifies to create a system-wide service all users can connect to, otherwise the service is private to the user id that created the service. */ } } illume_command_send { @@ -1294,8 +1294,8 @@ class Elm_Win (Elm_Widget, Elm_Interface_Atspi_Window) @ingroup Win */ params { - @in Eina_Bool h; /*@ If true, center horizontally. If false, do not change horizontal location. */ - @in Eina_Bool v; /*@ If true, center vertically. If false, do not change vertical location. */ + @in bool h; /*@ If true, center horizontally. If false, do not change horizontal location. */ + @in bool v; /*@ If true, center vertically. If false, do not change vertical location. */ } } }