indexing status: "See notice at end of class" date: "$Date$" revision: "$Revision$" class PRIVATE_ATTRIBUTES_WINDOWS feature -- Access x: INTEGER -- Private Horizontal position relative to parent y: INTEGER -- Private vertical position relative to parent width: INTEGER -- Private width of widget height: INTEGER -- Private height of widget insensitive: BOOLEAN -- Private insensitive flag feature -- Element change set_x (a_x: INTEGER) is -- Set x to a_x. do x := a_x ensure x_set: x = a_x end set_y (a_y: INTEGER) is -- Set y to a_y. do y := a_y ensure y_set: y = a_y end set_width (a_width: INTEGER) is -- Set width to a_width. do width := a_width ensure width_set: width = a_width end set_height (a_height: INTEGER) is -- Set height to a_height. do height := a_height ensure heiht_set: height = a_height end set_insensitive (a_flag: BOOLEAN) is -- Set insensitive to a_flag. do insensitive := a_flag ensure insensitive_set: insensitive = a_flag end end -- class PRIVATE_ATTRIBUTES --|---------------------------------------------------------------- --| EiffelVision: 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 --|----------------------------------------------------------------