home *** CD-ROM | disk | FTP | other *** search
- /* About_Dialog */
-
- /* File name: About_Dialog */
- /* Function: Handle a modal dialog */
- /* History: 5/9/91 Original by Prototyper 3.0 */
-
- #include "PCommonTextMaster.h" /* Common */
- #include "Common_TextMaster.h" /* Common */
- #include "PUtils_TextMaster.h" /* General Utilities */
- #include "Utils_TextMaster.h" /* General Utilities */
-
- #include "About_Dialog.h" /* This file */
-
-
- /* ======================================================= */
-
-
-
- /* Routine: D_Init_About_Dialog */
- /* Purpose: This routine is called while when the program is first run. */
- /* This is used for onetime initialization. */
- void D_Init_About_Dialog()
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Filter_About_Dialog */
- /* Purpose: This routine is called while inside of the Modal Dialog filter */
- /* theDialog is the dialog(alert) pointer */
- /* theEvent is the event that we are to see if we should filter */
- /* itemHit is the item we set if we handle the event ourselves */
- Boolean D_Filter_About_Dialog(theDialog, theEvent, itemHit)
- DialogPtr theDialog;
- EventRecord *theEvent;
- short *itemHit;
- {
- Boolean Filter_About_Dialog;
-
- Filter_About_Dialog = FALSE; /* Let the modal routine handle it */
-
- return(Filter_About_Dialog);
- } /* End of function */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Refresh_About_Dialog */
- /* Purpose: Refresh the modal dialog */
- void D_Refresh_About_Dialog(theDialog)
- DialogPtr theDialog;
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Setup_About_Dialog */
- /* Purpose: Setup the modal dialog */
- void D_Setup_About_Dialog(theDialog)
- DialogPtr theDialog;
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Hit_About_Dialog */
- /* Purpose: Hit in the modal dialog */
- void D_Hit_About_Dialog( theDialog, itemHit, ExitDialog)
- DialogPtr theDialog;
- short itemHit;
- Boolean *ExitDialog;
- {
-
- if (itemHit ==Res_Dlg_OK) /* Handle the Button being pressed */
- {
- }
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Exit_About_Dialog */
- /* Purpose: Exit the modal dialog */
- void D_Exit_About_Dialog(theDialog)
- DialogPtr theDialog;
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
-