X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=cspi%2Fspi-statetypes.h;h=7d94a571c5abca98b3b83956d5eaac916c33d829;hb=9b94d95337a6bd6bc5946191ef52341b0e97530f;hp=0cbea6dc4afd3a729ad72c7cfac624d55b013a9d;hpb=408978dd34f3338e49b6ace5f60b7606579ce7a9;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/cspi/spi-statetypes.h b/cspi/spi-statetypes.h index 0cbea6d..7d94a57 100644 --- a/cspi/spi-statetypes.h +++ b/cspi/spi-statetypes.h @@ -9,81 +9,81 @@ typedef enum { - STATE_INVALID, + SPI_STATE_INVALID, /* Indicates a window is currently the active window */ - STATE_ACTIVE, + SPI_STATE_ACTIVE, /* Indicates that the object is armed */ - STATE_ARMED, + SPI_STATE_ARMED, /* Indicates the current object is busy */ - STATE_BUSY, + SPI_STATE_BUSY, /* Indicates this object is currently checked */ - STATE_CHECKED, + SPI_STATE_CHECKED, /* Indicates this object is collapsed */ - STATE_COLLAPSED, + SPI_STATE_COLLAPSED, /* Indicates the user can change the contents of this object */ - STATE_EDITABLE, + SPI_STATE_EDITABLE, /* Indicates this object allows progressive disclosure of its children */ - STATE_EXPANDABLE, + SPI_STATE_EXPANDABLE, /* Indicates this object its expanded */ - STATE_EXPANDED, + SPI_STATE_EXPANDED, /* * Indicates this object can accept keyboard focus, which means all * events resulting from typing on the keyboard will normally be passed * to it when it has focus */ - STATE_FOCUSABLE, + SPI_STATE_FOCUSABLE, /* Indicates this object currently has the keyboard focus */ - STATE_FOCUSED, + SPI_STATE_FOCUSED, /* Indicates the orientation of thsi object is horizontal */ - STATE_HORIZONTAL, + SPI_STATE_HORIZONTAL, /* Indicates this object is minimized and is represented only by an icon */ - STATE_ICONIFIED, + SPI_STATE_ICONIFIED, /* * Indicates something must be done with this object before the user can * interact with an object in a different window. */ - STATE_MODAL, + SPI_STATE_MODAL, /* Indicates this (text) object can contain multiple lines of text */ - STATE_MULTI_LINE, + SPI_STATE_MULTI_LINE, /* * Indicates this object allows more than one of its children to be * selected at the same time */ - STATE_MULTISELECSPI_TABLE, + SPI_STATE_MULTISELECSPI_TABLE, /* Indicates this object paints every pixel within its rectangular region. */ - STATE_OPAQUE, + SPI_STATE_OPAQUE, /* Indicates this object is currently pressed */ - STATE_PRESSED, + SPI_STATE_PRESSED, /* Indicates the size of this object is not fixed */ - STATE_RESIZABLE, + SPI_STATE_RESIZABLE, /* * Indicates this object is the child of an object that allows its * children to be selected and that this child is one of those children * that can be selected. */ - STATE_SELECSPI_TABLE, + SPI_STATE_SELECSPI_TABLE, /* * Indicates this object is the child of an object that allows its * children to be selected and that this child is one of those children * that has been selected. */ - STATE_SELECTED, + SPI_STATE_SELECTED, /* Indicates this object is sensitive */ - STATE_SENSITIVE, + SPI_STATE_SENSITIVE, /* * Indicates this object, the object's parent, the object's parent's * parent, and so on, are all visible */ - STATE_SHOWING, + SPI_STATE_SHOWING, /* Indicates this (text) object can contain only a single line of text */ - STATE_SINGLE_LINE, + SPI_STATE_SINGLE_LINE, /* Indicates this object is transient */ - STATE_TRANSIENT, + SPI_STATE_TRANSIENT, /* Indicates the orientation of this object is vertical */ - STATE_VERTICAL, + SPI_STATE_VERTICAL, /* Indicates this object is visible */ - STATE_VISIBLE, - STATE_LAST_DEFINED -} SPI_ACCESSIBLE_STATE; + SPI_STATE_VISIBLE, + SPI_STATE_LAST_DEFINED +} AccessibleState; #endif