home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: DS_DOC.COD
- // Description: Document template for dBASE IV 1.5
- // Notes : Stand alone file to produce Application documentation
- // compile and use separately
- //
-
- Application Documentation Template
- ----------------------------------
- Version 1.5
- Borland International (c) 1987, 1988, 1989, 1990, 1991
-
- {
- include "applctn.def" // Applicaton Selectors
- include "builtin.def" // Builtin Functions
-
- var bnl_formname, // Name of BNL file to newframe if argument() has value
- arg_list;
-
- arg_list = argument()
- if arg_list != "" then
- bnl_formname = token( ",", arg_list, 1 )
- if !newframe( bnl_formname ) then
- return -1;
- endif
- endif
-
- //--------------------------
- // Declare global variables.
- //--------------------------
- var ask_user, // Variable to get input from user.
- barcount, // Counter for printing bar menus.
- cnt, // Counter variable
- crlf, // Line feed character.
- global_View,// View from application object.
- global_NDX, // Index string from application object.
- global_Ord, // Order string from application object.
- graph_prt, // Logical variable (0,1) to determine what type of box to draw.
- line, // Variable to grab image from Screen()
- linecnt, // Line counter
- mdoc, // Variable to store name of application object.
- mspace, mspace2, // Space variables for graphics box dump
- org_appl, // Store application frame name if we started on one.
- pagecnt, // Page count.
- print_head, // Logical variable (0,1) to test printing of heading.
- forflag, barflag,// Logical Variables for graphics box dump
- scrn_size, // Size of screen we are generating on
- display, // Type of display
- default_drv,// dBASE default drive
- temp_strng, // Variable to temporary string
- temp_strng2;// Variable to temporary string
- //------------------------------------------------
- // Assign default values to some of the variables.
- //------------------------------------------------
- temp_strng = temp_strng2 = ask_user = "";
- global_View = Appl_View; // Set global application dbf/view
- global_NDX = Appl_NDX; // Set global application ndx
- global_Ord = Appl_Order; // Set global application Order
- crlf = chr(10); // Store Linefeed chr(10) to variable
- pagecnt = 1; // Set page count to 1
- display=numset(_flgcolor);
- // Test screen size if display > 2 screen is 43 lines
- if display > ega25 then scrn_size = 43 else scrn_size = 25 endif;
-
- default_drv = strset(_defdrive);
- if filedrive(menu_name) or !default_drv then
- mdoc = alltrim(menu_name);
- else
- mdoc = default_drv + ":" + alltrim(menu_name);
- endif
- mdoc = upper(mdoc);
-
- //-------------------------------------------------------
- // Check to see if documentation file is already on disk.
- //-------------------------------------------------------
- if fileexist(mdoc+".DOC") and numset(_safety) then // dBASE safety on
- do while not at(upper(ask_user),"YN")
- ask_user = ASKUSER("Documentation file "+mdoc+".DOC already exists...Overwrite it (Y/N)?","N",1);
- enddo
- if upper(ask_user) == "N" then
- pause(gen_request + any_key);
- goto NoGen;
- endif
- endif
- //-------------------------------------------------------
- // Ask user if he has a IBM graphics compatible printer
- // graph_prt = 0 means no graphics, 1 means use graphics
- //-------------------------------------------------------
- ask_user="";
- do while not at(upper(ask_user),"YN")
- ask_user = ASKUSER("Do you have an IBM graphics compatible printer (Y/N)?","N",1);
- enddo
- if upper(ask_user) == "N" then graph_prt=0; else graph_prt=1; endif
- //-----------------
- // Open output file
- //-----------------
- if not create(mdoc+".DOC") then // File was read only
- pause(fileroot(mdoc)+".DOC" + read_only + any_key);
- goto nogen;
- endif
- }
- //------------------------------------------------
- // Print page number and author information
- //------------------------------------------------
- Page: {str(pagecnt)} Date: {ltrim(substr(date(),1,8))}
-
-
- Application Documentation for System: {fileroot(mdoc)}.PRG
-
- {if Appl_Authr then}
- Application Author: {Appl_Authr}
- {endif}
- {if Appl_Cpyrt then}
- Copyright Notice..: {Appl_Cpyrt}
- {endif}
- {if Appl_versn then}
- dBASE Version.....: {Appl_versn}
- {endif}
-
- //------------------------------------
- // Start processing application object
- //------------------------------------
- {if Menu_Type == app then}
-
- Display Application Sign-On Banner: {if Disp_Sign}Yes{else}No{endif}
- { org_appl=Menu_Name+".APP";
- if Disp_Sign then
- print(crlf);
- scrndump();
- endif
- }
-
- Main Menu to Open {if Disp_Sign then}after Sign-On{endif}: {upper(Menu_Main)}
-
- { endofpage();}
- Sets for Application:
- ---------------------
- Bell {if Set_Bell}OFF{else}ON {endif}\
- { if Set_BellFR and Set_BellDr then}
- Frequency {Set_BellFR} Duration {Set_BellDr}
- { else print(crlf);
- endif}
- Carry {if Set_Carry}ON{else}OFF{endif}
- Centry {if Set_Centry}ON{else}OFF{endif}
- Confirm {if Set_Confrm}ON{else}OFF{endif}
- Delimiters {if Set_Delim}ON Character {Set_DelChr}{else}OFF{endif}
- Display Size {scrn_size} lines
- Drive {if run_drive then}{upper(Run_Drive)}:{endif}
- Escape {if Set_Escape}OFF{else}ON{endif}
- Path {upper(Run_Path)}
- Safety {if Set_Safety}OFF{else}ON{endif}
-
- { endofpage();}
- Starting Colors for Application:
- --------------------------------
- // Call udf color() to get the all the different colors from the object.
- Color Settings:
- Text : {color(Clr_Text)}
- Heading : {color(Clr_Heading)}
- Highlight : {color(Clr_Hghlight)}
- { endofpage();}
- Box : {color(Clr_Box)}
- Messages : {color(Clr_Messages)}
- Information : {color(Clr_Info)}
- Fields : {color(Clr_Fields)}
-
- { endofpage();}
- // If user filled in application view
- { if Appl_View then}
- Database/View: {Appl_View}
- { endif}
- { if Appl_NDX then endofpage();}
- Index File(s): {Appl_NDX}
- { endif}
- { if Appl_Order then endofpage();}
- Index Order: {Appl_Order}
- { endif}
-
- { endofpage();
- print(replicate("=",79)+crlf);
- if not FILEEXIST(Menu_Main) then
- pause(no_main_menu + any_key);
- return 8; // resource file not found
- endif
- newframe(Menu_Main);
- endif // if Menu_Type == app}
-
- Menu/Picklist definitions follow:
- {print(replicate("-",33)+crlf);}
- //------------------------------------------------------------------------
- // This foreach TREE loop will start a menu tree walk of all objects
- // referenced by the application. This is the Main loop of any template
- // that processes all menu objects.
- //------------------------------------------------------------------------
- {foreach TREE menu
- pageject(); // A new menu is next
- ++pagecnt;
- print(crlf + "Page: " + str(pagecnt) + " Date: " +
- ltrim(substr(date(),1,8)) + crlf+crlf);
- temp_strng ="Layout Report for ";
- case Menu_Type of
- case popup:temp_strng = temp_strng + "Popup Menu: ";
- case bar: temp_strng = temp_strng + "Horizontal Bar Menu: ";
- case btch: temp_strng = ""; temp_strng = temp_strng +
- "Multiple Action Summary for Batch Object: ";
- endcase
- temp_strng = temp_strng + upper(Menu_Name);
- print(temp_strng+crlf);
- print(replicate("-",len(temp_strng))+crlf);}
-
- { scrndump(); // a user defined function to print a object on the screen}
-
- { endofpage();}
- Setup for {upper(Menu_Name)} follows:
- {print(replicate("-", len(Menu_Name+" follows:") + 10)+crlf);}
-
- { lmarg(2);}
- { if Menu_desc then}
- Description: {Menu_desc}
- { endif}
- { if Menu_Prmpt then}
- Message Line Prompt for Menu: {Menu_Prmpt}
- { endif}
-
- //
- // We use the inheritance paradigm for opening dbf/views. If the dbf/view
- // does not change from one object to another or from action to action we don't
- // want to keep opening them.
- //
- { if menu_ovride == 1 then}
- // if there is data in menu_view and that data does not equal the global_view
- // have dBASE open the new database.
- { if Menu_View and Menu_View != global_View then endofpage();}
- Database/View: {Menu_View}
- { endif}
- { if Menu_NDX and Menu_NDX != global_NDX then endofpage();}
- Index File(s): {Menu_NDX}
- { endif}
- { if Menu_Order and Menu_Order != global_Ord then endofpage();}
- Index Order: {Menu_Order}
- { endif}
-
- { endif}
- { if menu_ovride == 2 then}
- Use database/view and index file(s) in effect at run time.
-
- { endif}
- { lmarg(0);}
- { endofpage();}
- Colors for Menu/Picklist:
- -------------------------
- { endofpage();}
- Color Settings:
- Text : {color(Clr_Text)}
- Heading : {color(Clr_Heading)}
- Highlight : {color(Clr_Hghlight)}
- Box : {color(Clr_Box)}
- Messages : {color(Clr_Messages)}
- Information : {color(Clr_Info)}
- Fields : {color(Clr_Fields)}
-
- { endofpage();
- // See if menu_type is a Popup or Bar menu
- if Menu_Type == popup or Menu_Type == bar then
-
- temp_strng = "Help Defined for Menu "+upper(Menu_Name)+":";
- temp_strng2 = replicate("-",len(Menu_Name)+23);
- // Call udf get_text to print Help for object
- get_frame(@menu_help,temp_strng, temp_strng2);
-
- temp_strng = "Before Menu dBASE Code "+upper(Menu_Name)+":";
- temp_strng2 = replicate("-",len(Menu_Name)+24);
- get_frame(@menu_before,temp_strng, temp_strng2);
-
- temp_strng = "After Menu dBASE Code "+upper(Menu_Name)+":";
- get_frame(@menu_after,temp_strng, temp_strng2);
-
- print(crlf);
- endif
-
- lmarg(0); temp_strng = "";
- if Menu_Type == popup or Menu_Type == bar then
- temp_strng ="Bar actions for Menu " + upper(Menu_Name) + " follow:";
- endif
- if Menu_Type == f_pick or Menu_Type == s_pick or Menu_Type == v_pick then
- // Below is a another way to do the previous lines test
- // if at(alltrim(str(Menu_Type)),"345") then
- temp_strng = "Picklist specification for " + upper(Menu_Name) + " follows:";
- endif
- if Menu_Type == btch then
- temp_strng ="Batch actions for Menu "+upper(Menu_Name)+" follow:";
- endif
- if len(temp_strng) > 0 then
- print(temp_strng + crlf);
- print(replicate("-",len(temp_strng))+crlf);
- endif
- }
- //
- { if Menu_Type == f_pick then}
- Files Picklist
- --------------
- File Specification: {upper(Pick_File)}
-
- { endif}
- { if Menu_Type == s_pick then}
- Structure Picklist
- ------------------
- Field Specification: {upper(Pick_Field)}
-
- { endif}
- { if Menu_Type == v_pick then}
- Values Picklist
- ---------------
- Field to List Values for: {upper(Pick_Value)}
-
- { endif}
- { endofpage();}
- {
- barcount = 1;
- //-------------------------------------------------------------------------
- // Loop through each bar in the menu - each bar is a field in the generator
- //-------------------------------------------------------------------------
- foreach Fld_Element flds in menu
- lmarg(1);
- if at(alltrim(str(Menu_Type)),"279") then // Popup, Bar or Batch Menu
- if Menu_Type == btch then // Batch object
- temp_strng ="Batch Action: " + alltrim(str(barcount))
- else
- // Bar or Popup object
- temp_strng ="Bar: "+alltrim(str(barcount))
- endif
- print(temp_strng + crlf);
- endif
- lmarg(2);
- }
- { endofpage();}
- Prompt: {ltrim(Fld_Pictur)}
- { endofpage();}
- Action: \
- { case Menu_Act of}
- { case textno:}Text only defined for this option - NO ACTION
- { case open:}
- // Output type of menu/picklist to open
- Open a \
- { case Open_Type of}
- { case 0:}Bar Menu \
- { case 1:}Popup Menu \
- { case 2:}Files Picklist \
- { case 3:}Sturcture Picklist \
- { case 4:}Values Picklist \
- { endcase}
- Named: {Open_Menu}
- { case brow: include "dd_brow.cod";
- case edit: include "dd_edit.cod";
- case rept: include "dd_rept.cod";
- case labl: include "dd_labl.cod";
- case disp: include "dd_list.cod";
- case appd: include "dd_apnd.cod";
- case rcopy: include "dd_copy.cod";
- case repl: include "dd_repl.cod";
- case dele: include "dd_dele.cod";
- case reca: include "dd_recl.cod";
- case pack: include "dd_pack.cod";
- case indx:}New Index File {NDX_File}
- Index Key:
- {NDX_KEY} \
- { if NDX_tag}TAG {NDX_tag} OF {NDX_tagIn}{endif} \
- { if NDX_Unique then} UNIQUE{endif} \
- { if NDX_Descnd}DESCENDING{endif}
- { case rndx:}Reindex Current DBF:
- { case sort:include "dd_sort.cod";
- case impt:include "dd_impt.cod";
- case expt:include "dd_expt.cod";
- case fcopy:include "dd_fcopy.cod";
- case dodB:}
- Run dBASE Program: DO {PRG_File}\
- { if PRG_Parms then}
- WITH {PRG_Parms}
- { else}
- {// leave this space here}
- { endif}
- { case indB:}
- Insert the following dBASE code:
- ----------------------------------------
-
- { db_inlin();}
- { case xdos:}
- Run Dos Program - {DOS_File}\
- { if DOS_Parm then}
- {DOS_Parm}
- { else}
- { //leave this space here}
- { endif}
- { case Call:}
- Call Binary Program - {Bin_File}.bin\
- { if Bin_Parms then}
- WITH {Bin_Parms}
- { else}
- { //leave this space here}
- { endif}
- { case retu:}Return to calling program
- { case quit:}Quit to DOS:
- { case batch:}Call Batch Named: {fileroot(upper(Batch_Name))}
- { case plmac:}Play Back a NPI macro {Macro_Name}
- { endcase}
- { endofpage();}
- { if ItemSkipIf then}
- Bypass item on condition: {ItemSkipIf}
- { endif
- endofpage();
- include "ds_tpost.cod"
- include "ds_order.cod"
- endofpage();
- if Wndow_Name}
- Window {Wndow_Name} FROM {nul2zero(Wndow_X1)},{nul2zero(Wndow_Y1)} TO \
- {nul2zero(Wndow_X2)},{nul2zero(Wndow_Y2)} \
- { case Wndow_Bord of}{0:}Single{1:}Double{2:}Panel{3:}"{Wndow_Char}"{4:}None{endcase}
- {endif}
- { if Item_Prmpt then}
- Message Line Prompt for Item: {Item_Prmpt}
- { endif}
- //
- // See if the user wants the Item view
- { if item_ovride == 1 then}
- // See if menu level and item level dbf/view are different
- { if Item_View and Item_View != Menu_View then endofpage();}
- New Database/View: {Item_View}
- { endif}
- { if Item_NDX and Item_NDX != Menu_NDX then endofpage();}
- New Index File(s): {Item_NDX}
- { endif}
- { if Item_Order and Item_Order != Menu_Order then endofpage();}
- New Index Order: {Item_Order}
- { endif}
- { endif}
- { if item_ovride == 2 then}
- Use database/view and index file(s) in effect at run time.
- { endif}
- //------------------------------------------------------------------
- // Next four functions are user defined see ds_udf.cod
- //------------------------------------------------------------------
- { endofpage(); // Check for end of page
-
- temp_strng = "Help text defined for this item:";
- temp_strng2 = replicate("-",32);
- get_item(@item_help,temp_strng, temp_strng2, flds);
-
- temp_strng = "Before dBASE Code for this item:";
- get_item(@Item_Befor,temp_strng, temp_strng2, flds);
-
- temp_strng = "After dBASE Code for this item:";
- get_item(@Item_After,temp_strng, temp_strng2, flds);
-
- lmarg(0);
- print(replicate("-",80)+crlf+crlf);
- barcount = barcount + 1;
- endofpage();
- next flds; // end of foreach Fld_Element
- next menu; // end of fortree loop
- }
-
- End of Application Documentation
- {pause(gen_complete + any_key);
- // Jump label for no generation.
- NoGen:
- return 0;
- //
- // ------------------------------
- // User defined functions follow.
- // ------------------------------
- //
- include "ds_udf.cod";
- }
- // EOP DS_DOC.COD
-