note description: "Objects that represent an EV_TITLED_WINDOW.% %The original version of this class was generated by EiffelBuild." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" deferred class EC_PROJECT_SETTINGS_PANE_IMP inherit EV_VERTICAL_BOX redefine initialize, is_in_default_state end EC_CHECKER_CONSTANTS undefine is_equal, default_create, copy end -- This class is the implementation of an EV_TITLED_WINDOW generated by EiffelBuild. -- You should not modify this code by hand, as it will be re-generated every time -- modifications are made to the project. feature {NONE}-- Initialization initialize -- Initialize `Current'. do Precursor {EV_VERTICAL_BOX} initialize_constants -- Create all widgets. create l_ev_horizontal_box_1 create pixm_assembly_cannot_be_found create lbl_assembly create l_ev_horizontal_box_2 create txt_assembly_path create btn_browse create l_ev_cell_1 create l_ev_frame_1 create l_ev_vertical_box_1 create l_ev_frame_2 create grid_reference_paths create l_ev_horizontal_box_3 create l_ev_cell_2 create btn_add_reference create btn_remove_reference -- Build_widget_structure. extend (l_ev_horizontal_box_1) l_ev_horizontal_box_1.extend (pixm_assembly_cannot_be_found) l_ev_horizontal_box_1.extend (lbl_assembly) l_ev_horizontal_box_1.extend (l_ev_horizontal_box_2) l_ev_horizontal_box_2.extend (txt_assembly_path) l_ev_horizontal_box_2.extend (btn_browse) l_ev_horizontal_box_1.extend (l_ev_cell_1) extend (l_ev_frame_1) l_ev_frame_1.extend (l_ev_vertical_box_1) l_ev_vertical_box_1.extend (l_ev_frame_2) l_ev_frame_2.extend (grid_reference_paths) l_ev_vertical_box_1.extend (l_ev_horizontal_box_3) l_ev_horizontal_box_3.extend (l_ev_cell_2) l_ev_horizontal_box_3.extend (btn_add_reference) l_ev_horizontal_box_3.extend (btn_remove_reference) l_ev_horizontal_box_1.set_padding_width (box_padding_width) l_ev_horizontal_box_1.disable_item_expand (pixm_assembly_cannot_be_found) l_ev_horizontal_box_1.disable_item_expand (lbl_assembly) l_ev_horizontal_box_1.disable_item_expand (l_ev_cell_1) pixm_assembly_cannot_be_found.set_tooltip (tooltip_assembly_cannot_be_found) pixm_assembly_cannot_be_found.hide pixm_assembly_cannot_be_found.set_minimum_width (16) pixm_assembly_cannot_be_found.set_minimum_height (16) pixm_assembly_cannot_be_found.copy (icon_error) lbl_assembly.set_text (label_assembly) lbl_assembly.set_tooltip (tooltip_assembly) lbl_assembly.align_text_left l_ev_horizontal_box_2.disable_item_expand (btn_browse) txt_assembly_path.set_tooltip (tooltip_assembly) btn_browse.set_tooltip (tooltip_open_assembly) btn_browse.set_minimum_height (button_height) btn_browse.set_pixmap (icon_open) l_ev_cell_1.set_minimum_width (50) l_ev_cell_1.set_minimum_height (0) l_ev_frame_1.set_text (frame_reference_paths) l_ev_vertical_box_1.set_padding_width (box_padding_width) l_ev_vertical_box_1.set_border_width (box_border_width) l_ev_vertical_box_1.disable_item_expand (l_ev_horizontal_box_3) l_ev_frame_2.set_background_color (create {EV_COLOR}.make_with_8_bit_rgb (0, 0, 0)) l_ev_frame_2.set_style (1) l_ev_horizontal_box_3.set_padding_width (box_padding_width) l_ev_horizontal_box_3.disable_item_expand (btn_add_reference) l_ev_horizontal_box_3.disable_item_expand (btn_remove_reference) btn_add_reference.set_text (button_add) btn_add_reference.set_minimum_width (80) btn_add_reference.set_minimum_height (button_height) btn_remove_reference.set_text (button_remove) btn_remove_reference.set_minimum_width (80) btn_remove_reference.set_minimum_height (button_height) set_padding_width (box_padding_width) set_border_width (box_border_width) disable_item_expand (l_ev_horizontal_box_1) --Connect events. -- Close the application when an interface close -- request is recieved on `Current'. i.e. the cross is clicked. -- Call `user_initialization'. user_initialization end feature -- Access grid_reference_paths: EV_GRID btn_browse, btn_add_reference, btn_remove_reference: EV_BUTTON pixm_assembly_cannot_be_found: EV_PIXMAP lbl_assembly: EV_LABEL txt_assembly_path: EV_TEXT_FIELD feature {NONE} -- Implementation l_ev_cell_1, l_ev_cell_2: EV_CELL l_ev_horizontal_box_1, l_ev_horizontal_box_2, l_ev_horizontal_box_3: EV_HORIZONTAL_BOX l_ev_vertical_box_1: EV_VERTICAL_BOX l_ev_frame_1, l_ev_frame_2: EV_FRAME feature {NONE} -- Implementation is_in_default_state: BOOLEAN -- Is `Current' in its default state? do -- Re-implement if you wish to enable checking -- for `Current'. Result := True end user_initialization -- Feature for custom initialization, called at end of `initialize'. deferred end note 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 EC_PROJECT_SETTINGS_PANE_IMP