- indexing
- title: "Window style (WS) constants. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
- project: "Windows Eiffel Library"
- copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
- cluster: wel
class WEL_WS_CONSTANTS
- inherit
-
WAPI_WINDOW_STYLES
-
- rename
-
ws_overlapped
as b32ws_overlapped,
-
ws_popup
as b32ws_popup,
-
ws_child
as b32ws_child,
-
ws_minimize
as b32ws_minimize,
-
ws_visible
as b32ws_visible,
-
ws_disabled
as b32ws_disabled,
-
ws_clipsiblings
as b32ws_clipsiblings,
-
ws_clipchildren
as b32ws_clipchildren,
-
ws_maximize
as b32ws_maximize,
-
ws_caption
as b32ws_caption,
-
ws_border
as b32ws_border,
-
ws_dlgframe
as b32ws_dlgframe,
-
ws_vscroll
as b32ws_vscroll,
-
ws_hscroll
as b32ws_hscroll,
-
ws_sysmenu
as b32ws_sysmenu,
-
ws_thickframe
as b32ws_thickframe,
-
ws_group
as b32ws_group,
-
ws_tabstop
as b32ws_tabstop,
-
ws_minimizebox
as b32ws_minimizebox,
-
ws_maximizebox
as b32ws_maximizebox,
-
ws_tiled
as b32ws_tiled,
-
ws_iconic
as b32ws_iconic,
-
ws_sizebox
as b32ws_sizebox,
-
ws_tiledwindow
as b32ws_tiledwindow,
-
ws_overlappedwindow
as b32ws_overlappedwindow,
-
ws_popupwindow
as b32ws_popupwindow,
-
ws_childwindow
as b32ws_childwindow,
-
ws_ex_dlgmodalframe
as b32ws_ex_dlgmodalframe,
-
ws_ex_noparentnotify
as b32ws_ex_noparentnotify,
-
ws_ex_topmost
as b32ws_ex_topmost,
-
ws_ex_acceptfiles
as b32ws_ex_acceptfiles,
-
ws_ex_transparent
as b32ws_ex_transparent,
-
ws_ex_clientedge
as b32ws_ex_clientedge
- end
- feature -- Basic window types
-
Ws_overlapped: INTEGER
-
Ws_popup: INTEGER
-
Ws_child: INTEGER
- feature -- Clipping styles
-
Ws_clipsiblings: INTEGER
-
Ws_clipchildren: INTEGER
- feature -- Generic window states
-
Ws_visible: INTEGER
-
Ws_disabled: INTEGER
- feature -- Main window states
-
Ws_minimize: INTEGER
-
Ws_maximize: INTEGER
- feature -- Main window styles
-
Ws_caption: INTEGER
-
Ws_border: INTEGER
-
Ws_dlgframe: INTEGER
-
Ws_vscroll: INTEGER
-
Ws_hscroll: INTEGER
-
Ws_sysmenu: INTEGER
-
Ws_thickframe: INTEGER
-
Ws_minimizebox: INTEGER
-
Ws_maximizebox: INTEGER
- feature -- Control window styles
-
Ws_group: INTEGER
-
Ws_tabstop: INTEGER
- feature -- Common window styles
-
Ws_overlappedwindow: INTEGER
-
Ws_popupwindow: INTEGER
-
Ws_childwindow: INTEGER
- feature -- Extended window styles
-
Ws_ex_dlgmodalframe: INTEGER
-
Ws_ex_noparentnotify: INTEGER
-
Ws_ex_topmost: INTEGER
-
Ws_ex_acceptfiles: INTEGER
-
Ws_ex_transparent: INTEGER
- feature -- Miscellaneous
-
Cw_usedefault: INTEGER
end -- class WEL_WS_CONSTANTS