From 403dcc785e75eec49491ec66345445bfbf18e42d Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Fri, 4 Nov 2016 10:31:24 +0100 Subject: [PATCH] docs: harmonize AT-SPI writing in all eo files. AT-SPI is how I find it written in most places. Align to this in our docs. --- src/lib/elementary/elm_atspi_app_object.eo | 2 +- src/lib/elementary/elm_atspi_bridge.eo | 2 +- .../elm_interface_atspi_accessible.eo | 26 +++++++++---------- .../elementary/elm_interface_atspi_action.eo | 2 +- .../elm_interface_atspi_component.eo | 2 +- .../elementary/elm_interface_atspi_image.eo | 2 +- .../elm_interface_atspi_widget_action.eo | 4 +-- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/lib/elementary/elm_atspi_app_object.eo b/src/lib/elementary/elm_atspi_app_object.eo index 1600fd9f8e..cb3e77bd2a 100644 --- a/src/lib/elementary/elm_atspi_app_object.eo +++ b/src/lib/elementary/elm_atspi_app_object.eo @@ -1,6 +1,6 @@ class Elm.Atspi.App.Object (Efl.Object, Elm.Interface.Atspi_Accessible) { - [[ATSPI application object class]] + [[AT-SPI application object class]] legacy_prefix: elm_atspi_app_object; data: Elm_Atspi_App_Object_Data; implements { diff --git a/src/lib/elementary/elm_atspi_bridge.eo b/src/lib/elementary/elm_atspi_bridge.eo index b1e05f8043..c1e7e5d024 100644 --- a/src/lib/elementary/elm_atspi_bridge.eo +++ b/src/lib/elementary/elm_atspi_bridge.eo @@ -1,6 +1,6 @@ class Elm.Atspi.Bridge (Efl.Object) { - [[ATSPI bridge class]] + [[AT-SPI bridge class]] legacy_prefix: elm_atspi_bridge; eo_prefix: elm_obj_atspi_bridge; event_prefix: elm_atspi_bridge; diff --git a/src/lib/elementary/elm_interface_atspi_accessible.eo b/src/lib/elementary/elm_interface_atspi_accessible.eo index 8928ee0524..d3b8f17cb5 100644 --- a/src/lib/elementary/elm_interface_atspi_accessible.eo +++ b/src/lib/elementary/elm_interface_atspi_accessible.eo @@ -192,20 +192,20 @@ enum Elm.Atspi.Relation_Type last_defined, [[Last enum entry sentinel]] } -type Elm.Atspi.State_Set: uint64; [[ATSPI object state set.]] +type Elm.Atspi.State_Set: uint64; [[AT-SPI object state set.]] -struct Elm.Atspi.Event.Handler; [[ATSPI event listener]] +struct Elm.Atspi.Event.Handler; [[AT-SPI event listener]] struct Elm.Atspi.Event.State_Changed.Data { - [[ATSPI state changed event data]] + [[AT-SPI state changed event data]] type: Elm.Atspi.State_Type; [[Type of the state changed event]] new_value: bool; [[New value]] } struct Elm.Atspi.Event.Geometry_Changed.Data { - [[ATSPI geometry changed event data]] + [[AT-SPI geometry changed event data]] x: int; [[X coordinate]] y: int; [[Y coordinate]] width: int; [[Width]] @@ -214,35 +214,35 @@ struct Elm.Atspi.Event.Geometry_Changed.Data struct Elm.Atspi.Event.Children_Changed.Data { - [[ATSPI children changed event data]] + [[AT-SPI children changed event data]] is_added: bool; [[Child is added or not]] child: Efl.Object; [[Child object]] } struct Elm.Atspi.Attribute { - [[ATSPI Attribute]] + [[AT-SPI Attribute]] key: string; [[Attribute key]] value: string; [[Attribute value]] } struct Elm.Atspi.Relation { - [[ATSPI Relation]] + [[AT-SPI Relation]] type: Elm.Atspi.Relation_Type; [[Relation type]] objects: list; [[List with relation objects]] } -type Elm.Atspi.Relation_Set: list; [[Elementary ATSPI relation set type]] +type Elm.Atspi.Relation_Set: list; [[Elementary AT-SPI relation set type]] mixin Elm.Interface.Atspi_Accessible () { - [[ATSPI accessible mixin]] + [[AT-SPI accessible mixin]] eo_prefix: elm_interface_atspi_accessible; data: Elm_Interface_Atspi_Accessible_Data; methods { @property localized_role_name @protected { - [[Gets an localized string describing ATSPI widget role name.]] + [[Gets an localized string describing AT-SPI widget role name.]] get { } values { @@ -250,7 +250,7 @@ mixin Elm.Interface.Atspi_Accessible () } } @property name { - [[String describing ATSPI widget role name. Should be free by a user.]] + [[String describing AT-SPI widget role name. Should be free by a user.]] get { } set { @@ -260,7 +260,7 @@ mixin Elm.Interface.Atspi_Accessible () } } @property relation_set @protected { - [[Gets an string describing ATSPI widget role name. Lists and elements Should be free by a user.]] + [[Gets an string describing AT-SPI widget role name. Lists and elements Should be free by a user.]] get { } values { @@ -268,7 +268,7 @@ mixin Elm.Interface.Atspi_Accessible () } } @property role { - [[The role of the widget in ATSPI Accessibility domain.]] + [[The role of the widget in AT-SPI Accessibility domain.]] get { } set { diff --git a/src/lib/elementary/elm_interface_atspi_action.eo b/src/lib/elementary/elm_interface_atspi_action.eo index 6279cae68f..d841f3666e 100644 --- a/src/lib/elementary/elm_interface_atspi_action.eo +++ b/src/lib/elementary/elm_interface_atspi_action.eo @@ -1,6 +1,6 @@ mixin Elm.Interface.Atspi_Action () { - [[ATSPI action mixin]] + [[AT-SPI action mixin]] eo_prefix: elm_interface_atspi_action; data: null; methods { diff --git a/src/lib/elementary/elm_interface_atspi_component.eo b/src/lib/elementary/elm_interface_atspi_component.eo index 8f8f4cb6f0..988d940e49 100644 --- a/src/lib/elementary/elm_interface_atspi_component.eo +++ b/src/lib/elementary/elm_interface_atspi_component.eo @@ -1,6 +1,6 @@ mixin Elm.Interface.Atspi_Component () { - [[ATSPI component mixin]] + [[AT-SPI component mixin]] eo_prefix: elm_interface_atspi_component; data: null; methods { diff --git a/src/lib/elementary/elm_interface_atspi_image.eo b/src/lib/elementary/elm_interface_atspi_image.eo index b19f0324c4..675b71651c 100644 --- a/src/lib/elementary/elm_interface_atspi_image.eo +++ b/src/lib/elementary/elm_interface_atspi_image.eo @@ -1,6 +1,6 @@ mixin Elm.Interface.Atspi_Image () { - [[ATSPI image mixin]] + [[AT-SPI image mixin]] eo_prefix: elm_interface_atspi_image; data: null; methods { diff --git a/src/lib/elementary/elm_interface_atspi_widget_action.eo b/src/lib/elementary/elm_interface_atspi_widget_action.eo index 3fb24dec4f..f62d91b8d9 100644 --- a/src/lib/elementary/elm_interface_atspi_widget_action.eo +++ b/src/lib/elementary/elm_interface_atspi_widget_action.eo @@ -1,8 +1,8 @@ -type Elm_Atspi_Action: __undefined_type; [[Elementary ATSPI action type]] +type Elm_Atspi_Action: __undefined_type; [[Elementary AT-SPI action type]] mixin Elm.Interface.Atspi_Widget_Action (Elm.Interface.Atspi_Action) { - [[ATSPI widget action mixin]] + [[AT-SPI widget action mixin]] eo_prefix: elm_interface_atspi_widget_action; data: null; methods {