Automatic generation produced by ISE Eiffel

Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:
note description: "Toolbar message (TB_...) constants." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date: 2013-11-19 16:13:35 -0900 (Tue, 19 Nov 2013) $" revision: "$Revision: 93464 $" class interface WEL_TB_CONSTANTS create default_create -- Process instances of classes with no creation clause. -- (Default: do nothing.) -- (from ANY) feature -- Access generating_type: TYPE [detachable WEL_TB_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 Tb_addbitmap: INTEGER_32 = 1043 -- Adds one or more images to the list of button images available -- for a toolbar. Tb_addbuttons: INTEGER_32 = 1044 -- Adds one or more buttons to a toolbar. Tb_addstring: INTEGER_32 = 1101 -- Adds a new string to the toolbar's string pool. -- (ANSI Version) Tb_autosize: INTEGER_32 = 1057 -- Causes a toolbar to be resized. Tb_buttoncount: INTEGER_32 = 1048 -- Retrieves a count of the buttons currently in the toolbar. Tb_buttonstructsize: INTEGER_32 = 1054 -- Specifies the size of the TBBUTTON structure. Tb_changebitmap: INTEGER_32 = 1067 -- Changes the bitmap for a button in a toolbar. Tb_checkbutton: INTEGER_32 = 1026 -- Checks or unchecks a given button in a toolbar. Tb_commandtoindex: INTEGER_32 = 1049 -- Retrieves the zero-based index for the button associated with the -- specified command identifier. Tb_customize: INTEGER_32 = 1051 -- Displays the Customize Toolbar dialog box. Tb_deletebutton: INTEGER_32 = 1046 -- Deletes a button from the toolbar. Tb_enablebutton: INTEGER_32 = 1025 -- Enables or disables the specified button in a toolbar. Tb_getbitmap: INTEGER_32 = 1068 -- Retrieves the index of the bitmap associated with a button -- in a toolbar. Tb_getbitmapflags: INTEGER_32 = 1065 -- Retrieves the flags that describe the type of bitmap to be used. Tb_getbutton: INTEGER_32 = 1047 -- Retrieves information about the specified button in a toolbar. Tb_getbuttontext: INTEGER_32 = 1099 -- Retrieves the display text of a button on a toolbar. Tb_getitemrect: INTEGER_32 = 1053 -- Retrieves the bounding rectangle of a button in a toolbar. Tb_getrows: INTEGER_32 = 1064 -- Retrieves the number of rows of buttons in a toolbar with the -- TBSTYLE_WRAPABLE style. Tb_getstate: INTEGER_32 = 1042 -- Retrieves information about the state of the specified button -- in a toolbar, such as whether it is enabled, pressed, or checked. Tb_gettooltips: INTEGER_32 = 1059 -- Retrieves the handle to the tooltip control, if any, associated -- with the toolbar. Tb_hidebutton: INTEGER_32 = 1028 -- Hides or shows the specified button in a toolbar. Tb_hittest: INTEGER_32 = 1093 -- Determines where a point lies in a toolbar control. Tb_indeterminate: INTEGER_32 = 1029 -- Sets or clears the indeterminate state of the specified button -- in a toolbar. Tb_insertbutton: INTEGER_32 = 1045 -- Inserts a button in a toolbar. Tb_isbuttonchecked: INTEGER_32 = 1034 -- Determines whether the specified button in a toolbar is checked. Tb_isbuttonenabled: INTEGER_32 = 1033 -- Determines whether the specified button in a toolbar is enabled. Tb_isbuttonhidden: INTEGER_32 = 1036 -- Determines whether the specified button in a toolbar is hidden. Tb_isbuttonindeterminate: INTEGER_32 = 1037 -- Determines whether the specified button in a toolbar is indeterminate. Tb_isbuttonpressed: INTEGER_32 = 1035 -- Determines whether the specified button in a toolbar is pressed. Tb_pressbutton: INTEGER_32 = 1027 -- Presses or releases the specified button in a toolbar. Tb_saverestore: INTEGER_32 = 1100 -- Send this message to initiate saving or restoring a toolbar state. Tb_setbitmapsize: INTEGER_32 = 1056 -- Sets the size of the bitmapped images to be added to a toolbar. Tb_setbuttonsize: INTEGER_32 = 1055 -- Sets the size of the buttons to be added to a toolbar. Tb_setcmdid: INTEGER_32 = 1066 -- Sets the command identifier of a toolbar button. Tb_setdrawtextflags: INTEGER_32 = 1094 -- Sets the text drawing flags for the toolbar. Tb_setparent: INTEGER_32 = 1061 -- Sets the window to which the toolbar control sends notification messages. Tb_setrows: INTEGER_32 = 1063 -- Sets the number of rows of buttons in a toolbar. Tb_setstate: INTEGER_32 = 1041 -- Sets the state for the specified button in a toolbar. Tb_settooltips: INTEGER_32 = 1060 -- Associates a tooltip control with a toolbar. 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_TB_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_TB_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_TB_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)) feature -- Duplication copy (other: WEL_TB_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_TB_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_TB_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_TB_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_TB_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_TB_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_TB_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 -- Access Comctl32.dll >= 4.70 (Windows95 + IE4 and above) Tb_getbuttonsize: INTEGER_32 = 1082 -- Retrieves the current width and height of toolbar buttons, in -- pixels. Tb_getdisabledimagelist: INTEGER_32 = 1079 -- Retrieves the image list that a toolbar control uses to display -- disabled buttons. Tb_gethotimagelist: INTEGER_32 = 1077 -- Retrieves the image list that a toolbar control uses to display -- hot buttons. Tb_getimagelist: INTEGER_32 = 1073 -- Retrieves the image list that a toolbar control uses to display -- buttons in their default state. A toolbar control uses this -- image list to display buttons when they are not hot or disabled Tb_getrect: INTEGER_32 = 1075 -- Retrieves the bounding rectangle for a specified toolbar button Tb_getstyle: INTEGER_32 = 1081 -- Retrieves the styles currently in use for a toolbar control. Tb_gettextrows: INTEGER_32 = 1085 -- Retrieves the maximum number of text rows that can be -- displayed on a toolbar button. Tb_loadimages: INTEGER_32 = 1074 -- Loads bitmaps into a toolbar control's image list. Tb_setbuttonwidth: INTEGER_32 = 1083 -- Sets the minimum and maximum button widths in the toolbar -- control. Tb_setdisabledimagelist: INTEGER_32 = 1078 -- Sets the image list that the toolbar control will use to display -- disabled buttons. Tb_sethotimagelist: INTEGER_32 = 1076 -- Sets the image list that the toolbar control will use to -- display hot buttons. Tb_setimagelist: INTEGER_32 = 1072 -- Set the image list that the toolbar will use -- to display buttons that are in their default state. Tb_setindent: INTEGER_32 = 1071 -- Sets the indentation for the first button in a toolbar control Tb_setmaxtextrows: INTEGER_32 = 1084 -- Sets the maximum number of text rows displayed on a toolbar -- button. Tb_setstyle: INTEGER_32 = 1080 -- Sets the style for a toolbar control. feature -- Access Comctl32.dll >= 4.71 (Windows95 + IE4 and above) Tb_getanchorhighlight: INTEGER_32 = 1098 -- Retrieves the anchor highlight setting for a toolbar. Tb_getextendedstyle: INTEGER_32 = 1109 -- Retrieves the extended styles for a toolbar control. Tb_gethotitem: INTEGER_32 = 1095 -- Retrieves the index of the hot item in a toolbar. Tb_getinsertmark: INTEGER_32 = 1103 -- Retrieves the current insertion mark for the toolbar. Tb_getinsertmarkcolor: INTEGER_32 = 1113 -- Retrieves the color used to draw the insertion mark for the toolbar. Tb_getmaxsize: INTEGER_32 = 1107 -- Retrieves the total size of all of the visible buttons and separators in the toolbar. Tb_getobject: INTEGER_32 = 1086 -- Retrieves the IDropTarget for a toolbar control. Tb_getpadding: INTEGER_32 = 1110 -- Retrieves the padding for a toolbar control. Tb_insertmarkhittest: INTEGER_32 = 1105 -- Retrieves the insertion mark information for a point in a toolbar. Tb_movebutton: INTEGER_32 = 1106 -- Moves a button from one index to another. Tb_setanchorhighlight: INTEGER_32 = 1097 -- Sets the anchor highlight setting for a toolbar. Tb_setextendedstyle: INTEGER_32 = 1108 -- Sets the extended styles for a toolbar control. Tb_sethotitem: INTEGER_32 = 1096 -- Sets the hot item in a toolbar. -- This message is ignored for toolbar controls that do not have the -- TBSTYLE_FLAT style. Tb_setinsertmark: INTEGER_32 = 1104 -- Sets the current insertion mark for the toolbar. Tb_setinsertmarkcolor: INTEGER_32 = 1112 -- Sets the color used to draw the insertion mark for the toolbar. Tb_setpadding: INTEGER_32 = 1111 -- Sets the padding for a toolbar control. 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_TB_CONSTANTS
Classes Clusters Cluster hierarchy Chart Relations Flat contracts Go to:

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