indexing description: "Objects that provide access to constants used in EiffelBuild." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" deferred class GB_CONSTANTS inherit ANY feature -- Access Gb_display_window_title: STRING is "Display window" -- Title to be displayed in GB_DISPLAY_WINDOW. Gb_builder_window_title: STRING is "Builder window" -- Title to be displayed in GB_BUILDER_WINDOW. Gb_object_editor_window_title: STRING is "Object editor" -- Title to be displayed in GB_OBJECT_EDITOR. Product_name: STRING is "EiffelBuild" -- Name of system displayed to users. Class_argument: STRING is "class" -- Command line argument to start as class only. feature -- Menu texts. Gb_file_menu_text: STRING is "&File" -- Text of file menu. Gb_file_exit_menu_text: STRING is "&Exit" Gb_help_about_menu_text: STRING is "&About..." Gb_help_tip_of_day_menu_text: STRING is "Tip of the Day..." Gb_help_menu_text: STRING is "&Help" Gb_project_menu_text: STRING is "Project" Gb_project_menu_build_text: STRING is "Build" Gb_project_menu_settings_text: STRING is "&Settings" Gb_view_menu_text: STRING is "&View" Gb_view_preferences_text: STRING is "Preferences" Gb_view_tools_text: STRING is "Tools" Show_hide_component_viewer_menu_text: STRING is "Component viewer" Show_hide_builder_window_menu_text: STRING is "Builder window" Show_hide_display_window_menu_text: STRING is "Display window" Show_hide_history_window_menu_text: STRING is "History window" Show_hide_constants_window_menu_text: STRING is "Constants" Show_tool_windows_modeless_text: STRING is "Tools always on top?%TCtrl+T" feature -- String representations of class names. Gb_parent_object_class_name: STRING is "GB_PARENT_OBJECT" Gb_primitive_object_class_name: STRING is "GB_PRIMITIVE_OBJECT" Gb_cell_object_class_name: STRING is "GB_CELL_OBJECT" Gb_container_object_class_name: STRING is "GB_CONTAINER_OBJECT" Ev_window_string: STRING is "EV_WINDOW" Ev_titled_window_string: STRING is "EV_TITLED_WINDOW" Ev_dialog_string: STRING is "EV_DIALOG" Ev_menu_bar_string: STRING is "EV_MENU_BAR" menu_bar_string: STRING is "MENU_BAR" Ev_widget_string: STRING is "EV_WIDGET" Ev_cell_string: STRING is "EV_CELL" Ev_primitive_string: STRING is "EV_PRIMITIVE" Ev_tool_bar_string: STRING is "EV_TOOL_BAR" Ev_menu_string: STRING is "EV_MENU" Ev_menu_item_string: STRING is "EV_MENU_ITEM" Ev_tree_item_string: STRING is "EV_TREE_ITEM" Ev_container_string: STRING is "EV_CONTAINER" Ev_widget_list_string: STRING is "EV_WIDGET_LIST" Ev_notebook_string: STRING is "EV_NOTEBOOK" Ev_table_string: STRING is "EV_TABLE" Ev_split_area_string: STRING is "EV_SPLIT_AREA" Ev_list_string: STRING is "EV_LIST" Ev_combo_box_string: STRING is "EV_COMBO_BOX" Ev_tree_string: STRING is "EV_TREE" Ev_item_string: STRING is "EV_ITEM" Ev_tool_bar_item_string: STRING is "EV_TOOL_BAR_ITEM" Ev_list_item_string: STRING is "EV_LIST_ITEM" Ev_spin_button_string: STRING is "EV_SPIN_BUTTON" gb_ev_container: STRING is "GB_EV_CONTAINER" feature -- GB_EV_FIXED select_widget_prompt: STRING is "Please select desired widget." resize_widget_prompt: STRING is "Highlighted widget is positionable" widget_size_prompt: STRING is "Widget is 0x0 pixels, click HERE to enlarge." feature -- Default values Minimum_width_of_object_editor: INTEGER is 165 -- The minimum width allowed for a GB_OBJECT_EDITOR Default_floating_object_editor_height: INTEGER is 500 -- The default height of a newly created floating object editor window. Default_window_dimension: INTEGER is 125 -- Default sizes of builder and display window when displayed. Default_width_of_type_selector: INTEGER is 180 -- The default width of the type selector. Default_height_of_type_selector: INTEGER is 250 -- The default_height of the type selector. Spacing_to_holder_tool_bar: INTEGER is 8 -- The distance between a tool holders label and any associated tool bar. Tool_minimum_height: INTEGER is 50 -- The minimum height of each main tool. feature -- Generation constants class_name_tag: STRING is -- `Result' is tag used in templates -- for the class name. once Result := "" end constant_resetting_tag: STRING is -- `Result' is tag used in templates -- for resetting of constant values. once Result := "" end inherited_class_name_tag: STRING is -- `Result' is tag used in templates -- for the inherited class name. once Result := "" end create_tag: STRING is -- `Result' is tag used in templates -- for the creation of widgets. once Result := "" end build_tag: STRING is -- `Result' is tag used in templates -- for building of the widget heirarchy. once Result := "" end set_tag: STRING is -- `Result' is tag used in templates -- for the setting of widgets properties. once Result := "" end local_tag: STRING is -- `Result' is tag used in templates -- for local definitions. once Result := "" end constants_tag: STRING is -- `Result' is tag used in templated -- for the constants declaration. once Result := "" end main_window_tag: STRING is -- `Result' is tag used in templates -- for the main window declaration. once Result := "" end project_location_tag: STRING is -- `Result' is tag used in ace templates -- for the project location. once Result := "" end event_connection_tag: STRING is -- `Result' is tag used in templates -- for the event connection declarations. once Result := "" end event_declaration_tag: STRING is -- `Result' is tag used in templates -- for the event declarations. once Result := "" end attribute_tag: STRING is -- `Result' is tag used in templates -- for the attribute declarations. once Result := "" end application_tag: STRING is -- `Result' is tag used in templates for -- the application declaration. once Result := "" end project_name_tag: STRING is -- once Result := "" end inheritance_tag: STRING is -- `Result' is tag used in templates -- for the inheritance. once Result := "" end precursor_tag: STRING is -- `Result' is tag used in tamples -- for precursor. once Result := "" end creation_tag: STRING is --`Result' is tag used in templates -- for creation. once Result := "" end custom_feature_tag: STRING is -- `Result' is tag used in templates for custom features. once Result := "" end clr_version_tag: STRING is -- Used in templates as clr setting. once Result := "" end indent: STRING is -- String representing standard indent -- for code generation. once Result := indent_less_one + "%T" end indent_less_one: STRING is -- String representing an indent one -- tabs less than `indent'. once Result := indent_less_two + "%T" end indent_less_two: STRING is -- String representing an indent two -- tabs less than `indent'. once Result := "%N%T" end Local_object_name_prepend_string: STRING is "l_" -- generated local variables are of the form -- `Result' + short type + number. -- i.e. l_button1 pixmap_name: STRING is "internal_pixmap" -- Name of temporary pixmap used during generation -- of pixmap setting code. class_implementation_extension: STRING is "_IMP" -- Extension to be added to generated class name, -- for the implementation class. connect_events_comment: STRING is -- Comment to be inserted into generated code before -- the event connections are declared. once Result := indent + "%T-- Connect events." end build_widgets_comment: STRING is -- Comment to be inserted into generated code before -- the widgets are parented. once Result := indent + "%T-- Build widget structure." end create_widgets_comment: STRING is -- Comment to be inserted into generated code before -- the widgets are created. once Result := indent + "%T-- Create all widgets." end set_widgets_comment: STRING is -- Comment to be inserted into generated code before the -- widgets attributes are set. once Result := indent + "%T-- Initialize properties of all widgets." end merged_groups_string: STRING is "merged_radio_button_groups" redefined_window_creation: STRING is --Definition of `make_with_window' and `default_create' to be used in window implementation when -- we are a client of the window, and not inheriting it. once Result := "create" + indent_less_two + "default_create," + indent_less_two + "make_with_window%N%N" + "feature {NONE} -- Initialization%N" + indent_less_two + "make_with_window (a_window: "+ Ev_titled_window_string + ") is" + indent + "-- Create `Current' in `a_window'." + indent_less_one + "require" + indent + "window_not_void: a_window /= Void" + indent + "window_empty: a_window.is_empty" + indent + "no_menu_bar: a_window.menu_bar = Void" + indent_less_one + "do" + indent + "window := a_window" + indent + "initialize" + indent_less_one + "ensure" + indent + "window_set: window = a_window" + indent + "window_not_void: window /= Void" + indent_less_one + "end%N" + indent_less_two + "default_create is" + indent + " -- Create `Current'." + indent_less_one + "do" + indent + "create window" + indent + "initialize" + indent_less_one + "ensure then" + indent + "window_not_void: window /= Void" + indent_less_one + "end" end redefined_creation: STRING is --Definition of `make_with_window' and `default_create' to be used in window implementation when -- we are a client of the window, and not inheriting it. once Result := "create" + indent_less_two + "default_create," + indent_less_two + "make_with_widget%N%N" + "feature {NONE} -- Initialization%N" + indent_less_two + "make_with_widget (a_widget: "+ Ev_titled_window_string + ") is" + indent + "-- Create `Current' in `a_widget'." + indent_less_one + "require" + indent + "widget_not_void: a_widget /= Void" + indent_less_one + "do" + indent + "widget := a_widget" + indent + "initialize" + indent_less_one + "ensure" + indent + "widget_set: widget = a_widget" + indent + "widget_not_void: widget /= Void" + indent_less_one + "end%N" + indent_less_two + "default_create is" + indent + " -- Create `Current'." + indent_less_one + "do" + indent + "create widget" + indent + "initialize" + indent_less_one + "ensure then" + indent + "widget_not_void: widget /= Void" + indent_less_one + "end" end default_create_redefinition: STRING is -- Redefinition of `default_create' used when we are a client of the window. once Result := indent_less_one + "redefine" + indent + "default_create" + indent_less_one + "end" end show_window_feature: STRING is -- `Show' for the window implementation when we are a client of the window. once Result := indent_less_two + "show is" + indent + "-- Show `Current'." + indent_less_one + "do" + indent + client_window_string + ".show" + indent_less_one + "end" end show_widget_feature: STRING is -- `Show' for the window implementation when we are a client of the window. once Result := indent_less_two + "show is" + indent + "-- Show `Current'." + indent_less_one + "do" + indent + client_widget_string + ".show" + indent_less_one + "end" end window_inheritance_part1: STRING is -- Part 1 of string used to generate inheritance from window in implementation class. once Result := "inherit" + Indent_less_two + Ev_titled_window_string + Indent_less_one + "redefine" + indent + "initialize, is_in_default_state" + Indent_less_one + "end" + indent + indent_less_two end window_inheritance_no_constant: STRING is -- Part 1 of string used to generate inheritance from window in implementation class. once Result := "inherit" + Indent_less_two + Ev_titled_window_string + Indent_less_one + "redefine" + indent + "initialize, is_in_default_state" + Indent_less_one + "end" end window_inheritance_part2: STRING is -- Part 2 of string used to generate inheritance from window in implementation class. once Result := Indent_less_one + "undefine" + indent + "is_equal, default_create, copy" + Indent_less_one + "end" end client_window_string: STRING is "window" -- Name used to access window as a client. client_widget_string: STRING is "widget" -- Name used to access widget as a client. Create_command_string: STRING is "create " -- String corresponding to creation instruction in generated_code. False_optimal_string: STRING is "Optimal" False_non_exported_string: STRING is "False_exported" item_text_string: STRING is "Item_text" -- Constant used for referencing notebook item texts in XML. Item_pixmap_string: STRING is "Item_pixmap" -- String used to represent the pixmap of the notebook tabs in the XML font_string: STRING is "Font" font_family_string: STRING is "Family" font_weight_string: STRING is "Weight" font_shape_string: STRING is "Shape" font_height_string: STRING is "Height" font_height_points_string: STRING is "Height_in_points" font_preferred_family_string: STRING is "Preferred_family" background_color_string: STRING is "Background_color" foreground_color_string: STRING is "Foreground_color" feature -- XML constants True_string: STRING is "True" -- String constant representing True. False_string: STRING is "False" -- String constant representing False. Item_string: STRING is "item" -- String constant representing "item". Reference_id_string: STRING is "reference_id" -- String constant representing "reference_id". Name_string: STRING is "name" -- String constant representing "name". client_string: STRING is "generate_as_client" -- String constant reflecting client generation option. Id_String: STRING is "id" -- String constant representing "id". Schema_instance: STRING is "http://www.w3.org/1999/XMLSchema-instance" -- Schema information for inclusion in XML files. Events_string: STRING is "Events" -- String constant representing `Events'. Event_string: STRING is "Event" -- String constant representing `Event'. Root_window_string: STRING is "Is_root_window" -- String constant used for root window of system feature -- Dialogs b_OK: STRING is "OK" b_Cancel: STRING is "Cancel" b_Apply: STRING is "Apply" Save_prompt: STRING is "Do you wish to save the current project?" feature -- Miscellaneous initial_main_window_name: STRING is "main_window" -- Name of initial main window added to system. select_constant_string: STRING is "Select constant..." -- Used in constant selection dialogs. Event_selection_text: STRING is "Select events..." -- Displayed on button in object editor which pops -- up event dialog. Event_modification_text: STRING is "Modify events..." -- Displayed on button in object editor which pops -- up event dialog. Comment_start_string: STRING is "-- Actions to be performed when" -- Text presumed to be at start of all action sequence comments. application: EV_APPLICATION is -- Once instance of EV_APPLICATION. -- Defined here for speed, so it can be accessed -- without being re-created everywhere. -- in Build, the application will never change. once Result := environment.application end environment: EV_ENVIRONMENT is -- Once instance of EV_ENVIRONMENT. -- Defined here for speed, so it can be accessed -- without being re-created everwhere. once create Result end Internal_properties_string: STRING is "Internal_properties" -- XML tag used to store properties stored by GB_OBJECT -- but not in the interface of Vision2. Directory_string: STRING is "Directory" -- XML tag used to represent a directory. Directory_seperator: CHARACTER is -- Seperator used for directories on current platform. once Result := (create {OPERATING_ENVIRONMENT}).directory_separator end maximum_supported_ascii_value: INTEGER is 127 -- Maximum ascii character permitted in EiffelBuild save files. -- Currently it is limited to 127 by the GOBO implementation. --| FIXME Julian amount_to_shift_ids_during_import: INTEGER is 32000 -- Amount by which all existing ids are shifted to permit the new obejcts to be loaded. -- This means that you cannot import a file that has ids greater than 32000 as otherwise there -- will be clashes. feature -- GB_TOOL_HOLDER constants maximize_tooltip: STRING is "Maximize" minimize_tooltip: STRING is "Minimize" restore_tooltip: STRING is "Restore" feature -- Warning Dialogs Exit_warning: STRING is "Are you sure you wish to Exit?" -- Displayed in a dialog when user attempts to quit. Exit_save_warning: STRING is "The project has not been saved.%NDo you wish to save it before exiting?" -- Dispalyed in a dialog when user attempts to quit with an unsave project. Object_editor_button_warning: STRING is "Please drop an object on this button%NUse right click for both pick and drop actions." Component_tool_button_warning: STRING is "Please drop a component on this button%NUse right click for both pick and drop actions." Project_exists_warning: STRING is "An EiffelBuild project already exists in the selected directory. Do you wish to overwrite this project?" Directory_exists_warning: STRING is "The selected directory does not exist. Would you like to create it?" Invalid_project_warning: STRING is "Invalid EiffelBuild project file. Please select a different file." -- Warning displayed when a user attempts to open an invalid build project. Duplicate_name_warning_part1: STRING is "'" -- First part of warning used when a name that already exists is entered. Duplicate_name_warning_part2: STRING is "' Is not a valid object name.%N%NPossible causes include :-%N Name already used as object name in system.%N Name already used as feature name in system%N Name is an Eiffel reserved word.%N%NSelecting 'Modify' will allow editing of current invalid name.%NSelecting 'Cancel' will restore old name." -- Second part of warning used when a name that already exists is entered. Delete_component_warning: STRING is "Are you sure you wish to delete the component from the system?" Class_invalid_name_warning: STRING is "' is not a valid Class name.%NClass names should only include%N% %alphanumeric characters or underscores,%Nand start with an alphabetic character.%N% %Please select a different class name." Reserved_word_warning: STRING is "' is a reserved word.%NPlease select a different class name." Component_invalid_name_warning: STRING is " is not a valid Component name.%N%NComponent names must be unique, start with an alphabetic character%Nand only include alphanumeric characters and underscores.%N%NPlease select a different component name." Object_invalid_name_warning: STRING is " is not a valid object name.%N%NObject names must be unique, start with an alphabetic character%Nand only include alphanumeric characters and underscores.%N%NPlease select a different object name." Event_feature_name_warning: STRING is "Please correct invalid feature names (highlighted in red).%N%NPossible causes include :-%N Name already used as object name in system.%N Name already used as feature name in system%N Name is an Eiffel reserved word." Duplicate_event_feature_name_warning: STRING is "You have specified two identical feature names.%N All feature names must be unique.%N%NPlease resolve this conflict." Component_identical_name_warning: STRING is " is already used as a component name.%NPlease enter a unique component name." Windows_unsupported_pixmap_type: STRING is "File type not supported. BMP, ICO and PNG file types supported." Unix_unsupported_pixmap_type: STRING is "File type not supported. PNG and XPM file types supported." Matching_class_and_application_names_warning: STRING is "Application and class names conflict." Invalid_bpr_file: STRING is "The .BPR file you are attempting to load was created with the beta version of EiffelBuild.%NThe information stored in the project settings are incompatible with this version of EiffelBuild.%NClick 'Continue' if you wish to load the project, with default EiffelBuild settings." Not_all_windows_named_string: STRING is "Some of the windows you are attempting to generate are not named.%NThe name is required for the generation and is used for both the class and file names.%NDo you wish to assign default names to those windows that are unnamed?" constant_rejected_warning: STRING is "The value of the selected constant does not lie within the range permitted for this%Nproperty, and thefore the constant has been rejected.%NThe range of permitted values is restricted by the properties and settings of each object." invalid_characters1: STRING is "EiffelBuild only supports standard ascii characters in the range 0 to 127.%NThe project contains the following unsupported ascii characters : %N%N" invalid_characters2: STRING is "%N%NIf you continue, these characters will be replaced by the character '*' in the save file (not the open project).%N%NDo you wish to continue saving?" cannot_delete_as_still_referenced_multiple: STRING is "The top level object you are attempting to delete is still referenced by multiple objects." cannot_delete_as_still_referenced_single: STRING is "The top level object you are attempting to delete is still referenced by a single object." cannot_delete_as_still_referenced_part2: STRING is "%NTo examine the current references of an object, open the client node of the object's representation within the Widget Selector.%N%NDo you wish to flatten all references and delete the object?" cyclic_inheritance_error: STRING is "Not permitted as causes a cyclic inheritance structure." changing_client_warning: STRING is "You are attempting to change the client status of a class that%Nhas already been generated and exists on disk%N%NThis change may cause the generated implementation file and%Nyour current interface file to no longer compile without modification%N%NAre you sure you wish to perform this?" unable_to_save_part1: STRING is "Unable to save the following file :%N%N" unable_to_save_part2: STRING is "%N%NPlease check file permissions and try again." invalid_generation_directory: STRING is "The directory specified for code generation is invalid.%NPlease check this directory from the %"Generation%"%Ntab of the project settings dialog and correct it as necessary.%N%NNo code has been generated." feature -- Object editor properties gb_ev_widget_is_show_requested: STRING is "Is Show Requested?" gb_ev_widget_is_show_requested_tooltip: STRING is "feature `is_displayed' from EV_WIDGET" gb_ev_widget_minimum_width: STRING is "Minimum Width" gb_ev_widget_minimum_width_tooltip: STRING is "feature `minimum_width' from EV_WIDGET." gb_ev_widget_minimum_height: STRING is "Minimum Height" gb_ev_widget_minimum_height_tooltip: STRING is "feature `minimum_height' from EV_WIDGET." gb_ev_fontable_font: STRING is "Font" gb_ev_fontable_font_tooltip: STRING is "feature `font' from EV_FONTABLE." gb_ev_gauge_value: STRING is "Value" gb_ev_gauge_value_tooltip: STRING is "feature `value' from EV_GAUGE." gb_ev_gauge_step: STRING is "Step" gb_ev_gauge_step_tooltip: STRING is "feature `step' from EV_GAUGE." gb_ev_gauge_leap: STRING is "Leap" gb_ev_gauge_leap_tooltip: STRING is "feature `leap' from EV_GAUGE." gb_ev_gauge_upper: STRING is "Upper" gb_ev_gauge_upper_tooltip: STRING is "feature `upper' from EV_GAUGE." gb_ev_gauge_lower: STRING is "Lower" gb_ev_gauge_lower_tooltip: STRING is "feature `lower' from EV_GAUGE." gb_ev_viewport_x_offset: STRING is "X Offset" gb_ev_viewport_x_offset_tooltip: STRING is "feature `x_offset' from EV_VIEWPORT" gb_ev_viewport_y_offset: STRING is "Y Offset" gb_ev_viewport_y_offset_tooltip: STRING is "feature `y_offset' from EV_VIEWPORT" gb_ev_viewport_item_height: STRING is "Item Height" gb_ev_viewport_item_height_tooltip: STRING is "feature `item_height' from EV_VIEWPORT" gb_ev_viewport_item_width: STRING is "Item Width" gb_ev_viewport_item_width_tooltip: STRING is "feature `item_width' from EV_VIEWPORT" gb_ev_window_user_can_resize: STRING is "User can resize?" gb_ev_window_user_can_Resize_tooltip: STRING is "feature `user_can_resize' from EV_WINDOW" gb_ev_window_title: STRING is "Title" gb_ev_window_title_tooltip: STRING is "feature `title' from EV_WINDOW" gb_ev_window_maximum_width: STRING is "Maximum Width" gb_ev_window_maximum_width_tooltip: STRING is "feature `maximum_width' from EV_WINDOW" gb_ev_window_maximum_height: STRING is "Maximum Height" gb_ev_window_maximum_height_tooltip: STRING is "feature `maximum_height' from EV_WINDOW" gb_ev_box_padding_width: STRING is "Padding Width" gb_ev_box_padding_width_tooltip: STRING is "feature `padding_width' from EV_BOX" gb_ev_box_border_width: STRING is "Border Width" gb_ev_box_border_width_tooltip: STRING is "feature `border_width' from EV_BOX" gb_ev_table_rows: STRING is "Rows" gb_ev_table_rows_tooltip: STRING is "feature `rows' from EV_TABLE" gb_ev_table_columns: STRING is "Columns" gb_ev_table_columns_tooltip: STRING is "feature `columns' from EV_TABLE" gb_ev_table_row_spacing: STRING is "Row Spacing" gb_ev_table_row_spacing_tooltip: STRING is "feature `row_spacing' from EV_TABLE" gb_ev_table_column_spacing: STRING is "Column Spacing" gb_ev_table_column_spacing_tooltip: STRING is "feature `column_spacing' from EV_TABLE" gb_ev_table_border_width: STRING is "Border Width" gb_ev_table_border_width_tooltip: STRING is "feature `border_width' from EV_TABLE" gb_ev_colorizable_foreground_color: STRING is "Foreground color" gb_ev_colorizable_foreground_color_tooltip: STRING is "feature `foreground_color' from GB_EV_COLORIZABLE" gb_ev_colorizable_background_color: STRING is "Background color" gb_ev_colorizable_background_color_tooltip: STRING is "feature `background_color' from GB_EV_COLORIZABLE" gb_ev_colorizable_restore_color: STRING is "Restore" background_color_restore: STRING is " Restore background color to default." foreground_color_restore: STRING is " Restore foreground color to default." gb_ev_deselectable_is_selected: STRING is "Is Selected?" gb_ev_deselectable_is_selected_tooltip: STRING is "feature `is_selected' from EV_SELECTABLE" gb_ev_sensitive_is_sensitive: STRING is "Is Sensitive?" gb_ev_sensitive_is_sensitive_tooltip: STRING is "feature `is_sensitive' from EV_SENSITIVE" gb_ev_tool_bar_has_vertical_button_style: STRING is "Vertical button style?" gb_ev_tool_bar_has_vertical_button_style_tooltip: STRING is "feature `has_vertical_button_style' from EV_TOOL_BAR" gb_ev_textable_text: STRING is "Text" gb_ev_textable_text_tooltip: STRING is "feature `text' from EV_TEXTABLE" gb_ev_text_alignable: STRING is "Text alignment" gb_ev_text_alignable_tooltip: STRING is "feature `text_alignment' from EV_TEXT_ALIGNABLE" gb_ev_tooltipable_tooltip: STRING is "Tooltip" gb_ev_tooltipable_tooltip_tooltip: STRING is "feature `tooltip' from EV_TOOLTIPABLE" gb_ev_pixmapable_pixmap: STRING is "Pixmap" gb_ev_pixmapable_pixmap_tooltip: STRING is "feature `pixmap' from EV_PIXMAPABLE" gb_ev_pixmap_pixmap: STRING is "Pixmap image" gb_ev_pixmap_pixmap_tooltip: STRING is "feature `set_with_named_file' from EV_PIXMAP" gb_ev_split_area_is_item_expanded_tooltip: STRING is "feature `is_item_expanded' from EV_SPLIT_AREA" gb_ev_container_radio_groups: STRING is "Merged radio groups" gb_ev_container_radio_groups_tooltip: STRING is "feature `merge_radio_groups' from EV_CONTAINER" gb_ev_container_propagate_foreground_color: STRING is "Propagate" gb_ev_container_propagate_foreground_color_tooltip: STRING is "Propagate foreground color to all children." gb_ev_container_propagate_background_color: STRING is "Propagate" gb_ev_container_propagate_background_color_tooltip: STRING is "Propagate background color to all children." gb_ev_text_component_is_editable: STRING is "Is editable?" gb_ev_text_component_is_editable_tooltip: STRING is "feature `is_editable' from EV_TEXT_COMPONENT" gb_ev_notebook_tab_position: STRING is "Tab Position" gb_ev_notebook_tab_position_tooltip: STRING is "feature `tab_position' from EV_NOTEBOOK" gb_ev_progress_bar_is_segmented: STRING is "Is segmented?" gb_ev_progress_bar_is_segmented_tooltip: STRING is "feature `is_segmented' from EV_PROGRESS_BAR" select_button_text: STRING is "Select..." set_with_named_file_tooltip: STRING is "Set pixmap image with named file" clear_text: STRING is "Clear" clear_tooltip: STRING is "Clear pixmap image" pixmap_missing_string: STRING is "Error - named pixmap missing." invalid_pixmap_contents_warning: STRING is " does not contain a valid image. Possible causes for this are:-%N%NFile is not one of the supported image types.%NFile is corrupted.%N%NPlease select a diferent file." select_constant_tooltip: STRING is "Select constant" object_editor_padding_width: INTEGER is 3 object_editor_vertical_padding_width: INTEGER is 2 reset_font_tooltip: STRING is "Restore default font" reset_background_color_tooltip: STRING is "Restore default background color" reset_foreground_color_tooltip: STRING is "Restore default foreground color" reset_minimum_width_tooltip: STRING is "Restore default minimum width" reset_minimum_height_tooltip: STRING is "Restore default minimum height" colorizable_type: STRING is "EV_COLORIZABLE" feature -- Tooltips include_directory_button_tooltip: STRING is "Include all sub-directories" -- Tooltip for widget selector include directory button. show_hide_empty_directories_tooltip: STRING is "Show/Hide all empty directories" -- Tooltip for widget selector show hide empty directories button. new_directory_button_tooltip: STRING is "New directory" -- Tooltip for widget selector new directory button. expand_all_button_tooltip: STRING is "Expand all" -- Tooltip for widget selector expand all button. feature -- Status texts directories_included_text: STRING is "All sub-directories included in project." all_empty_directories_shown_text: STRING is "All empty directories shown." all_empty_directories_hidden_text: STRING is "All empty directories hidden." all_expanded_text: STRING is "All nodes expanded." feature -- Booleans multiple_line_entry: BOOLEAN is True -- Boolean value used to indicate that multiple line entry fields are required. single_line_entry: BOOLEAN is False -- Boolean value used to indicate that single line entry fields are required. feature -- Constants Pixmap_constant_type: STRING is "PIXMAP" -- String representation of a pixmap constant. Integer_constant_type: STRING is "INTEGER" -- String representation of an integer constant. String_constant_type: STRING is "STRING" -- String representation of a string constant. directory_constant_type: STRING is "DIRECTORY" -- String representation of a directory constant. color_constant_type: STRING is "COLOR" -- String representation of a color constant. font_constant_type: STRING is "FONT" -- String representation of a font constant. filepath_constant_type: STRING is "FILEPATH" filename_constant_type: STRING is "FILENAME" all_constant_type: STRING is "ALL" -- String representation used to indicate all constant types. type_string: STRING is "type" -- String used to match type within XML. constant_name_string: STRING is "Name" -- Used to represent a constant name in XML constant_value_string: STRING is "Value" -- Used to represent a constant value in XML Constants_string: STRING is "Constants" -- String constant representing constants in XML. Constant_string: STRING is "Constant" -- String constant representing single constant in XML. is_absolute_string: STRING is "is_absolute" filename_string: STRING is "Filename" invalid_pixmap_name_prefix: STRING is "pixmap_" -- Name prepended to pixmaps that are invalid. integer_constant_set_procedures_string: STRING is "integer_constant_set_procedures" integer_constant_retrieval_functions_string: STRING is "integer_constant_retrieval_functions" string_constant_set_procedures_string: STRING is "string_constant_set_procedures" string_constant_retrieval_functions_string: STRING is "string_constant_retrieval_functions" font_constant_set_procedures_string: STRING is "font_constant_set_procedures" font_constant_retrieval_functions_string: STRING is "font_constant_retrieval_functions" color_constant_set_procedures_string: STRING is "color_constant_set_procedures" color_constant_retrieval_functions_string: STRING is "color_constant_retrieval_functions" pixmap_constant_set_procedures_string: STRING is "pixmap_constant_set_procedures" pixmap_constant_retrieval_functions_string: STRING is "pixmap_constant_retrieval_functions" integer_interval_constant_set_procedures_string: STRING is "integer_interval_constant_set_procedures" integer_interval_constant_retrieval_functions_string: STRING is "integer_interval_constant_retrieval_functions" feature -- Preferences constants_do_not_show_again: STRING is "Reject invalid constants, and do not show this dialog again." delete_do_not_show_again: STRING is "Always delete via the keyboard, and do not show again." delete_warning1: STRING is "The currently selected " delete_warning2: STRING is " will be deleted.%N%NAre you sure you wish to perform this?" show_repeated_absolute_constant_warning: STRING is "show_repeated_absolute_constant_warning" show_invalid_constant_selection_warning: STRING is "show_invalid_constant_selection_warning" show_constant_manifest_conversion_warning: STRING is "show_constant_manifest_conversion_warning" show_project_location_changed_warning: STRING is "show_project_location_changed_warning" show_adding_existing_directory_warning: STRING is "show_adding_existing_directory_warning" feature -- Prompts select_directory_location_modify_string: STRING is "Please select new location for directory constant %"" -- String displayed when selecting a new directroy during a modification of an existing directory constant. select_color_location_modify_string: STRING is "Please select new color value for color constant %"" -- String displayed when selecting a new color during a modification of an existing color constant. select_font_location_modify_string: STRING is "Please select new font value for font constant %""; -- String displayed when selecting a new font during a modification of an existing font constant. indexing copyright: "Copyright (c) 1984-2006, Eiffel Software" license: "GPL version 2 (see http://www.eiffel.com/licensing/gpl.txt)" licensing_options: "http://www.eiffel.com/licensing" copying: "[ This file is part of Eiffel Software's Eiffel Development Environment. Eiffel Software's Eiffel Development Environment is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License (available at the URL listed under "license" above). Eiffel Software's Eiffel Development Environment is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Eiffel Software's Eiffel Development Environment; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ]" 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 GB_CONSTANTS