indexing
description: "List view message (LVM) constants."
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date: 2006-03-22 23:29:03 -0800 (Wed, 22 Mar 2006) $"
revision: "$Revision: 57641 $"
class interface
WEL_LVM_CONSTANTS
create
default_create
ANY
feature
generating_type: STRING_8
ANY
generator: STRING_8
ANY
lvm_arrange: INTEGER_32 is 4118
lvm_createdragimage: INTEGER_32 is 4129
lvm_deleteallitems: INTEGER_32 is 4105
lvm_deletecolumn: INTEGER_32 is 4124
lvm_deleteitem: INTEGER_32 is 4104
lvm_editlabel: INTEGER_32 is 4214
lvm_ensurevisible: INTEGER_32 is 4115
lvm_finditem: INTEGER_32 is 4179
lvm_getbkcolor: INTEGER_32 is 4096
lvm_getcallbackmask: INTEGER_32 is 4106
lvm_getcolumn: INTEGER_32 is 4191
lvm_getcolumnwidth: INTEGER_32 is 4125
lvm_getcountperpage: INTEGER_32 is 4136
lvm_geteditcontrol: INTEGER_32 is 4120
lvm_getimagelist: INTEGER_32 is 4098
lvm_getisearchstring: INTEGER_32 is 4213
lvm_getitem: INTEGER_32 is 4171
lvm_getitemcount: INTEGER_32 is 4100
lvm_getitemposition: INTEGER_32 is 4112
lvm_getitemrect: INTEGER_32 is 4110
lvm_getitemspacing: INTEGER_32 is 4147
lvm_getitemstate: INTEGER_32 is 4140
lvm_getitemtext: INTEGER_32 is 4211
lvm_getnextitem: INTEGER_32 is 4108
lvm_getorigin: INTEGER_32 is 4137
lvm_getselectedcount: INTEGER_32 is 4146
lvm_getstringwidth: INTEGER_32 is 4183
lvm_gettextbkcolor: INTEGER_32 is 4133
lvm_gettextcolor: INTEGER_32 is 4131
lvm_gettopindex: INTEGER_32 is 4135
lvm_getviewrect: INTEGER_32 is 4130
lvm_hittest: INTEGER_32 is 4114
lvm_insertcolumn: INTEGER_32 is 4193
lvm_insertitem: INTEGER_32 is 4173
lvm_redrawitems: INTEGER_32 is 4117
lvm_scroll: INTEGER_32 is 4116
lvm_setbkcolor: INTEGER_32 is 4097
lvm_setcallbackmask: INTEGER_32 is 4107
lvm_setcolumn: INTEGER_32 is 4192
lvm_setcolumnwidth: INTEGER_32 is 4126
lvm_setimagelist: INTEGER_32 is 4099
lvm_setitem: INTEGER_32 is 4172
lvm_setitemcount: INTEGER_32 is 4143
lvm_setitemposition: INTEGER_32 is 4111
lvm_setitemposition32: INTEGER_32 is 4145
lvm_setitemstate: INTEGER_32 is 4139
lvm_setitemtext: INTEGER_32 is 4212
lvm_settextbkcolor: INTEGER_32 is 4134
lvm_settextcolor: INTEGER_32 is 4132
lvm_sortitems: INTEGER_32 is 4144
lvm_update: INTEGER_32 is 4138
feature
frozen deep_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
shallow_implies_deep: standard_equal (some, other) implies Result
both_or_none_void: (some = Void) implies (Result = (other = Void))
same_type: (Result and (some /= Void)) implies some.same_type (other)
symmetric: Result implies deep_equal (other, some)
frozen equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.is_equal (other))
is_equal (other: like Current): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
symmetric: Result implies other.is_equal (Current)
consistent: standard_is_equal (other) implies Result
frozen standard_equal (some: ANY; other: like arg #1): BOOLEAN
`some'`other'
ANY
ensure ANY
definition: Result = (some = Void and other = Void) or else ((some /= Void and other /= Void) and then some.standard_is_equal (other))
frozen standard_is_equal (other: like Current): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
same_type: Result implies same_type (other)
symmetric: Result implies other.standard_is_equal (Current)
feature
conforms_to (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
same_type (other: ANY): BOOLEAN
`other'
ANY
require ANY
other_not_void: other /= Void
ensure ANY
definition: Result = (conforms_to (other) and other.conforms_to (Current))
feature
copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_equal: is_equal (other)
frozen deep_copy (other: like Current)
copy`other'deep_twin
ANY
require ANY
other_not_void: other /= Void
ensure ANY
deep_equal: deep_equal (Current, other)
frozen deep_twin: like Current
ANY
ensure ANY
deep_equal: deep_equal (Current, Result)
frozen standard_copy (other: like Current)
`other'
ANY
require ANY
other_not_void: other /= Void
type_identity: same_type (other)
ensure ANY
is_standard_equal: standard_is_equal (other)
frozen standard_twin: like Current
`other'
ANY
ensure ANY
standard_twin_not_void: Result /= Void
equal: standard_equal (Result, Current)
frozen twin: like Current
`Current'
twincopycopy
ANY
ensure ANY
twin_not_void: Result /= Void
is_equal: Result.is_equal (Current)
feature
frozen default: like Current
ANY
frozen default_pointer: POINTER
`POINTER'
`p'default
`p'`POINTER'
ANY
default_rescue
ANY
frozen do_nothing
ANY
feature
io: STD_FILES
ANY
out: STRING_8
ANYtagged_out
ANY
print (some: ANY)
`some'
ANY
frozen tagged_out: STRING_8
ANYout
ANY
feature
operating_environment: OPERATING_ENVIRONMENT
ANY
invariant
ANY
reflexive_equality: standard_is_equal (Current)
reflexive_conformance: conforms_to (Current)
indexing
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 WEL_LVM_CONSTANTS