home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a031 / template.exe / DS_UDF.COD < prev    next >
Encoding:
Text File  |  1992-03-10  |  6.8 KB  |  276 lines

  1. //
  2. // Module Name: DS_UDF.COD
  3. // Description: UDF's used in the system
  4. //
  5. define scrndump()
  6.  
  7.   // This udf dumps the object image to the output stream with a ruler line.
  8.  
  9.   cnt = 0
  10.   forflag = barflag = 1; // same as .T.
  11. }
  12. Screen Image:
  13.    0         10        20        30        40        50        60        70
  14.   >.....+....|....+....|....+....|....+....|....+....|....+....|....+....|....+.
  15. {if graph_prt then
  16.   // call graphics screen dump.
  17.   include "ds_box.cod";
  18. else
  19.   // call ascii screen dump.
  20.    do while cnt < scrn_size
  21.      line = SCREEN(cnt)
  22.      if cnt < 10 then
  23.        linecnt = "0"+str(cnt)
  24.      else
  25.        linecnt = str(cnt)
  26.      endif
  27.      print(substr(linecnt+":"+line,1,80)+crlf);
  28.      ++cnt;
  29.    enddo
  30.  endif // if graph_prt
  31.  print("  >.....+....|....+....|....+....|....+....|....+....|....+....|....+....|....+."+crlf);
  32.  return;
  33. enddef
  34.  
  35. define endofpage()
  36.  
  37.   // This udf checks for End of Page. It uses the curline() and pageject() to
  38.   //  determine if more than 59 lines have been output to the file.  Once 
  39.   //  pageject() is called curline() is reset to zero.  On each new page we
  40.   //  output a page number and date.
  41.  
  42.   if curline() > 59 then
  43.     pagecnt=pagecnt+1
  44.     pageject()
  45.     print(crlf+"Page: "+str(pagecnt)+"  Date: "+ltrim(date())+crlf+crlf)
  46.   endif
  47.   return;
  48. enddef
  49.  
  50. define db_inlin()
  51.  
  52.   // This udf is used for processing Inline dBASE code.
  53.  
  54.   endofpage()
  55.   foreach Inline_Do l in flds
  56.     if Inline_Do then
  57.        print("  "+rtrim(Inline_Do)+crlf)
  58.        endofpage()
  59.     endif
  60.   next l
  61.   endofpage()
  62.   lmarg(2)
  63.  return;
  64. enddef
  65.  
  66. define color(getcolor)
  67.  
  68.  // This udf is used for processing colors from the generator.
  69.  //  The foreground and background colors are stored in one byte.
  70.  //  The formulas below show how to get the foreground and background color
  71.  //  out of the variable passed in.
  72.  
  73.  var blink, forground, background, enhanced, incolor;
  74.  
  75.  forground = background = enhanced = 0
  76.  
  77.  if getcolor != 255 then                      // black on black?
  78.    blink = getcolor >> 7                      // high order bit set?
  79.    if blink then 
  80.      getcolor = getcolor - 128                // set high order bit to zero
  81.    endif
  82.    background = getcolor >> 4                 // getcolor divided by 16
  83.    forground  = getcolor - (background << 4)  // (background times 16)
  84.    if forground > 7 then                      // high intensity?
  85.      enhanced = 1
  86.      forground = forground - 8
  87.    endif
  88.  endif
  89.  
  90.  // Set your dBASE manual for an explanation of the colors below
  91.  case forground of
  92.   0: incolor = "N"
  93.   1: incolor = "B"
  94.   2: incolor = "G"
  95.   3: incolor = "BG"
  96.   4: incolor = "R"
  97.   5: incolor = "RB"
  98.   6: incolor = "GR"
  99.   7: incolor = "W"
  100.  endcase
  101.  
  102.  if blink then incolor = incolor + "*" endif
  103.  if enhanced then
  104.    incolor = incolor + "+/"
  105.  else
  106.    incolor = incolor + "/"
  107.  endif
  108.  
  109.  case background of
  110.   0: incolor = incolor + "N"
  111.   1: incolor = incolor + "B"
  112.   2: incolor = incolor + "G"
  113.   3: incolor = incolor + "BG"
  114.   4: incolor = incolor + "R"
  115.   5: incolor = incolor + "RB"
  116.   6: incolor = incolor + "GR"
  117.   7: incolor = incolor + "W"
  118.  endcase
  119.  return incolor;
  120. enddef
  121.  
  122. define get_box_text(line,linecnt,textline,col_post)
  123.   // Used for procesing the lines between top and bottom of a graphics screen
  124.   // dump.
  125.  
  126.   if Menu_Type == bar then
  127.     if barflag then
  128.        if col_post-1 <= 0 then
  129.          mspace=""
  130.        else
  131.          mspace = space(col_post-1)
  132.        endif
  133.     else
  134.       mspace = space(col_post-( len(line)-col1() ))
  135.     endif
  136.   else
  137.      line = space(col1())
  138.      mspace = space(col_post-1)
  139.   endif
  140.   case Mnu_Border of
  141.    0: // panel box
  142.      if Menu_Type != bar then
  143.        line = line + chr(219) + mspace + Textline
  144.        mspace2 = space((col2()-len(line)))
  145.        line = line + mspace2 + chr(219)
  146.      else
  147.         if barflag then
  148.           line = line + chr(219) + mspace + Textline
  149.         else
  150.           line = line + mspace + Textline
  151.         endif
  152.      endif
  153.  
  154.    1: // single line box
  155.      if Menu_Type != bar then
  156.        line = line + chr(179) + mspace + Textline
  157.         mspace2 = space((col2()-len(line)))
  158.         line = line + mspace2 + chr(179)
  159.      else
  160.         if barflag then
  161.           line = line + chr(179) + mspace + Textline
  162.         else
  163.           line = line + mspace + Textline
  164.         endif
  165.      endif
  166.  
  167.    2: // double line box
  168.      if Menu_Type != bar then
  169.        line = line + chr(186) + mspace + Textline
  170.        mspace2 = space((col2()-len(line)))
  171.        line = line + mspace2 + chr(186)
  172.      else
  173.        if barflag then
  174.          line = line + chr(186) + mspace + Textline
  175.        else
  176.          line = line + mspace + Textline
  177.        endif
  178.      endif
  179.  
  180.    3: // no line box
  181.      if Menu_Type != bar then
  182.        line = line + " " + mspace + Textline
  183.        mspace2 = space((col2()-len(line)))
  184.        line = line + mspace2 + chr(186)
  185.      else
  186.        if barflag then
  187.          line = line + " " + mspace + Textline
  188.        else
  189.          line = line + mspace + Textline
  190.        endif
  191.      endif
  192.   endcase
  193.  
  194.   if cnt < 10 and barflag then
  195.     linecnt = "0"+str(cnt)
  196.   else
  197.     if barflag then // bar flag test for processing a bar menu
  198.       linecnt = str(cnt)
  199.     endif
  200.   endif
  201.  
  202.   if Menu_Type != bar then
  203.     print(substr(linecnt+":"+line,1,80)+crlf);
  204.     ++cnt;
  205.   else
  206.     barflag = 0
  207.   endif
  208.  
  209.  return;
  210. enddef
  211.  
  212. define message(message); 
  213.   // Message(<chrC>): expects a string to be passed & display's a message 
  214.   //                  centered on line 23 or 42
  215.   pmsg(center(message))
  216.   cget()
  217.   return;
  218. enddef
  219.  
  220.  
  221. define center(message);
  222.    // Center(<chrC>): expects a string to be passed in
  223.    //           and returns the string centered between 80 columns
  224.    var mspace;
  225.    mspace = space((40-(len(message)/2)))
  226.    message = mspace + message
  227.    return message;
  228.  enddef
  229.  
  230.  define get_item(miid,mhead,mline,mcursor)
  231.   //
  232.   // This udf is used for processing item level text.
  233.   //
  234.   endofpage()
  235.   print_head=1
  236.   foreach miid getext in mcursor
  237.      if getext.miid then
  238.         if print_head then
  239.            print(crlf+mhead+crlf+mline+crlf)
  240.            lmarg(4)
  241.            Print_head=0
  242.         endif
  243.         print(rtrim(getext.miid)+crlf)
  244.         endofpage()
  245.      endif
  246.   next getext
  247.   endofpage()
  248.   lmarg(2)
  249.  return;
  250. enddef
  251.  
  252. define get_frame(miid, mhead, mline);
  253.   //
  254.   // This udf is used for processing frame level text.
  255.   //
  256.   endofpage()
  257.   print_head=1
  258.   foreach miid getext
  259.      if getext.miid then
  260.         if print_head then
  261.            print(crlf+mhead+crlf+mline+crlf)
  262.            lmarg(2)
  263.            Print_head=0
  264.         endif
  265.         print(rtrim(getext.miid)+crlf)
  266.         endofpage()
  267.      endif
  268.   next getext
  269.   endofpage()
  270.   lmarg(0)
  271.  return;
  272. enddef
  273. }
  274. // EOP DS_UDF.COD
  275.