note legal: "See notice at end of class." status: "See notice at end of class." class MAIN_WINDOW inherit WEL_FRAME_WINDOW redefine on_left_button_down, on_left_button_up, on_right_button_down, on_mouse_move, closeable end WEL_STANDARD_COLORS export {NONE} all end create make feature {NONE} -- Initialization make -- Make the main window. do create dc.make (create {WEL_FRAME_WINDOW}.make_top ("dummy")) set_pen_width (1) make_top ("My application") create dc.make (Current) end feature -- Access dc: WEL_CLIENT_DC -- Device context associated to the current -- client window button_down: BOOLEAN -- Is the left mouse button down? pen: WEL_PEN -- Pen currently selected in `dc' line_thickness_dialog: detachable LINE_THICKNESS_DIALOG -- Dialog box to change line thickness feature -- Element change set_pen_width (new_width: INTEGER) -- Set pen width with `new_width'. do create pen.make_solid (new_width, black) end feature {NONE} -- Implementation on_left_button_down (keys, x_pos, y_pos: INTEGER) -- Initiate the drawing process. do if not button_down then button_down := True dc.get dc.move_to (x_pos, y_pos) dc.select_pen (pen) end end on_mouse_move (keys, x_pos, y_pos: INTEGER) -- Connect the points to make lines. do if button_down then dc.line_to (x_pos, y_pos) end end on_left_button_up (keys, x_pos, y_pos: INTEGER) -- Terminate the drawing process. do if button_down then button_down := False dc.release end end on_right_button_down (keys, x_pos, y_pos: INTEGER) -- Bring up `line_thickness_dialog' and set the -- new pen width. local l_dialog: like line_thickness_dialog do l_dialog := line_thickness_dialog if l_dialog = Void then create l_dialog.make (Current) line_thickness_dialog := l_dialog end l_dialog.activate if l_dialog.ok_pushed then set_pen_width (l_dialog.pen_width) end end closeable: BOOLEAN -- Does the user want to quit? local msg_box: WEL_MSG_BOX do create msg_box.make msg_box.question_message_box (Current, "Do you want to quit?", "Quit") Result := msg_box.message_box_result = Idyes end note 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 -- class MAIN_WINDOW