home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: AS_SETUP.COD
- // Description: Setup for current menu
- //
- PROCEDURE SET0{prgcnt}
- *{replicate("-",69)}
- * {mnuname} setup routine. This procedure will open up the file or
- * view for this menu, and setup the color scheme.
- {if !menusave && Menu_Type == bar then}
- * It will then paint the menu on the screen.
- {endif}
- *{replicate("-",69)}
- {LMARG(3);}
-
- ON KEY LABEL F1 DO 1HELP1{tabto(41)}&& Define F1-Help key
- //
- // capture the menu level database/view
- //
- {if (not Menu_Ovride) or (not Menu_View) or (global_view == Menu_View) then
- gc_view = global_view;
- //
- // capture the menu level index(es)
- //
- if (not Menu_Ovride) or (not Menu_NDX) or (global_ndx == Menu_NDX) then
- gc_ndx = global_ndx;
- else
- gc_ndx = Menu_NDX;
- endif
- //
- // capture the menu level index order(s)
- //
- if (not Menu_Ovride) or (not Menu_Order) or (global_ord == Menu_Order) then
- gc_ord = global_ord;
- else
- gc_ord = Menu_Order;
- endif
- else
- gc_view = Menu_View;
- gc_ndx = Menu_NDX;
- gc_ord = Menu_Order;
- endif
- }
- {if Menu_Ovride != 2 then}
-
- DO DBF0{prgcnt}{tabto(41)}&& open menu level database
- {endif}
- {if Menu_Type != btch then}
-
- IF gn_error = 0
- IF gl_color .AND. .NOT. SET("ATTRIBUTES") = ;
- "\
- {
- color(Clr_Text)+","+color(Clr_Hghlight)+",N/N "}"+CHR(38)+CHR(38)+" \
- {color(Clr_Messages)+","+color(Clr_Heading)+
- ","+color(Clr_Box)+","+color(Clr_Info)+","+color(Clr_Fields)
- }"
- SET COLOR OF NORMAL TO {color(Clr_Text)}
- SET COLOR OF MESSAGES TO {color(Clr_Messages)}
- SET COLOR OF TITLES TO {color(Clr_Heading)}
- SET COLOR OF HIGHLIGHT TO {color(Clr_Hghlight)}
- SET COLOR OF BOX TO {color(Clr_Box)}
- SET COLOR OF INFORMATION TO {color(Clr_Info)}
- SET COLOR OF FIELDS TO {color(Clr_Fields)}
- ENDIF
- {endif}
- //
- // if the pad menu has a box around it, draw it.
- //
- {if !menusave && Menu_Type == bar then}
-
- DO SET0{prgcnt}A{tabto(41)}&& Paint the bar menu
-
- {endif}
- //
- {if Menu_Type != btch then}
- ENDIF
-
- {endif}
- {LMARG(1);}
- RETURN
- *-- EOP: SET0{prgcnt} - Menu {mnuname}
- {if !menusave && Menu_Type == bar then}
-
- PROCEDURE SET0{prgcnt}A
- *{replicate("-",69)}
- * {mnuname} menu paint routine.
- *{replicate("-",69)}
- {LMARG(3);}
- PRIVATE ll_exact
- SET BORDER TO
- { if Mnu_Border != 3 then}
- @ {row1()},{col1()} TO {row2()},{col2()}\
- { case Mnu_Border of}
- { 0:}
- PANEL\
- { 2:}
- DOUBLE\
- { endcase}
- COLOR {color(Clr_Box)}
- { endif}
- @ {row1()+1},{col1()+1} CLEAR TO {row2()-1},{col2()-1}
- @ {row1()+1},{col1()+1} FILL TO {row2()-1},{col2()-1} \
- COLOR {color(Clr_Messages)}
- { foreach FLD_ELEMENT}
- @ {Row_Positn+Row1()},{Col_Positn+Col1()} SAY "{Fld_Pictur}" \
- COLOR {color(Clr_Messages)}
- { next
- x=0;
- foreach FLD_ELEMENT
- if Menu_act == 1 then
- if !x then
- x=1;}
- ll_exact = SET("EXACT") = "ON"{tabto(41)}&& Save Exact state
- SET EXACT ON{tabto(41)}&& Force Exact on for menu name compare
- lc_popup = POPUP(){tabto(41)}&& Find out the active pulldown
-
- *-- Determine which menu pad to draw as highlight
- { endif}
- IF lc_popup = "{Open_menu}"
- @ {Row_Positn+Row1()},{Col_Positn+Col1()} SAY "{Fld_Pictur}" \
- COLOR {color(Clr_Hghlight)}
- ENDIF
- { endif
- next
- if x then}
- IF .NOT. ll_exact{tabto(41)}&& If Exact was off
- SET EXACT OFF{tabto(41)}&& Turn it back off
- ENDIF
- { endif}
- {LMARG(1);}
-
- RETURN
- *-- EOP: SET0{prgcnt}A - Menu {mnuname}
- {endif}
-
- {if Menu_Ovride != 2 then}
- PROCEDURE DBF0{prgcnt}
- *{replicate("-",69)}
- * {mnuname} open DBF or view procedure
- *{replicate("-",69)}
- {LMARG(3);}
- PRIVATE lc_message
- CLOSE DATABASES
- *-- Open menu level view/database
- { dbfOpen(gc_view,gc_ndx,gc_ord,1);}
- {LMARG(1);}
- RETURN
- *-- EOP: DBF0{prgcnt} - Menu {mnuname}
-
- {endif}
- // EOP AS_SETUP.COD
-