dcl_settings : default_dcl_settings { audit_level = 1; } // // Generic multiple selection dialog box // // (C) Copyright 1999, Four Dimension Technologies, Bangalore-INDIA // Author: Rakesh Rao // list_items_mult_dlg : dialog { label = "Select Property"; key = "dlg_title"; : list_box { key = "items"; height = 20; width = 32; multiple_select = true; } ok_cancel; errtile; } // // Generic single selection dialog box // // (C) Copyright 1999, Four Dimension Technologies, Bangalore-INDIA // Author: Rakesh Rao // list_items_sing_dlg : dialog { label = "Select Property"; key = "dlg_title"; : list_box { key = "items"; height = 20; width = 32; multiple_select = false; } ok_cancel; errtile; } // // FILTER_DLG // Copyright (C) 2009 by Four Dimension Technologies, Bangalore-India // Author : Rakesh Rao // Description : Dialog for the 'GT_Filter' command // filter_dlg : dialog { label = "Object selection filters"; : column { : list_box { label = ""; width = 50; height = 10; key = "current_filter_settings"; multiple_select=false; } : row { : boxed_column { label = "Select filter"; : row { : popup_list { key = "filter_criteria"; width = 12; } : button { key = "select"; label = "Select..."; } } : row { : popup_list { label = "X:"; key = "x_criteria"; width = 3; } : edit_box { label = ""; key = "x_crit_value"; edit_width = 20; edit_limit = 80; } : toggle { key ="x_any"; label = "Any"; } } spacer_0; : row { : popup_list { label = "Y:"; key = "y_criteria"; width = 3; } : edit_box { label = ""; key = "y_crit_value"; edit_width = 20; edit_limit = 80; } : toggle { key ="y_any"; label = "Any"; } } spacer_0; : row { : popup_list { label = "Z:"; key = "z_criteria"; width = 3; } : edit_box { label = ""; key = "z_crit_value"; edit_width = 20; edit_limit = 80; } : toggle { key ="z_any"; label = "Any"; } } spacer_0; : boxed_row { : button { label = "Add to List:"; key = "add_to_list"; } : button { label = "Substitute:"; key = "substitute"; } } : button { label = "Add Selected object<"; key = "add_selected_object"; } : button { label = "Pick point<"; key = "pick_point"; } } : column { label = ""; : row { : button { key = "edit_item"; label = "Edit Item"; } : button { key = "delete_item"; label = "Delete"; } : button { key = "clear_list"; label = "Clear List"; } } : row { : button { key = "up_item"; label = "Move Up"; } : button { key = "down_item"; label = "Move Down"; } } : spacer { height=2; } : row { fixed_width=true; alignment=left; : retirement_button { key = "accept"; label = "Apply"; } cancel_button; } } } } errtile; }