module DWProfile names = case_sensitive objects = { separator = gadget; label = gadget; push_button = gadget; toggle_button = gadget; } include file 'DECW$INCLUDE:DwtAppl.UIL'; procedure WidgetCreated(integer); WidgetChanged(integer); value k_label_deltax: 5; ! offset from left side of adb to label k_text_deltax: 50; ! part 3 offset from left side of adb to text widget k_text_deltax1: 50; ! col 1 offset from left side of adb to text widget k_text_deltax2: 50; ! col 2 offset from left side of adb to text widget k_text_deltax3: 45; ! col 3 offset from left side of adb to text widget k_label_adb_offset: 2; ! offset from top of adb to label (to align with widget) k_tab1: 0; k_tab2: 220; k_tab3: 420; k_col1: 0; k_col2: 200; k_col3: 400; k_line_height: 30; k_dialog_y: 30; k_line_1_y: 10; k_line_2_y: k_line_1_y + k_line_height; k_line_3_y: k_line_2_y + k_line_height; k_line_4_y: k_line_3_y + k_line_height; k_line_5_y: k_line_4_y + k_line_height; k_line_login_y: k_line_5_y + k_line_height + 5; k_flags_y: k_line_login_y + k_line_height; k_line_6_y: k_flags_y + 100; k_line_7_y: k_line_6_y + k_line_height; k_line_8_y: k_line_7_y + k_line_height; k_line_9_y: k_line_8_y + k_line_height; k_line_10_y: k_line_9_y + k_line_height; k_line_11_y: k_line_10_y + k_line_height; k_line_12_y: k_line_11_y + k_line_height; k_functions_y: k_line_12_y + k_line_height + 20; object dwprofile_main: main_window { controls { menu_bar menu; dialog_box main_box; }; }; main_box: dialog_box { arguments { y = k_dialog_y; units = DwtPixelUnits; }; controls { attached_dialog_box user; attached_dialog_box owner; attached_dialog_box account; attached_dialog_box uic; label uic_trans; attached_dialog_box device; attached_dialog_box table; attached_dialog_box cli; attached_dialog_box directory; attached_dialog_box lgicmd; attached_dialog_box password; attached_dialog_box lastlogin_i; attached_dialog_box lastlogin_n; attached_dialog_box logfails; separator sep1; radio_box flags; separator sep2; attached_dialog_box expiration; attached_dialog_box pwdlifetime; attached_dialog_box pwdlength; attached_dialog_box maxjobs; attached_dialog_box fillm; attached_dialog_box bytlm; attached_dialog_box maxacctjobs; attached_dialog_box shrfillm; attached_dialog_box pbytlm; attached_dialog_box maxdetach; attached_dialog_box biolm; attached_dialog_box jtquota; attached_dialog_box prclm; attached_dialog_box diolm; attached_dialog_box wsdef; attached_dialog_box prio; attached_dialog_box astlm; attached_dialog_box wsquota; attached_dialog_box queprio; attached_dialog_box tqelm; attached_dialog_box wsextent; attached_dialog_box cpu; attached_dialog_box enqlm; attached_dialog_box pgflquo; work_area_menu functions; }; }; include file 'part1.uil'; include file 'flags.uil'; include file 'part3.uil'; include file 'buttons.uil'; end module;