Added ATK_STATE_VISITED, bug #344384.
authorBill Haneman <billh@src.gnome.org>
Fri, 9 Jun 2006 13:06:50 +0000 (13:06 +0000)
committerBill Haneman <billh@src.gnome.org>
Fri, 9 Jun 2006 13:06:50 +0000 (13:06 +0000)
ChangeLog
atk/atkstate.h

index a6d9306..720bb2e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,7 +8,8 @@
        * atk/atkrelationtype.h: Added ATK_RELATION_DESCRIPTION_FOR, 
        ATK_RELATION_DESCRIBED_BY (bug #344144).
 
-       * atk/atkstate.h: Added ATK_STATE_DEFAULT (bug #344281).
+       * atk/atkstate.h: Added ATK_STATE_DEFAULT (bug #344281) and
+       ATK_STATE_VISITED (bug #344384).
 
        * atk/atkvalue.h, atkvalue.c: Add atk_value_get_minimum_increment
        (missing despite being in AT-SPI's IDL for Value: bug #341875)
index 911d613..5040923 100755 (executable)
@@ -67,6 +67,7 @@ extern "C" {
  *@ATK_STATE_SUPPORTS_AUTOCOMPLETION: Indicates that the object may exhibit "typeahead" behavior in response to user keystrokes, e.g. one keystroke may result in the insertion of several characters into an entry, or result in the auto-selection of an item in a list.  This state supplants @ATK_ROLE_AUTOCOMPLETE.
  *@ATK_STATE_SELECTABLE_TEXT:Indicates that the object in question supports text selection. It should only be exposed on objects which implement the Text interface, in order to distinguish this state from @ATK_STATE_SELECTABLE, which infers that the object in question is a selectable child of an object which implements Selection. While similar, text selection and subelement selection are distinct operations.
  *@ATK_STATE_DEFAULT: Indicates that the object is the "default" active component, i.e. the object which is activated by an end-user press of the "Enter" or "Return" key.  Typically a "close" or "submit" button.
+ *@ATK_STATE_VISITED: Indicates that the object (typically a hyperlink) has already been 'activated', and/or its backing data has already been downloaded, rendered, or otherwise "visited".
  *@ATK_STATE_LAST_DEFINED: Not a valid state, used for finding end of enumeration
  *
  *The possible types of states of an object
@@ -110,6 +111,7 @@ typedef enum
   ATK_STATE_SUPPORTS_AUTOCOMPLETION,
   ATK_STATE_SELECTABLE_TEXT,
   ATK_STATE_DEFAULT,
+  ATK_STATE_VISITED,
        
   ATK_STATE_LAST_DEFINED
 } AtkStateType;