Constructor
AtspiMatchRulenew
Declaration [src]
AtspiMatchRule*
atspi_match_rule_new (
AtspiStateSet* states,
AtspiCollectionMatchType statematchtype,
GHashTable* attributes,
AtspiCollectionMatchType attributematchtype,
GArray* roles,
AtspiCollectionMatchType rolematchtype,
GArray* interfaces,
AtspiCollectionMatchType interfacematchtype,
gboolean invert
)
Description [src]
Creates a new AtspiMatchRule with specified states, attributes,
interfaces, and roles.
Parameters
states-
Type:
AtspiStateSetAn
AtspiStateSetspecifying the states to match or NULL if none.The data is owned by the caller of the function. statematchtype-
Type:
AtspiCollectionMatchTypeAn
AtspiCollectionMatchTypespecifying how to interpretstates. attributes-
Type:
GHashTableA
GHashTablespecifying attributes to match. To specify multiple attribute values, separate each value with a :: If an attribute value contains a :, then it can be escaped by preceding it with a . A backslash can likewise be escaped by inserting a double backslash.The data is owned by the caller of the function. attributematchtype-
Type:
AtspiCollectionMatchTypeAn
AtspiCollectionMatchTypespecifying how to interpretattributes. roles-
Type: An array of
AtspiRoleA
GArrayof roles to match, or NULL if not applicable.The data is owned by the caller of the function. rolematchtype-
Type:
AtspiCollectionMatchTypeAn
AtspiCollectionMatchTypespecifying how to interpretroles. interfaces-
Type: An array of
utf8An array of interfaces to match, or NULL if not applicable. Interface names should be specified by the final component of their DBus names (Accessible, Component, etc).
The data is owned by the caller of the function. Each element is a NUL terminated UTF-8 string. interfacematchtype-
Type:
AtspiCollectionMatchTypeAn
AtspiCollectionMatchTypespecifying how to interpretinterfaces. invert-
Type:
gbooleanIf
TRUE, the match rule should be denied (inverted); ifFALSE, it should not. For example, if the match rule defines that a match is an object of ROLE_HEADING which has STATE_FOCUSABLE and a click action, inverting it would match all objects that are not of ROLE_HEADING, focusable and clickable at the same time.
Return value
Type: AtspiMatchRule
A new AtspiMatchRule.
| The caller of the function takes ownership of the data, and is responsible for freeing it. |