fix docs in ecore_x.h -= were mis-aligned to enums.

SVN revision: 74882
This commit is contained in:
Carsten Haitzler 2012-08-05 08:59:44 +00:00
parent 9b8a67bb31
commit 4080774625
1 changed files with 14 additions and 15 deletions

View File

@ -125,22 +125,21 @@ typedef enum _Ecore_X_Composite_Update_Type
*/ */
typedef enum _Ecore_X_Window_State typedef enum _Ecore_X_Window_State
{ {
/* Unknown state */ ECORE_X_WINDOW_STATE_UNKNOWN = 0,
ECORE_X_WINDOW_STATE_UNKNOWN = 0, /** The window is iconified. */ ECORE_X_WINDOW_STATE_ICONIFIED, /** The window is iconified. */
ECORE_X_WINDOW_STATE_ICONIFIED, /** The window is a modal dialog box. */ ECORE_X_WINDOW_STATE_MODAL, /** The window is a modal dialog box. */
ECORE_X_WINDOW_STATE_MODAL, /** The window manager should keep the window's position fixed ECORE_X_WINDOW_STATE_STICKY, /** The window manager should keep the window's position fixed
* even if the virtual desktop scrolls. */ * even if the virtual desktop scrolls. */
ECORE_X_WINDOW_STATE_STICKY, /** The window has the maximum vertical size. */ ECORE_X_WINDOW_STATE_MAXIMIZED_VERT, /** The window has the maximum vertical size. */
ECORE_X_WINDOW_STATE_MAXIMIZED_VERT, /** The window has the maximum horizontal size. */ ECORE_X_WINDOW_STATE_MAXIMIZED_HORZ, /** The window has the maximum horizontal size. */
ECORE_X_WINDOW_STATE_MAXIMIZED_HORZ, /** The window is shaded. */ ECORE_X_WINDOW_STATE_SHADED, /** The window is shaded. */
ECORE_X_WINDOW_STATE_SHADED, /** The window should not be included in the taskbar. */ ECORE_X_WINDOW_STATE_SKIP_TASKBAR, /** The window should not be included in the taskbar. */
ECORE_X_WINDOW_STATE_SKIP_TASKBAR, /** The window should not be included in the pager. */ ECORE_X_WINDOW_STATE_SKIP_PAGER, /** The window should not be included in the pager. */
ECORE_X_WINDOW_STATE_SKIP_PAGER, /** The window is invisible (i.e. minimized/iconified) */ ECORE_X_WINDOW_STATE_HIDDEN, /** The window is invisible (i.e. minimized/iconified) */
ECORE_X_WINDOW_STATE_HIDDEN, /** The window should fill the entire screen and have no ECORE_X_WINDOW_STATE_FULLSCREEN, /** The window should fill the entire screen and have no
* window border/decorations */ * window border/decorations */
ECORE_X_WINDOW_STATE_FULLSCREEN, /* The following are not documented because they are not ECORE_X_WINDOW_STATE_ABOVE,
* intended for use in applications. */ ECORE_X_WINDOW_STATE_BELOW,
ECORE_X_WINDOW_STATE_ABOVE, ECORE_X_WINDOW_STATE_BELOW, /* FIXME: Documentation */
ECORE_X_WINDOW_STATE_DEMANDS_ATTENTION ECORE_X_WINDOW_STATE_DEMANDS_ATTENTION
} Ecore_X_Window_State; } Ecore_X_Window_State;