indexing description: "Facilities for accessing default pixmaps." status: "See notice at end of class" keywords: "pixmap, default" date: "$Date$" revision: "$Revision$" class EV_STOCK_PIXMAPS feature -- Default pixmaps Information_pixmap: EV_PIXMAP is -- Pixmap symbolizing a piece of information. once Result := Implementation.Information_pixmap end Error_pixmap: EV_PIXMAP is -- Pixmap symbolizing an error. once Result := Implementation.Error_pixmap end Warning_pixmap: EV_PIXMAP is -- Pixmap symbolizing a warning. once Result := Implementation.Warning_pixmap end Question_pixmap: EV_PIXMAP is -- Pixmap symbolizing a question. once Result := Implementation.Question_pixmap end Default_window_icon: EV_PIXMAP is -- Pixmap used as default icon for new windows. once Result := Implementation.Default_window_icon end feature -- Default cursors Busy_cursor: EV_CURSOR is -- Standard arrow and small hourglass once Result := Implementation.Busy_cursor end Standard_cursor: EV_CURSOR is -- Standard arrow once Result := Implementation.Standard_cursor end Crosshair_cursor: EV_CURSOR is -- Crosshair once Result := Implementation.Crosshair_cursor end Help_cursor: EV_CURSOR is -- Arrow and question mark once Result := Implementation.Help_cursor end Ibeam_cursor: EV_CURSOR is -- I-beam displayed in editable widgets. once Result := Implementation.Ibeam_cursor end No_cursor: EV_CURSOR is -- Slashed_circle once Result := Implementation.No_cursor end Sizeall_cursor: EV_CURSOR is -- Four-pointed arrow pointing north, south, east and west once Result := Implementation.Sizeall_cursor end Sizens_cursor: EV_CURSOR is -- Double-pointed arrow pointing north and south once Result := Implementation.Sizens_cursor end Sizenwse_cursor: EV_CURSOR is -- Double-pointed arrow pointing north-west and south-east once Result := Implementation.Sizenwse_cursor end Sizenesw_cursor: EV_CURSOR is -- Double-pointed arrow pointing north-east and south-west once Result := Implementation.Sizenesw_cursor end Sizewe_cursor: EV_CURSOR is -- Double-pointed arrow pointing west and east once Result := Implementation.Sizewe_cursor end Uparrow_cursor: EV_CURSOR is -- Vertical arrow once Result := Implementation.Uparrow_cursor end Wait_cursor: EV_CURSOR is -- Hourglass once Result := Implementation.Wait_cursor end feature {NONE} -- Implementation Implementation: EV_STOCK_PIXMAPS_IMP is -- Responsible for interaction with native graphics toolkit. once create Result end end -- class EV_STOCK_PIXMAPS --|---------------------------------------------------------------- --| EiffelVision2: library of reusable components for ISE Eiffel. --| Copyright (C) 1985-2004 Eiffel Software. All rights reserved. --| Duplication and distribution prohibited. May be used only with --| ISE Eiffel, under terms of user license. --| Contact Eiffel Software for any other use. --| --| Interactive Software Engineering Inc. --| dba Eiffel Software --| 356 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Contact us at: http://www.eiffel.com/general/email.html --| Customer support: http://support.eiffel.com --| For latest info on our award winning products, visit: --| http://www.eiffel.com --|----------------------------------------------------------------