home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / cad / jul93.zip / TIP883B.DCL < prev    next >
Text File  |  1993-06-21  |  1KB  |  33 lines

  1. // TIP883B  DDE.DCL (c)1993, Allen S. Johnson
  2. // Edit Text, Attributes, and Dimensions
  3.  
  4. // DDEX.DCL   dialog box for editing dimension text
  5.  
  6. DDEDIM : dialog { label = "Edit Dimension Text";
  7.           : row {
  8.             : radio_column {
  9.               spacer;
  10.               : radio_button { key = "USR"; label = "User Input Text : " ;  mnemonic = "U"; }
  11.              spacer;
  12.               : radio_button { key = "DEF"; label = "Actual Dimension: " ;  mnemonic = "A"; }
  13.               }
  14.             : column {
  15.               : edit_box { key = "USRTXT"; width = 45; allow_accept = true; }
  16.               spacer_1;
  17.               : text     { key = "DEFTXT"; }
  18.               spacer;
  19.               }
  20.             }
  21.  
  22.          : boxed_column {
  23.            children_alignment = centered;
  24.            width = 65;
  25.            fixed_width = true;
  26.            : text { label = "NOTE: use <> to embed actual calculated"; }
  27.            : text { label = "      dimension into user input text   "; }
  28.            }
  29.          spacer_1;
  30.          ok_cancel;
  31.          }
  32.  
  33.