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

  1. //
  2. // Module Name: AS_MENU.COD
  3. // Description: Define Application menus and program structure.
  4. //
  5.  
  6. dBASE IV Application Template
  7. -----------------------------
  8. $Version: $
  9. Copyright (c) 1991 Borland International, Inc.
  10.  
  11. {include "applctn.def"
  12.  include "builtin.def"
  13.  
  14.  if getenv("dtl_debug") then
  15.    debug(2)
  16.    breakpoint( pick_debug )
  17.  endif
  18.  
  19.  var  bnl_formname,     // Name of BNL file to newframe if argument() has value
  20.       arg_list;
  21.  
  22.  arg_list = alltrim(argument())
  23.  
  24.  if arg_list != "" then
  25.    bnl_formname = token( ",", arg_list, 1 )
  26.    if !newframe( bnl_formname ) then
  27.      return -1;
  28.    endif
  29.  endif
  30.  
  31.  enum exceed_limit = "This application exceeds the sampler five menu-limitation.  ",
  32.       demo_version = 0;
  33.  
  34.  var strng,      // temporary string storage
  35.      strng1,     // menus to call
  36.      mainmenu,   // name of main menu
  37.      mnuname,    // current menu name
  38.      padmenu,    // padmenu name to deactivate
  39.      pulldown,   // flag indicating pad is a pulldown
  40.      mnu_messag, // dBASE message string variable
  41.      color,      // Used to grab menu colors
  42.      cnt,        // incremental counter for items in menus
  43.      count,      // temporary counter
  44.      prgcnt,     // counter for actions and help
  45.      muser,      // multi user switch
  46.      mactions,   // menu actions
  47.      x,          // temporary numeric variable
  48.      ask_user,   // string for askuser function
  49.      appl_name,  // application name
  50.   default_drive, // dBASE default drive
  51.      mpath,      // DOS path
  52.      file,       // DOS file
  53.      itemdbf,    // flag to indicate whether database changed during a batch
  54.      exclflg,    // flag for exclusive use of database needed
  55.      mtype,      // Menu TYPE - converted to a character
  56.      display,    // monitor display type
  57.      scrn_size,  // number of rows of monitor display type
  58.      midentify,  // Identify string for structure pick list
  59.      windowvar,  // whether to declare lc_window private or not
  60.      menusave,   // use SAVE SCREEN or Redraw horizontal bar menus
  61.      browse_no_clear, // clear popup for browse noclear action
  62.      is_popups,  // flag to indicate whether there are popups in the app.
  63.      is_menus    //       "          "          "      menus       "
  64. ;
  65.  // Used in as_help.cod
  66.  var rowpoint,menucnt;
  67.  // vars below used to compare Menu & Item view/ndx's to open
  68.  var global_view, global_ndx, global_ord, gc_view, gc_ndx, gc_ord;
  69.  var itemview, itemndx, itemord, lc_view, lc_ndx, lc_ord;
  70.  // vars for global use of author, copyright & db Version
  71.  var author,copyright,dbVersion;
  72.  // foreach variables
  73.  var flds,j,k,m,mtree;
  74.  //
  75.  // Some initial environment testing follows
  76.  //
  77.  display = numset(_flgcolor);
  78.  if display == ega43 || display == mono43 then
  79.    scrn_size = 39
  80.  else
  81.    scrn_size = 21
  82.  endif
  83.  default_drive = STRSET(_defdrive);
  84.  if FILEDRIVE(Menu_Name) || !default_drive then
  85.    appl_name=Menu_Name;
  86.  else
  87.    appl_name=default_drive + ":" + Menu_Name;
  88.  endif
  89.  
  90.  if Menu_Type != app then
  91.    PAUSE(app_class);
  92.    GOTO NoGen;
  93.  endif
  94.  
  95.  if not FILEEXIST(Menu_Main) then
  96.    pause(no_main_menu+any_key);
  97.    return 8; // resource file not found
  98.  endif
  99.  
  100.  if fileexist(appl_name+".prg") && NUMSET(_safety) then
  101.  retry:
  102.    ask_user =
  103. ASKUSER("Program "+appl_name+".PRG already exists...Overwrite (Y/N)?","N",1);
  104.    if not at(upper(ask_user),"YN") then GOTO retry endif
  105.    if upper(ask_user) == "N" then
  106.      pause(gen_request+any_key);
  107.      GOTO NoGen;
  108.    endif
  109.  endif
  110.  if getenv("DTL_APGEN") then
  111.    menusave=" ";
  112.  else
  113.    menusave="N"
  114.  endif
  115.  do while not at(upper(menusave),"YN")
  116.    menusave=ASKUSER(
  117.      "Y - Use SAVE SCREEN command (4k per submenu) or N - Redraw menus?",
  118.      "N",1);
  119.    if not at(upper(menusave),"YN") then
  120.      menusave=" ";
  121.    endif
  122.  enddo
  123.  if upper(menusave) == "Y" then
  124.    menusave=1
  125.  else
  126.    menusave=0
  127.  endif
  128.  //
  129.  // Initialize some variables
  130.  //
  131.  count=1;
  132.  prgcnt=1;
  133.  itemdbf=0;
  134.  muser=0;
  135.  pulldown=0;
  136.  mnu_messag="'Position: '+CHR(27)+CHR(26)+CHR(25)+CHR(24)+'  Select: '"+
  137.     "+CHR(17)+CHR(196)+CHR(217)+'  Help: F1'";
  138.  author=appl_Authr;
  139.  copyright=appl_cpyrt;
  140.  dbVersion=Appl_Versn;
  141.  global_View=Appl_View;  // Set global application dbf/view
  142.  global_NDX=Appl_NDX;    // Set global application ndx
  143.  global_Ord=Appl_Order;  // Set global application Order
  144.  mtype="";
  145.  padmenu="";
  146.  //-----------------------------------
  147.  // Create application startup program
  148.  //-----------------------------------
  149.  if not CREATE(appl_name+".PRG") then;
  150.    PAUSE(fileroot(appl_name)+".PRG"+read_only+any_key);
  151.    GOTO NoGen
  152.  endif
  153.  fileerase(appl_name+".DBO");}
  154. *{replicate("-",69)}
  155. * Program......: {fileroot(appl_name)}.PRG
  156. {do_as_headr( makec( @TREE ) );}
  157. * Description..: Main routine for menu system
  158. *{replicate("-",69)}
  159. {LMARG(3);}
  160.  
  161. *-- Setup environment
  162. SET CONSOLE OFF
  163. IF TYPE("gn_ApGen")="U"
  164.   CLEAR WINDOWS
  165.   CLEAR ALL
  166.   CLOSE ALL
  167.   CLOSE PROCEDURE
  168.   gn_ApGen=1
  169. ELSE
  170.   gn_ApGen=gn_ApGen+1
  171.   IF gn_ApGen > 4
  172.     Do Pause WITH "Maximum level of Application nesting exceeded."
  173.     RETURN
  174.   ENDIF
  175.   PRIVATE gn_oldsize
  176.   gn_oldsize=gn_scrsize
  177.   PRIVATE gc_bell, gc_carry, gc_clock, gc_century, gc_confirm, gc_deli,;
  178.           gc_safety, gc_status, gc_score, gc_talk, gl_leave, gc_prognum,;
  179.           gc_quit, gc_color, gc_display, gl_color, gl_batch, gn_scrsize
  180. ENDIF
  181. *-- Store some sets to variables
  182. gc_bell   =SET("BELL")
  183. gc_carry  =SET("CARRY")
  184. gc_clock  =SET("CLOCK")
  185. gc_color  =SET("ATTRIBUTE")
  186. gc_century=SET("CENTURY")
  187. gc_confirm=SET("CONFIRM")
  188. gc_cursor =SET("CURSOR")
  189. gc_deli   =SET("DELIMITERS")
  190. gc_display=SET("DISPLAY")
  191. gc_safety =SET("SAFETY")
  192. gc_status =SET("STATUS")
  193. gc_score  =SET("SCOREBOARD")
  194. gc_talk   =SET("TALK")
  195. {  if scrn_size == 39 then}
  196. gn_error=0
  197. SET CONSOLE ON
  198. IF gc_display <> "{display_type()}"
  199.   ON ERROR gn_error=ERROR()
  200.   SET DISPLAY TO {display_type()}
  201.   ON ERROR
  202. ENDIF
  203. IF gn_error <> 0
  204.   gn_error=0
  205.   ON ERROR gn_error=ERROR()
  206.   SET DISPLAY TO \
  207. {  if display == mono43 then }
  208. EGA43
  209. {  else }
  210. MONO43
  211. {  endif }
  212.   ON ERROR
  213.   IF gn_error <> 0
  214.     ?
  215.     ? "Could not change display mode to EGA43 or MONO43"
  216.     DO Wait4Key
  217.     gn_error=0
  218.     RETURN
  219.   ENDIF
  220. ENDIF
  221. {  else  }
  222. SET CONSOLE ON
  223. ON ERROR ??
  224. SET DISPLAY TO MONO
  225. SET DISPLAY TO COLOR
  226. SET DISPLAY TO EGA25
  227. ON ERROR
  228. {  endif}
  229.  
  230. {if !Set_Bell then
  231.    if Set_BellFR and Set_BellDr then}
  232. SET BELL TO {Set_BellFR},{Set_BellDr}
  233. {  endif
  234.  endif}
  235. SET BELL {if Set_Bell}OFF{else}ON{endif}
  236. SET CARRY {if Set_Carry}ON{else}OFF{endif}
  237. SET CENTURY {if Set_Centry}ON{else}OFF{endif}
  238. SET CLOCK OFF
  239. SET CONFIRM {if Set_Confrm}ON{else}OFF{endif}
  240. {if Run_Drive then}
  241. SET DEFAULT TO {UPPER(Run_Drive)}
  242. {endif}
  243. SET DELIMITERS TO \
  244. {if not AT(CHR(34),Set_DelChr) then}"{Set_DelChr}"
  245. {  goto deliok;
  246.  endif
  247.  if not AT("'",Set_DelChr) then}'{Set_DelChr}'
  248. {  goto deliok;
  249.  endif
  250.  if !AT("[",Set_DelChr) or !AT("]",Set_DelChr) then}[{Set_DelChr}]
  251. {  goto deliok;
  252.  endif
  253. }
  254. ""
  255. {deliok:}
  256. SET DELIMITERS {if Set_Delim}ON{else}OFF{endif}
  257. SET DEVICE TO SCREEN
  258. SET ESCAPE {if Set_Escape}OFF{else}ON{endif}
  259. SET EXCLUSIVE OFF
  260. SET LOCK ON
  261. SET MESSAGE TO ""
  262. {if Run_Path then}
  263. SET PATH TO {Run_Path}
  264. {endif}
  265. SET PRINT OFF
  266. SET REPROCESS TO 4
  267. SET SAFETY {if Set_Safety}OFF{else}ON{endif}
  268. SET TALK OFF
  269.  
  270. *-- Initialize global variables
  271. gl_batch=.F.        && is a batch operation in progress
  272. gl_color= ISCOLOR() .AND. SET("DISPLAY") <> "CGAMONO"
  273. gn_error=0          && 0 if no error, otherwise an error occurred
  274. gn_scrsize={scrn_size}       && number of lines on screen
  275. gn_send=0           && return value from popup of position menus
  276. gn_trace=1          && sets trace level, however you need to change template
  277. gc_brdr='1'         && border to use when drawing boxes
  278. gc_dev='CON'        && Device to use for printing - See Proc. PrintSet
  279. gl_leave=.f.        && leave the application
  280. gc_prognum='  '     && internal program counter to handle nested menus
  281. gc_quit=' '         && memvar for return to caller
  282. gc_scope=''         && scope, for and while of position at runtime
  283. listval='NO_FIELD'  && Pick List value
  284.  
  285. *-- remove asterisk to turn clock on
  286. * SET CLOCK TO
  287.  
  288. *-- Blank the screen
  289. SET COLOR TO
  290. CLEAR
  291. SET SCOREBOARD OFF
  292. SET STATUS OFF
  293.  
  294. *-- Define menus
  295. DO MPDEF{tabto(41)}&& Menu Process DEFinition
  296.  
  297. *-- Execute main menu
  298. DO WHILE .NOT. gl_leave
  299.   DO {Appl_Menu} WITH "{if !Appl_Type then}B{else} {endif}00"
  300.   IF gc_quit = 'Q'
  301.     EXIT
  302.   ENDIF
  303.   gl_leave = _NodShake( " ;   Do you want to leave this application?   ", ;
  304.                         13, 18, 2, 44, .T. )
  305. ENDDO
  306.  
  307. *-- Reset environment
  308. DEACTIVATE WINDOW FullScr
  309. ?? Color(gc_color)
  310. gn_ApGen=gn_ApGen-1
  311. SET BELL  &gc_bell.
  312. SET CARRY &gc_carry.
  313. SET CLOCK &gc_clock.
  314. SET CENTURY &gc_century.
  315. SET CONFIRM &gc_confirm.
  316. SET CURSOR  &gc_cursor.
  317. SET DELIMITERS &gc_deli.
  318. SET DISPLAY TO &gc_display.
  319. SET STATUS &gc_status.
  320. SET SAFETY &gc_safety.
  321. SET SCOREBOARD &gc_score.
  322. SET TALK   &gc_talk.
  323.  
  324. IF gn_Apgen < 1
  325.   ON KEY LABEL F1
  326.   CLEAR WINDOWS
  327.   CLEAR ALL
  328.   CLOSE ALL
  329.   CLOSE PROCEDURE
  330.   SET ESCAPE ON
  331.   SET MESSAGE TO ""
  332.   CLEAR
  333. ELSE
  334.   DEFINE WINDOW FullScr FROM 0,0 TO gn_oldsize+3,79 NONE
  335.   DEFINE WINDOW Savescr FROM 0,0 TO gn_oldsize,79 NONE
  336.   DEFINE WINDOW Helpscr FROM 0,0 TO gn_oldsize,79 NONE
  337.   ACTIVATE WINDOW FullScr
  338. ENDIF
  339.  
  340. {LMARG(1);}
  341. RETURN
  342. *-- EOP: {appl_name}
  343.  
  344. //--------------------------------
  345. // Add Application Procedure file
  346. // contains common programs
  347. //--------------------------------
  348. //
  349. {include "as_proc.cod";}
  350. PROCEDURE MPDEF
  351. *{replicate("-",69)}
  352. * Program......: MPDEF
  353. {do_as_headr( makec( @TREE ) );}
  354. * Description..: Defines all menus in the system for {appl_name}
  355. *{replicate("-",69)}
  356. {LMARG(3);}
  357.  
  358. IF gl_color
  359.   SET COLOR OF NORMAL TO {color=color(Clr_Text)}
  360.   SET COLOR OF MESSAGES TO {color(Clr_Messages)}
  361.   SET COLOR OF TITLES TO {color(Clr_Heading)}
  362.   SET COLOR OF HIGHLIGHT TO {color(Clr_Hghlight)}
  363.   SET COLOR OF BOX TO {color(Clr_Box)}
  364.   SET COLOR OF INFORMATION TO {color(Clr_Info)}
  365.   SET COLOR OF FIELDS TO {color(Clr_Fields)}
  366. ENDIF
  367. CLEAR
  368.  
  369. {if Disp_Sign then}
  370. *-- Sign-on banner
  371. //
  372. // Draw border
  373. //
  374. SET BORDER TO
  375. {if Mnu_Border != 3 then}
  376. @ {row1()},{col1()} TO {row2()},{col2()}\
  377. {case Mnu_Border of
  378.  0: // Panel}
  379.  PANEL\
  380. {2: // Double}
  381.  DOUBLE\
  382. {endcase}
  383.  COLOR {color(Clr_Box)}
  384. {endif}
  385. //
  386. // Display text
  387. //
  388. {foreach TEXT_ELEMENT flds}
  389. @ {row1()+Row_Positn},{col1()+Col_Positn} SAY {out_text_with_deli(flds);}
  390. {next flds;}
  391. @ {row1()+1},{col1()+1} FILL TO {row2()-1},{col2()-1} \
  392. COLOR {color(Clr_Messages)}
  393. //
  394. // Wait for a return key
  395. //
  396. @ {scrn_size+3},30 SAY " Press "+CHR(17)+CHR(196)+CHR(217)+" to continue. "
  397. SET CONSOLE OFF
  398. DO Wait4Key
  399. SET CONSOLE ON
  400. CLEAR
  401.  
  402. {endif // if Disp_Sign}
  403. //
  404. // default window if none defined for action
  405. //
  406. *-- Prevents clearing of menus from commands:
  407. *-- SET STATUS and SET SCOREBOARD
  408. DEFINE WINDOW FullScr FROM 0,0 TO {scrn_size+3},79 NONE
  409. *-- Position at runtime and batch process
  410. DEFINE WINDOW Savescr FROM 0,0 TO {scrn_size},79 NONE
  411. *-- F1 Help
  412. DEFINE WINDOW Helpscr FROM 0,0 TO {scrn_size},79 NONE
  413. IF gn_ApGen=1
  414.   *-- Pause message box
  415.   DEFINE WINDOW Pause FROM 15,00 TO 19,79 DOUBLE
  416. ENDIF
  417. ACTIVATE WINDOW FullScr
  418. @ {scrn_size+3},00
  419. @ {scrn_size+2},00 SAY "Loading..."
  420. //
  421. {x=LEN(Menu_Main) - 4;
  422.  if FILEDRIVE(Menu_Main) || !default_drive then
  423.    mainmenu=SUBSTR(Menu_Main,1,x);
  424.  else
  425.    mainmenu=default_drive + ":" + SUBSTR(Menu_Main,1,x);
  426.  endif
  427.  //
  428.  // Put first menu on black board before fortree loop
  429.  //
  430.  newframe(Menu_Main);
  431.  if not CREATE(mainmenu+".PRG") then;
  432.    PAUSE(fileroot(mainmenu)+".PRG"+read_only+any_key);
  433.    GOTO NoGen
  434.  endif
  435.  if not CREATE("$$$HELP.TMP") then;
  436.    PAUSE("$$$HELP.TMP"+read_only+any_key);
  437.    GOTO NoGen
  438.  endif
  439.  fileerase(mainmenu+".DBO");
  440. }
  441. //
  442. {foreach TREE mtree
  443.  if demo_version == 1 then
  444.    if COUNTC(mtree) > 5 then
  445.      pause(exceed_limit+any_key);
  446.      goto finish;
  447.    endif
  448.  endif
  449.  x=1;
  450.  strng1 = mactions = "";
  451.  itemview = itemndx = itemord = 0;
  452.  mnuname=Menu_Name;
  453.  mtype=STR(Menu_Type);
  454.  prgcnt=COUNTC(mtree);
  455.  midentify="";
  456.  
  457.  LMARG(3);
  458.  //
  459.  // Write Menu definition program
  460.  //
  461.  APPEND(appl_name+".PRG");}
  462. SET BORDER TO \
  463. {case Mnu_Border of
  464.  0: // Panel}
  465. PANEL
  466. {1: // Single}
  467. SINGLE
  468. {2: // Double}
  469. DOUBLE
  470. {3: // None}
  471. NONE
  472. {endcase
  473.  case Menu_Type of
  474.  2: // Popup define
  475.    is_popups=1;
  476.    browse_no_clear = "";}
  477.  
  478. *-- Popup
  479. DEFINE POPUP {mnuname} FROM {row1()},{col1()} TO {row2()},{col2()} ;
  480. MESSAGE {if Menu_Prmpt then}"{Menu_Prmpt}"{else}{mnu_messag}{endif}
  481. //
  482. {  foreach FLD_ELEMENT flds}
  483. //
  484.   DEFINE BAR {Row_Positn} OF {mnuname} PROMPT "{Fld_Pictur}" \
  485. {if Item_Prmpt then}MESSAGE "{Item_Prmpt}"{endif} \
  486. {if ItemSkipIf then}SKIP FOR\
  487.  {ItemSkipIf}{else}{if !Menu_Act then} SKIP{endif}{endif}
  488. {if Item_Ovride == 1 then itemover(flds); endif}
  489. {if Brow_Clear == 1 then
  490.     browse_no_clear = " BLANK " ;
  491.  endif}
  492. {  next flds;}
  493. //
  494. // set call to action procedure.
  495. //
  496. ON SELECTION POPUP {mnuname} {browse_no_clear}DO ACT0{prgcnt}
  497. {  browse_no_clear = "";}
  498. //
  499. // File, Structure and Value pick lists all make use of a variable listval.
  500. // --------------------------------------------------------------------
  501. {3: // Files
  502.    is_popups=1;}
  503. DEFINE POPUP {mnuname} FROM {row1()},{col1()} TO {row2()},{col2()} \
  504. PROMPT FILES LIKE {if Pick_File then}{Pick_File} {else}*.* {endif};
  505. MESSAGE \
  506. {  foreach FLD_ELEMENT flds
  507.      strng=Item_Prmpt;
  508.    next flds;
  509.  if strng then}
  510. "{strng}"
  511. {else
  512.    if Menu_Prmpt then}
  513. "{Menu_Prmpt}"
  514. {  else
  515.  mnu_messag}
  516.  
  517. {  endif
  518.  endif}
  519. ON SELECTION POPUP {mnuname} DO ACT0{prgcnt}
  520. {  foreach FLD_ELEMENT flds
  521. if Item_Ovride == 1 then itemover(flds); endif
  522.   next flds;
  523. //
  524.  4: // Structure
  525.    is_popups=1;}
  526. DEFINE POPUP {mnuname} FROM {row1()},{col1()} TO {row2()},{col2()} \
  527. PROMPT STRUCTURE ;
  528. MESSAGE \
  529. {  foreach FLD_ELEMENT flds
  530.     strng=Item_Prmpt;
  531.    next flds;
  532.  if strng then}
  533. "{strng}"
  534. {else}
  535. {  if Menu_Prmpt then}
  536. "{Menu_Prmpt}"
  537. {  else
  538.  mnu_messag}
  539.  
  540. {  endif
  541.  endif}
  542. ON SELECTION POPUP {mnuname} DO ShowPick
  543. {  foreach FLD_ELEMENT flds
  544.  if Item_Ovride == 1 then itemover(flds); endif
  545.  midentify=PICK_FIELD;
  546.    next flds;}
  547. //
  548. {5: // Values
  549.    is_popups=1;
  550.    if !Pick_Value || UPPER(Pick_Value) == "&LISTVAL" then}
  551. DEFINE POPUP {mnuname} FROM {row1()},{col1()}
  552.   DEFINE BAR 1 OF {mnuname} PROMPT "  No Field defined " SKIP
  553. {  else}
  554. DEFINE POPUP {mnuname} FROM {row1()},{col1()} TO {row2()},{col2()} \
  555. PROMPT FIELD {Pick_Value} ;
  556. MESSAGE \
  557. {    foreach FLD_ELEMENT flds
  558.        strng=Item_Prmpt;
  559.      next flds;
  560.      if strng then}
  561. "{strng}"
  562. {    else
  563.        if Menu_Prmpt then}
  564. "{Menu_Prmpt}"
  565. {      else
  566.  mnu_messag}
  567.  
  568. {      endif
  569.      endif
  570.    endif}
  571. ON SELECTION POPUP {mnuname} DO ACT0{prgcnt}
  572. {  foreach FLD_ELEMENT flds
  573.  if Item_Ovride == 1 then itemover(flds); endif
  574.    next flds;
  575. // --------------------------------------------------------------------
  576. //
  577.  7: // Bar define
  578.    is_menus=1;}
  579.  
  580. *-- Bar
  581. DEFINE MENU {mnuname} MESSAGE \
  582. {  if Menu_Prmpt then}
  583. "{Menu_Prmpt}"
  584. {  else}
  585. 'Position with: '+CHR(27)+CHR(26)+' - <Enter> to select choice - <F1> Help'
  586. {  endif
  587.     x=0;
  588.     pulldown=0;
  589.  
  590.     foreach FLD_ELEMENT flds
  591.       ++x;
  592.       //
  593.       // if for some reason there is an entry in the list
  594.       // without text ie. corrupted data, skip it.
  595.       //
  596.       if !Fld_Pictur goto loophpad;}
  597. //
  598. // use the menu name and the letter option on each pad
  599. //
  600.   DEFINE PAD PAD_{x} OF {mnuname} PROMPT "{Fld_Pictur}" \
  601. AT {Row_Positn+Row1()},{Col_Positn+Col1()} \
  602. {     if Item_Prmpt then}MESSAGE "{Item_Prmpt}"{endif}
  603. //
  604. // if the action is to open a menu then find out whether it's a popup
  605. //
  606. {     if Menu_Act == 1 && Open_Type then}
  607. //
  608. // if it is a popup is it a pulldown or not.
  609. //
  610.   ON {if Pldwn_Menu then}SELECTION {endif}\
  611. PAD PAD_{x} OF {mnuname} \
  612. {if Pldwn_Menu then}
  613. DO ACT0{prgcnt}
  614. {else}
  615. ACTIVATE POPUP {Open_Menu}
  616. {endif
  617.       else
  618.  if Item_Ovride == 1 then itemover(flds); endif}
  619. //
  620. // set call to action procedure.
  621. //
  622.   ON SELECTION PAD PAD_{x} OF {mnuname} DO ACT0{prgcnt}
  623. {     endif
  624.       loophpad:
  625.     next flds;
  626.   btch:}
  627.  
  628. *-- {mnuname} - batch object.
  629. { otherwise:}
  630.  
  631. *-- {mnuname} - not a defined object yet.
  632. {endcase // endcase Menu_Type}
  633. ?? "."
  634.  
  635. //-------------------------------------------
  636. // Create program control loop for each menu.
  637. //-------------------------------------------
  638. {
  639.  APPEND(mainmenu+".PRG");
  640.  
  641. }
  642. {LMARG(1);}
  643. PROCEDURE {mnuname}
  644. PARAMETER entryflg
  645. *{replicate("-",69)}
  646. * Program......: {mnuname}.PRG
  647. {do_as_headr( flds );}
  648. * Description..: Menu actions
  649. *{replicate("-",69)}
  650. {LMARG(3);}
  651. PRIVATE gc_prognum\
  652. {if menusave then}
  653. , lc_ApGen\
  654. {endif}
  655.  
  656. gc_prognum="0{prgcnt}"
  657. {if menusave then}
  658. lc_ApGen=LTRIM(STR(gn_ApGen))+"{prgcnt}"
  659. {endif}
  660. {if prgcnt == 1 then}
  661. SET COLOR OF NORMAL TO {color}
  662. CLEAR
  663. {  if !menusave then}
  664. PRIVATE lc_ApGen
  665. lc_ApGen=LTRIM(STR(gn_ApGen))
  666. {  endif}
  667. {endif}
  668. {if Menu_Type == s_pick then}
  669.  
  670. IF LEFT(entryflg,1)="A"
  671.   DO ACT0{prgcnt}
  672.   RETURN
  673. ENDIF
  674. {endif}
  675.  
  676. {if Menu_Type == bar then}
  677. SAVE SCREEN TO SET0{prgcnt}&lc_Apgen.
  678. {endif}
  679. DO SET0{prgcnt // global counter tracks number of procedures}
  680. IF gn_error > 0
  681.   gn_error=0
  682.   RETURN
  683. ENDIF
  684. {if Menu_Before then}
  685.  
  686. *-- Before menu code
  687. { foreach Menu_Before
  688.     print(Menu_Before+CHR(10));
  689.   next
  690. }
  691.  
  692. {endif}
  693. {if menusave && Menu_type == bar then}
  694. SET BORDER TO
  695. {  if Mnu_Border != 3 then}
  696. @ {row1()},{col1()} TO {row2()},{col2()}\
  697. {    case Mnu_Border of}
  698. {    0:}
  699.  PANEL\
  700. {    2:}
  701.  DOUBLE\
  702. {    endcase}
  703.  COLOR {color(Clr_Box)}
  704. {  endif}
  705. @ {row1()+1},{col1()+1} CLEAR TO {row2()-1},{col2()-1}
  706. @ {row1()+1},{col1()+1} FILL TO {row2()-1},{col2()-1} \
  707. COLOR {color(Clr_Messages)}
  708. {  foreach FLD_ELEMENT}
  709. @ {Row_Positn+Row1()},{Col_Positn+Col1()} SAY "{Fld_Pictur}" \
  710. COLOR {color(Clr_Messages)}
  711. {  next  }
  712. {endif}
  713.  
  714. {if Menu_Type == s_pick then}
  715. lc_fldlst=''
  716. {  if midentify then}
  717. SET FIELDS TO {midentify}
  718.  
  719. {  endif}
  720. ON KEY LABEL CTRL-W DEACTIVATE POPUP
  721. IF TYPE("lc_window")="U"
  722.   DEFINE WINDOW ShowPick FROM 17,0 TO 21,60 DOUBLE
  723.   ACTIVATE WINDOW ShowPick
  724. ENDIF
  725. ACTIVATE SCREEN
  726. {endif
  727.  if Menu_Type == btch then // batch process}
  728. //
  729. // Perform batch actions
  730. //
  731. lc_popmenu="{mnuname}"
  732. DO ACT0{prgcnt}
  733. {else}
  734. //
  735. // Pick_Value has the field the pick list is based on
  736. //
  737. {  if Menu_Type == v_pick then}
  738. SET BORDER TO \
  739. {case Mnu_Border of
  740.  0: // Panel}
  741. PANEL
  742. {1: // Single}
  743. SINGLE
  744. {2: // Double}
  745. DOUBLE
  746. {3: // None}
  747. NONE
  748. {endcase}
  749. DEFINE POPUP {mnuname} FROM {row1()},{col1()} TO {row2()},{col2()} \
  750. PROMPT FIELD {if Pick_Value then}{Pick_Value} {else}&listval. {endif}\
  751. MESSAGE \
  752. {  foreach FLD_ELEMENT flds
  753.      strng=Item_Prmpt;
  754.    next flds;
  755.  if strng then}
  756. "{strng}"
  757. {else
  758.    if Menu_Prmpt then}
  759. "{Menu_Prmpt}"
  760. {  else
  761.  mnu_messag}
  762.  
  763. {  endif
  764.  endif}
  765. ON SELECTION POPUP {mnuname} DO ACT0{prgcnt}
  766. SET BORDER TO
  767. {  endif}
  768. //
  769. // Activate the pad menu or popup.
  770. //
  771. ACTIVATE {if Menu_Type == bar then}MENU {else}POPUP {endif}{mnuname}
  772. {endif}
  773.  
  774. {if Menu_Type == bar then}
  775. RESTORE SCREEN FROM SET0{prgcnt}&lc_Apgen.
  776. RELEASE SCREEN SET0{prgcnt}&lc_apgen
  777. {endif
  778.  if Menu_Type == s_pick then}
  779. IF TYPE("lc_window")="U"
  780.   DEACTIVATE WINDOW ShowPick
  781.   RELEASE WINDOW ShowPick
  782. ENDIF
  783. ON KEY LABEL CTRL-W
  784. IF RIGHT(lc_fldlst,1)="," .AND. LASTKEY() <> 27
  785.   listval=LEFT(lc_fldlst,LEN(lc_fldlst)-1)
  786.   DO ACT0{prgcnt}
  787. ENDIF
  788.  
  789. {endif}
  790. {if Menu_After then}
  791. *-- After menu
  792. { foreach Menu_After
  793.     print(Menu_After+CHR(10));
  794.   next
  795. }
  796.  
  797. {endif}
  798. {LMARG(1);}
  799. RETURN
  800. *-- EOP: {mnuname}
  801.  
  802. // Setup procedure
  803. // 1) Set help file to call
  804. // 2) set colors
  805. // 3) ? menu level database
  806. // 4 conditional before code (flag var to handle calls to other menus)
  807. //
  808. {include "AS_SETUP.COD"
  809.  nosub:
  810.  //
  811.  // Actions procedure
  812.  //
  813.  include "AS_ACTN.COD"
  814.  //
  815.  // Help procedure
  816.  //
  817.  APPEND("$$$HELP.TMP");
  818.  //
  819.  include "AS_HELP.COD"
  820.  
  821.  next mtree;
  822.  
  823.  finish:
  824.  //
  825.  // End of fortree loop
  826.  //
  827.  APPEND(appl_name+".PRG");
  828. }
  829. {LMARG(1);}
  830. RETURN
  831. *-- EOP: MPDEF.PRG
  832.  
  833. //
  834. // Top half of help
  835. //
  836. PROCEDURE 1HELP1
  837. *--------------------------------------------------------------------
  838. * Handle F1 - Help during program execution
  839. *--------------------------------------------------------------------
  840. {LMARG(3);}
  841. PRIVATE lc_popmenu, ll_errbox, ll_status
  842.  
  843. ON KEY LABEL F1
  844. {if is_popups || is_menus then}
  845. lc_popmenu=\
  846. {if is_popups && is_menus then}
  847. IIF( "" = POPUP(), MENU(), POPUP() )
  848. {else}
  849. {  if is_popups then}
  850. POPUP()
  851. {  endif}
  852. {  if is_menus then}
  853. MENU()
  854. {  endif}
  855. {endif}
  856. {endif}
  857. ll_status = SET( "STATUS" ) = "ON"
  858. IF ll_status
  859.   SAVE SCREEN TO ls_status
  860.   SET STATUS OFF
  861.   RESTORE SCREEN FROM ls_status
  862. ELSE
  863.   ACTIVATE WINDOW Helpscr
  864. ENDIF
  865. SET ESCAPE OFF
  866. ACTIVATE SCREEN
  867. @ 0,0 CLEAR TO 21,79
  868. @ 1,0 TO 21,79 COLOR {color(Clr_Box)}
  869. @ {scrn_size+3},00
  870. @ 0,0 SAY ""
  871. ll_errbox = .F.
  872. DO CASE
  873. //
  874. // end of top half
  875. //
  876. {COPY("$$$HELP.TMP");}
  877. //
  878. // Bottom half of help
  879. //
  880.   OTHERWISE
  881.     DO _Err_Box WITH "Unknown menu name, help was never defined."
  882.     ll_errbox = .T.
  883. ENDCASE
  884.  
  885. IF .NOT. ll_errbox
  886.   @ {scrn_size+3},26 SAY "Press any key to continue..."
  887.   SET CONSOLE OFF
  888.   DO Wait4Key
  889.   SET CONSOLE ON
  890. ENDIF
  891.  
  892. SET ESCAPE {IF set_escape}OFF{ELSE}ON{ENDIF}
  893. @ {scrn_size+3},00
  894. IF ll_status
  895.   SET STATUS ON
  896.   RESTORE SCREEN FROM ls_status
  897.   RELEASE SCREEN ls_status
  898. ELSE
  899.   DEACTIVATE WINDOW Helpscr
  900. ENDIF
  901. ON KEY LABEL F1 DO 1HELP1
  902. {LMARG(1);}
  903. RETURN
  904. *-- EOP: 1HELP1
  905. {fileerase("$$$HELP.TMP");
  906.  pause(gen_complete+any_key);
  907. //
  908.  NoGen:
  909. //
  910.  return 0;
  911. //-----------------------------------
  912. // User defined function include file.
  913. //-----------------------------------
  914.  include "as_udf.cod";}
  915. // EOP AS_MENU.COD
  916.