indexing
	description: "Dialog style (DS) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_DS_CONSTANTS

feature -- Constants

	Ds_absalign: INTEGER is 1
			-- Indicates that the coordinates of the dialog box are screen
			-- coordinates. If this style is not specified, the coordinates
			-- are client coordinates.

	Ds_modalframe: INTEGER is 128
			-- Creates a dialog box with a modal dialog-box frame that can be
			-- combined with a title bar and window menu by specifying the
			-- Ws_caption and Ws_sysmenu styles. (See: WEL_WS_CONSTANTS).

	Ds_noidlemsg: INTEGER is 256
			-- Wm_enteridle message will not be sent.

	Ds_setfont: INTEGER is 64
			-- User specified font for Dlg controls.

	Ds_setforeground: INTEGER is 512
			-- Causes the system to use the SetForegroundWindow function to
			-- bring the dialog box to the foreground. This style is useful
			-- for modal dialog boxes that require immediate attention from
			-- the user regardless of whether the owner window is the
			-- foreground window.
	
invariant

		-- from ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)

end -- class WEL_DS_CONSTANTS