summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-08-02 02:22:49 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-08-02 02:22:49 +0200
commit676ae11a8ea95f9fd8abcebbfae0cf5078676672 (patch)
tree43708452ad0a8aeffdc577b872071a7ba2424d28
parentdbe95f6170ae1f4bb76c755506b4e3dd3990d5aa (diff)
downloadatk-676ae11a8ea95f9fd8abcebbfae0cf5078676672.tar.gz
Add missing ATK_STATE_COLLAPSED
At-spi2-core has ATSPI_STATE_COLLAPSED, and java-atk-wrapper is actually missing it.
-rw-r--r--atk/atkstate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/atk/atkstate.h b/atk/atkstate.h
index b1094eb..82be9c7 100644
--- a/atk/atkstate.h
+++ b/atk/atkstate.h
@@ -141,6 +141,7 @@ G_BEGIN_DECLS
* widget does not include modification by the user, as is the case with
* labels and containers, ATK_STATE_READ_ONLY should not be applied. See also
* ATK_STATE_EDITABLE. @Since: ATK-2-16
+ *@ATK_STATE_COLLAPSED: Indicates this object is collapsed. @Since: ATK-2.38
*@ATK_STATE_LAST_DEFINED: Not a valid state, used for finding end of enumeration
*
*The possible types of states of an object
@@ -190,6 +191,7 @@ typedef enum
ATK_STATE_HAS_POPUP,
ATK_STATE_HAS_TOOLTIP,
ATK_STATE_READ_ONLY,
+ ATK_STATE_COLLAPSED,
ATK_STATE_LAST_DEFINED
} AtkStateType;