indexing
description: "[
Objects that provide access to constants for RTF documents and formatting.
]"
legal: "See notice at end of class."
status: "See notice at end of class."
date: "$Date: 2006-04-06 13:03:10 -0700 (Thu, 06 Apr 2006) $"
revision: "$Revision: 58063 $"
class interface
EV_RICH_TEXT_CONSTANTS_I
create
default_create
ANY
feature
color_table_start: STRING_32
ensure
not_void: Result /= Void
default_font: STRING_32
ensure
not_void: Result /= Void
font_table_start: STRING_32
ensure
not_void: Result /= Void
generating_type: STRING_8
ANY
generator: STRING_8
ANY
rtf_backslash: STRING_32
ensure
not_void: Result /= Void
rtf_blue: STRING_32
ensure
not_void: Result /= Void
rtf_bold_string: STRING_32
ensure
not_void: Result /= Void
rtf_charset: STRING_32
ensure
not_void: Result /= Void
rtf_close_brace: STRING_32
ensure
not_void: Result /= Void
rtf_close_brace_character: CHARACTER_8 is '}'
rtf_color_string: STRING_32
ensure
not_void: Result /= Void
rtf_colortbl: STRING_32
ensure
not_void: Result /= Void
rtf_control_character: CHARACTER_8 is '\'
rtf_family_modern: STRING_32
ensure
not_void: Result /= Void
rtf_family_modern_int: INTEGER_32 is 5
rtf_family_nill: STRING_32
ensure
not_void: Result /= Void
rtf_family_nill_int: INTEGER_32 is 6
rtf_family_roman: STRING_32
ensure
not_void: Result /= Void
rtf_family_roman_int: INTEGER_32 is 2
rtf_family_script: STRING_32
ensure
not_void: Result /= Void
rtf_family_script_int: INTEGER_32 is 4
rtf_family_swiss: STRING_32
ensure
not_void: Result /= Void
rtf_family_swiss_int: INTEGER_32 is 3
rtf_family_tech: STRING_32
ensure
not_void: Result /= Void
rtf_family_tech_int: INTEGER_32 is 1
rtf_font_charset: STRING_32
ensure
not_void: Result /= Void
rtf_font_size_string: STRING_32
ensure
not_void: Result /= Void
rtf_font_string: STRING_32
ensure
not_void: Result /= Void
rtf_fonttable: STRING_32
ensure
not_void: Result /= Void
rtf_green: STRING_32
ensure
not_void: Result /= Void
rtf_highlight_string: STRING_32
ensure
not_void: Result /= Void
rtf_info: STRING_32
ensure
not_void: Result /= Void
rtf_italic_string: STRING_32
ensure
not_void: Result /= Void
rtf_new_paragraph: STRING_32
ensure
not_void: Result /= Void
rtf_newline: STRING_32
ensure
not_void: Result /= Void
rtf_open_brace: STRING_32
ensure
not_void: Result /= Void
rtf_open_brace_character: CHARACTER_8 is '{'
rtf_paragraph_center_aligned: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_justified: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_left_aligned: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_left_indent: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_right_aligned: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_right_indent: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_space_after: STRING_32
ensure
not_void: Result /= Void
rtf_paragraph_space_before: STRING_32
ensure
not_void: Result /= Void
rtf_red: STRING_32
ensure
not_void: Result /= Void
rtf_strikeout_string: STRING_32
ensure
not_void: Result /= Void
rtf_stylesheet: STRING_32
ensure
not_void: Result /= Void
rtf_underline_none_string: STRING_32
ensure
not_void: Result /= Void
rtf_underline_string: STRING_32
ensure
not_void: Result /= Void
rtf_unicode_character: STRING_32
ensure
not_void: Result /= Void
rtf_unicode_string: STRING_32
ensure
not_void: Result /= Void
rtf_user_props: STRING_32
ensure
not_void: Result /= Void
rtf_vertical_offset: STRING_32
ensure
not_void: Result /= Void
space_string: STRING_32
ensure
not_void: Result /= Void
view_text: STRING_32
ensure
not_void: Result /= Void
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 EV_RICH_TEXT_CONSTANTS_I