Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Window drawing constants (DT_xxxx, DI_xxxx, ...)" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2013-11-19 16:34:28 -0900 (Tue, 19 Nov 2013) $" revision: "$Revision: 93466 $" class interface WEL_DRAWING_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access generating_type: TYPE [detachable WEL_DRAWING_CONSTANTS] -- Type of current object -- (type of which it is a direct instance) -- (from ANY) ensure -- from ANY generating_type_not_void: Result /= Void generator: STRING_8 -- Name of current object's generating class -- (base class of the type of which it is a direct instance) -- (from ANY) ensure -- from ANY generator_not_void: Result /= Void generator_not_empty: not Result.is_empty feature -- Comparison frozen deep_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void -- or attached to isomorphic object structures? -- (from ANY) ensure -- from ANY instance_free: class shallow_implies_deep: standard_equal (a, b) implies Result both_or_none_void: (a = Void) implies (Result = (b = Void)) same_type: (Result and (a /= Void)) implies (b /= Void and then a.same_type (b)) symmetric: Result implies deep_equal (b, a) frozen equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached -- to objects considered equal? -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.is_equal (b)) frozen is_deep_equal alias "≡≡≡" (other: WEL_DRAWING_CONSTANTS): BOOLEAN -- Are Current and other attached to isomorphic object structures? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY shallow_implies_deep: standard_is_equal (other) implies Result same_type: Result implies same_type (other) symmetric: Result implies other.is_deep_equal (Current) is_equal (other: WEL_DRAWING_CONSTANTS): BOOLEAN -- Is other attached to an object considered -- equal to current object? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY symmetric: Result implies other ~ Current consistent: standard_is_equal (other) implies Result frozen standard_equal (a: detachable ANY; b: like arg #1): BOOLEAN -- Are a and b either both void or attached to -- field-by-field identical objects of the same type? -- Always uses default object comparison criterion. -- (from ANY) ensure -- from ANY instance_free: class definition: Result = (a = Void and b = Void) or else ((a /= Void and b /= Void) and then a.standard_is_equal (b)) frozen standard_is_equal alias "" (other: WEL_DRAWING_CONSTANTS): BOOLEAN -- Is other attached to an object of the same type -- as current object, and field-by-field identical to it? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY same_type: Result implies same_type (other) symmetric: Result implies other.standard_is_equal (Current) feature -- Status report conforms_to (other: ANY): BOOLEAN -- Does type of current object conform to type -- of other (as per Eiffel: The Language, chapter 13)? -- (from ANY) require -- from ANY other_not_void: other /= Void same_type (other: ANY): BOOLEAN -- Is type of current object identical to type of other? -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY definition: Result = (conforms_to (other) and other.conforms_to (Current)) valid_rop2_constant (c: INTEGER_32): BOOLEAN -- Is c a valid rop2 constant? feature -- Duplication copy (other: WEL_DRAWING_CONSTANTS) -- Update current object using fields of object attached -- to other, so as to yield equal objects. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_equal: Current ~ other frozen deep_copy (other: WEL_DRAWING_CONSTANTS) -- Effect equivalent to that of: -- `copy` (other . `deep_twin`) -- (from ANY) require -- from ANY other_not_void: other /= Void ensure -- from ANY deep_equal: deep_equal (Current, other) frozen deep_twin: WEL_DRAWING_CONSTANTS -- New object structure recursively duplicated from Current. -- (from ANY) ensure -- from ANY deep_twin_not_void: Result /= Void deep_equal: deep_equal (Current, Result) frozen standard_copy (other: WEL_DRAWING_CONSTANTS) -- Copy every field of other onto corresponding field -- of current object. -- (from ANY) require -- from ANY other_not_void: other /= Void type_identity: same_type (other) ensure -- from ANY is_standard_equal: standard_is_equal (other) frozen standard_twin: WEL_DRAWING_CONSTANTS -- New object field-by-field identical to other. -- Always uses default copying semantics. -- (from ANY) ensure -- from ANY standard_twin_not_void: Result /= Void equal: standard_equal (Result, Current) frozen twin: WEL_DRAWING_CONSTANTS -- New object equal to Current -- `twin` calls `copy`; to change copying/twinning semantics, redefine `copy`. -- (from ANY) ensure -- from ANY twin_not_void: Result /= Void is_equal: Result ~ Current feature -- Basic operations frozen default: detachable WEL_DRAWING_CONSTANTS -- Default value of object's type -- (from ANY) frozen default_pointer: POINTER -- Default value of type POINTER -- (Avoid the need to write p.`default` for -- some p of type POINTER.) -- (from ANY) ensure -- from ANY instance_free: class default_rescue -- Process exception for routines with no Rescue clause. -- (Default: do nothing.) -- (from ANY) frozen do_nothing -- Execute a null action. -- (from ANY) ensure -- from ANY instance_free: class feature -- BitBlt and MaskBlt constants Blackness: INTEGER_32 = 66 -- Declared in Windows as BLACKNESS Dstinvert: INTEGER_32 = 5570569 -- Declared in Windows as DSTINVERT Maskpaint: INTEGER_32 = 2229030 -- 0x220326 Mergecopy: INTEGER_32 = 12583114 -- Declared in Windows as MERGECOPY Mergepaint: INTEGER_32 = 12255782 -- Declared in Windows as MERGEPAINT Notsrccopy: INTEGER_32 = 3342344 -- Declared in Windows as NOTSRCCOPY Notsrcerase: INTEGER_32 = 1114278 -- Declared in Windows as NOTSRCERASE Patcopy: INTEGER_32 = 15728673 -- Declared in Windows as PATCOPY Patinvert: INTEGER_32 = 5898313 -- Declared in Windows as PATINVERT Patpaint: INTEGER_32 = 16452105 -- Declared in Windows as PATPAINT R2_black: INTEGER_32 = 1 R2_copypen: INTEGER_32 = 13 R2_masknotpen: INTEGER_32 = 3 R2_maskpen: INTEGER_32 = 9 R2_maskpennot: INTEGER_32 = 5 R2_mergenotpen: INTEGER_32 = 12 R2_mergepen: INTEGER_32 = 15 R2_mergepennot: INTEGER_32 = 14 R2_nop: INTEGER_32 = 11 R2_not: INTEGER_32 = 6 R2_notcopypen: INTEGER_32 = 4 R2_notmaskpen: INTEGER_32 = 8 R2_notmergepen: INTEGER_32 = 2 R2_notxorpen: INTEGER_32 = 10 R2_white: INTEGER_32 = 16 R2_xorpen: INTEGER_32 = 7 Srcand: INTEGER_32 = 8913094 -- Declared in Windows as SRCAND Srccopy: INTEGER_32 = 13369376 -- Declared in Windows as SRCCOPY Srcerase: INTEGER_32 = 4457256 -- Declared in Windows as SRCERASE Srcinvert: INTEGER_32 = 6684742 -- Declared in Windows as SRCINVERT Srcpaint: INTEGER_32 = 15597702 -- Declared in Windows as SRCPAINT Whiteness: INTEGER_32 = 16711778 -- Declared in Windows as WHITENESS feature -- DrawEdge constants (BDR_xxxx, EDGE_xxxx, BF_xxxx) Bdr_raisedinner: INTEGER_32 = 4 -- Declared in Windows as BDR_RAISEDINNER Bdr_raisedouter: INTEGER_32 = 1 -- Declared in Windows as BDR_RAISEDOUTER Bdr_sunkeninner: INTEGER_32 = 8 -- Declared in Windows as BDR_SUNKENINNER Bdr_sunkenouter: INTEGER_32 = 2 -- Declared in Windows as BDR_SUNKENOUTER Bf_adjust: INTEGER_32 = 8192 -- Declared in Windows as BF_ADJUST Bf_bottom: INTEGER_32 = 8 -- Declared in Windows as BF_BOTTOM Bf_bottomleft: INTEGER_32 = 9 -- Declared in Windows as BF_BOTTOMLEFT Bf_bottomright: INTEGER_32 = 12 -- Declared in Windows as BF_BOTTOMRIGHT Bf_diagonal: INTEGER_32 = 16 -- Declared in Windows as BF_DIAGONAL Bf_diagonal_endbottomleft: INTEGER_32 = 25 -- Declared in Windows as BF_DIAGONAL_ENDBOTTOMLEFT Bf_diagonal_endbottomright: INTEGER_32 = 28 -- Declared in Windows as BF_DIAGONAL_ENDBOTTOMRIGHT Bf_diagonal_endtopleft: INTEGER_32 = 19 -- Declared in Windows as BF_DIAGONAL_ENDTOPLEFT Bf_diagonal_endtopright: INTEGER_32 = 22 -- Declared in Windows as BF_DIAGONAL_ENDTOPRIGHT Bf_flat: INTEGER_32 = 16384 -- Declared in Windows as BF_FLAT Bf_left: INTEGER_32 = 1 -- Declared in Windows as BF_LEFT Bf_middle: INTEGER_32 = 2048 -- Declared in Windows as BF_MIDDLE Bf_mono: INTEGER_32 = 32768 -- Declared in Windows as BF_MONO Bf_rect: INTEGER_32 = 15 -- Declared in Windows as BF_RECT Bf_right: INTEGER_32 = 4 -- Declared in Windows as BF_RIGHT Bf_soft: INTEGER_32 = 4096 -- Declared in Windows as BF_SOFT Bf_top: INTEGER_32 = 2 -- Declared in Windows as BF_TOP Bf_topleft: INTEGER_32 = 3 -- Declared in Windows as BF_TOPLEFT Bf_topright: INTEGER_32 = 6 -- Declared in Windows as BF_TOPRIGHT Edge_bump: INTEGER_32 = 9 -- Declared in Windows as EDGE_BUMP -- Equivalent to `bdr_sunkeninner` | `bdr_raisedouter` Edge_etched: INTEGER_32 = 6 -- Declared in Windows as EDGE_ETCHED -- Equivalent to `bdr_sunkenouter` | `bdr_raisedinner` Edge_raised: INTEGER_32 = 5 -- Declared in Windows as EDGE_RAISED -- Equivalent to `bdr_raisedouter` | `bdr_raisedinner` Edge_sunken: INTEGER_32 = 10 -- Declared in Windows as EDGE_SUNKEN -- Equivalent to `bdr_sunkeninner` | `bdr_sunkenouter` feature -- DrawFrameControl constants (DFC_xxxx, DFCS_xxxx) Dfc_button: INTEGER_32 = 4 -- Declared in Windows as DFC_BUTTON Dfc_caption: INTEGER_32 = 1 -- Declared in Windows as DFC_CAPTION Dfc_menu: INTEGER_32 = 2 -- Declared in Windows as DFC_MENU Dfc_popupmenu: INTEGER_32 = 5 -- Declared in Windows as DFC_POPUPMENU Dfc_scroll: INTEGER_32 = 3 -- Declared in Windows as DFC_SCROLL Dfcs_adjustrect: INTEGER_32 = 8192 -- Declared in Windows as DFCS_ADJUSTRECT Dfcs_button3state: INTEGER_32 = 8 -- Declared in Windows as DFCS_BUTTON3STATE Dfcs_buttoncheck: INTEGER_32 = 0 -- Declared in Windows as DFCS_BUTTONCHECK Dfcs_buttonpush: INTEGER_32 = 16 -- Declared in Windows as DFCS_BUTTONPUSH Dfcs_buttonradio: INTEGER_32 = 4 -- Declared in Windows as DFCS_BUTTONRADIO Dfcs_buttonradioimage: INTEGER_32 = 1 -- Declared in Windows as DFCS_BUTTONRADIOIMAGE Dfcs_buttonradiomask: INTEGER_32 = 2 -- Declared in Windows as DFCS_BUTTONRADIOMASK Dfcs_captionclose: INTEGER_32 = 0 -- Declared in Windows as DFCS_CAPTIONCLOSE Dfcs_captionhelp: INTEGER_32 = 4 -- Declared in Windows as DFCS_CAPTIONHELP Dfcs_captionmax: INTEGER_32 = 2 -- Declared in Windows as DFCS_CAPTIONMAX Dfcs_captionmin: INTEGER_32 = 1 -- Declared in Windows as DFCS_CAPTIONMIN Dfcs_captionrestore: INTEGER_32 = 3 -- Declared in Windows as DFCS_CAPTIONRESTORE Dfcs_checked: INTEGER_32 = 1024 -- Declared in Windows as DFCS_CHECKED Dfcs_flat: INTEGER_32 = 16384 -- Declared in Windows as DFCS_FLAT Dfcs_hot: INTEGER_32 = 4096 -- Declared in Windows as DFCS_HOT Dfcs_inactive: INTEGER_32 = 256 -- Declared in Windows as DFCS_INACTIVE Dfcs_menuarrow: INTEGER_32 = 0 -- Declared in Windows as DFCS_MENUARROW Dfcs_menuarrowright: INTEGER_32 = 4 -- Declared in Windows as DFCS_MENUARROWRIGHT Dfcs_menubullet: INTEGER_32 = 2 -- Declared in Windows as DFCS_MENUBULLET Dfcs_menucheck: INTEGER_32 = 1 -- Declared in Windows as DFCS_MENUCHECK Dfcs_mono: INTEGER_32 = 32768 -- Declared in Windows as DFCS_MONO Dfcs_pushed: INTEGER_32 = 512 -- Declared in Windows as DFCS_PUSHED Dfcs_scrollcombobox: INTEGER_32 = 5 -- Declared in Windows as DFCS_SCROLLCOMBOBOX Dfcs_scrolldown: INTEGER_32 = 1 -- Declared in Windows as DFCS_SCROLLDOWN Dfcs_scrollleft: INTEGER_32 = 2 -- Declared in Windows as DFCS_SCROLLLEFT Dfcs_scrollright: INTEGER_32 = 3 -- Declared in Windows as DFCS_SCROLLRIGHT Dfcs_scrollsizegrip: INTEGER_32 = 8 -- Declared in Windows as DFCS_SCROLLSIZEGRIP Dfcs_scrollsizegripright: INTEGER_32 = 16 -- Declared in Windows as DFCS_SCROLLSIZEGRIPRIGHT Dfcs_scrollup: INTEGER_32 = 0 -- Declared in Windows as DFCS_SCROLLUP Dfcs_transparent: INTEGER_32 = 2048 -- Declared in Windows as DFCS_TRANSPARENT feature -- DrawImage constants (DI_xxxx) Di_compat: INTEGER_32 = 4 -- Declared in Windows as DI_COMPAT Di_defaultsize: INTEGER_32 = 8 -- Declared in Windows as DI_DEFAULTSIZE Di_image: INTEGER_32 = 2 -- Declared in Windows as DI_IMAGE Di_mask: INTEGER_32 = 1 -- Declared in Windows as DI_MASK Di_normal: INTEGER_32 = 3 -- Declared in Windows as DI_NORMAL feature -- DrawState constants (DSS_xxxx, DST_xxxx) Dss_disabled: INTEGER_32 = 32 -- Declared in Windows as DSS_DISABLED Dss_hideprefix: INTEGER_32 = 512 -- Declared in Windows as DSS_HIDEPREFIX Dss_mono: INTEGER_32 = 128 -- Declared in Windows as DSS_MONO Dss_normal: INTEGER_32 = 0 -- Declared in Windows as DSS_NORMAL Dss_prefixonly: INTEGER_32 = 1024 -- Declared in Windows as DSS_PREFIXONLY Dss_right: INTEGER_32 = 32768 -- Declared in Windows as DSS_RIGHT Dss_union: INTEGER_32 = 16 -- Declared in Windows as DSS_UNION Dst_bitmap: INTEGER_32 = 4 -- Declared in Windows as DST_BITMAP Dst_complex: INTEGER_32 = 0 -- Declared in Windows as DST_COMPLEX Dst_icon: INTEGER_32 = 3 -- Declared in Windows as DST_ICON Dst_prefixtext: INTEGER_32 = 2 -- Declared in Windows as DST_PREFIXTEXT Dst_text: INTEGER_32 = 1 -- Declared in Windows as DST_TEXT feature -- DrawText constants (DT_xxxx) Dt_bottom: INTEGER_32 = 8 -- Declared in Windows as DT_BOTTOM Dt_calcrect: INTEGER_32 = 1024 -- Declared in Windows as DT_CALCRECT Dt_center: INTEGER_32 = 1 -- Declared in Windows as DT_CENTER Dt_expandtabs: INTEGER_32 = 64 -- Declared in Windows as DT_EXPANDTABS Dt_externalleading: INTEGER_32 = 512 -- Declared in Windows as DT_EXTERNALLEADING Dt_hideprefix: INTEGER_32 = 1048576 -- Declared in Windows as DT_HIDEPREFIX Dt_internal: INTEGER_32 = 4096 -- Declared in Windows as DT_INTERNAL Dt_left: INTEGER_32 = 0 -- Declared in Windows as DT_LEFT Dt_noclip: INTEGER_32 = 256 -- Declared in Windows as DT_NOCLIP Dt_noprefix: INTEGER_32 = 2048 -- Declared in Windows as DT_NOPREFIX Dt_right: INTEGER_32 = 2 -- Declared in Windows as DT_RIGHT Dt_singleline: INTEGER_32 = 32 -- Declared in Windows as DT_SINGLELINE Dt_tabstop: INTEGER_32 = 128 -- Declared in Windows as DT_TABSTOP Dt_top: INTEGER_32 = 0 -- Declared in Windows as DT_TOP Dt_vcenter: INTEGER_32 = 4 -- Declared in Windows as DT_VCENTER Dt_wordbreak: INTEGER_32 = 16 -- Declared in Windows as DT_WORDBREAK feature -- MaskBlt only constants maskcopy: INTEGER_32 feature -- Output Io: STD_FILES -- Handle to standard file setup -- (from ANY) ensure -- from ANY instance_free: class io_not_void: Result /= Void out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY out_not_void: Result /= Void print (o: detachable ANY) -- Write terse external representation of o -- on standard output. -- (from ANY) ensure -- from ANY instance_free: class frozen tagged_out: STRING_8 -- New string containing terse printable representation -- of current object -- (from ANY) ensure -- from ANY tagged_out_not_void: Result /= Void feature -- Platform Operating_environment: OPERATING_ENVIRONMENT -- Objects available from the operating system -- (from ANY) ensure -- from ANY instance_free: class operating_environment_not_void: Result /= Void invariant -- from ANY reflexive_equality: standard_is_equal (Current) reflexive_conformance: conforms_to (Current) note copyright: "Copyright (c) 1984-2006, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class WEL_DRAWING_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

-- Generated by Eiffel Studio --
For more details: eiffel.org