indexing
description: "Facilities for accessing standardized colors."
legal: "See notice at end of class."
status: "See notice at end of class."
keywords: "color, default"
date: "$Date: 2006-01-22 18:25:44 -0800 (Sun, 22 Jan 2006) $"
revision: "$Revision: 56675 $"
class interface
EV_STOCK_COLORS
create
default_create
ANY
feature
black: EV_COLOR
blue: EV_COLOR
color_3d_face: EV_COLOR
EV_STOCK_COLORSColor_dialog
color_3d_highlight: EV_COLOR
color_3d_shadow: EV_COLOR
color_dialog: EV_COLOR
EV_STOCK_COLORSColor_3d_face
color_read_only: EV_COLOR
color_read_write: EV_COLOR
cyan: EV_COLOR
dark_blue: EV_COLOR
dark_cyan: EV_COLOR
dark_gray: EV_COLOR
EV_STOCK_COLORSDark_grey
dark_green: EV_COLOR
dark_grey: EV_COLOR
EV_STOCK_COLORSDark_gray
dark_magenta: EV_COLOR
dark_red: EV_COLOR
dark_yellow: EV_COLOR
default_background_color: EV_COLOR
default_foreground_color: EV_COLOR
generating_type: STRING_8
ANY
generator: STRING_8
ANY
gray: EV_COLOR
EV_STOCK_COLORSGrey
green: EV_COLOR
grey: EV_COLOR
EV_STOCK_COLORSGray
magenta: EV_COLOR
red: EV_COLOR
white: EV_COLOR
yellow: EV_COLOR
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
all_colors: LINKED_LIST [EV_COLOR]
ensure
all_colors_included: Result.count = 18
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
white_not_void: white /= Void
black_not_void: black /= Void
grey_not_void: grey /= Void
gray_not_void: gray /= Void
dark_grey_not_void: dark_grey /= Void
dark_gray_not_void: dark_gray /= Void
blue_not_void: blue /= Void
dark_blue_not_void: dark_blue /= Void
cyan_not_void: cyan /= Void
dark_cyan_not_void: dark_cyan /= Void
green_not_void: green /= Void
dark_green_not_void: dark_green /= Void
yellow_not_void: yellow /= Void
dark_yellow_not_void: dark_yellow /= Void
red_not_void: red /= Void
dark_red_not_void: dark_red /= Void
magenta_not_void: magenta /= Void
dark_magenta_not_void: dark_magenta /= Void
color_dialog_not_void: color_dialog /= Void
color_read_only_not_void: color_read_only /= Void
color_read_write_not_void: color_read_write /= Void
default_background_color_not_void: default_background_color /= Void
default_foreground_color_not_void: default_foreground_color /= Void
all_colors_not_void: all_colors /= Void
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 EV_STOCK_COLORS