ecore-wl2: Add more window types to Window Type enum

Small patch which adds more window types to the Window Type enum.
These window types may be used by various compositors in different
ways. This patch does not add or change any functionality, it just
extends the window type enum to include the ability to specify other
types of windows.

'#divergence'

@feature

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2017-06-27 11:14:26 -04:00
parent 2f7f232582
commit 84788fdf6a
1 changed files with 5 additions and 0 deletions

View File

@ -323,6 +323,11 @@ typedef enum _Ecore_Wl2_Window_Type
ECORE_WL2_WINDOW_TYPE_MENU,
ECORE_WL2_WINDOW_TYPE_DND,
ECORE_WL2_WINDOW_TYPE_CUSTOM,
ECORE_WL2_WINDOW_TYPE_NOTIFICATION, /** @since 1.20 */
ECORE_WL2_WINDOW_TYPE_UTILITY, /** @since 1.20 */
ECORE_WL2_WINDOW_TYPE_DIALOG, /** @since 1.20 */
ECORE_WL2_WINDOW_TYPE_DOCK, /** @since 1.20 */
ECORE_WL2_WINDOW_TYPE_SPLASH, /** @since 1.20 */
ECORE_WL2_WINDOW_TYPE_LAST
} Ecore_Wl2_Window_Type;