indexing description: "xxx" product: "Resource Bench" date: "$Date$" revision: "$Revision$" -- DialogEx_options -> Load_and_mem "," x "," y "," width "," height HelpID General_options_list -- More_dialog_options_list class S_DIALOGEX_OPTIONS inherit RB_AGGREGATE feature construct_name: STRING is once Result := "DIALOGEX_OPTIONS" end production: LINKED_LIST [CONSTRUCT] is local load_and_mem: LOAD_AND_MEM x: IDENTIFIER y: IDENTIFIER width: IDENTIFIER height: IDENTIFIER HelpID: HELP_ID general_options: GENERAL_OPTIONS_LIST more: MORE_DIALOG_OPTIONS_LIST once !! Result.make Result.forth !! load_and_mem.make put (load_and_mem) !! x.make put (x) keyword (",") !! y.make put (y) keyword (",") !! width.make put (width) keyword (",") !! height.make put (height) !! HelpID.make put (HelpID) !! general_options.make put (general_options) !! more.make put (more) end end -- class S_DIALOGEX_OPTIONS --|--------------------------------------------------------------- --| Copyright (C) Interactive Software Engineering, Inc. -- --| 270 Storke Road, Suite 7 Goleta, California 93117 -- --| (805) 685-1006 -- --| All rights reserved. Duplication or distribution prohibited -- --|---------------------------------------------------------------