home *** CD-ROM | disk | FTP | other *** search
- /* Help_window_2 */
-
- /* File name: Help_window_2 */
- /* 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 "Help_window_2.h" /* This file */
-
-
- /* ======================================================= */
-
-
-
- /* Routine: D_Init_Help_window_2 */
- /* Purpose: This routine is called while when the program is first run. */
- /* This is used for onetime initialization. */
- void D_Init_Help_window_2()
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Filter_Help_window_2 */
- /* 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_Help_window_2(theDialog, theEvent, itemHit)
- DialogPtr theDialog;
- EventRecord *theEvent;
- short *itemHit;
- {
- Boolean Filter_Help_window_2;
-
- Filter_Help_window_2 = FALSE; /* Let the modal routine handle it */
-
- return(Filter_Help_window_2);
- } /* End of function */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Refresh_Help_window_2 */
- /* Purpose: Refresh the modal dialog */
- void D_Refresh_Help_window_2(theDialog)
- DialogPtr theDialog;
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Setup_Help_window_2 */
- /* Purpose: Setup the modal dialog */
- void D_Setup_Help_window_2(theDialog)
- DialogPtr theDialog;
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Hit_Help_window_2 */
- /* Purpose: Hit in the modal dialog */
- void D_Hit_Help_window_2( theDialog, itemHit, ExitDialog)
- DialogPtr theDialog;
- short itemHit;
- Boolean *ExitDialog;
- {
-
- if (itemHit ==Res_Dlg_OK3) /* Handle the Button being pressed */
- {
- }
-
- if (itemHit ==Res_Dlg_Previous) /* Handle the Button being pressed */
- {
- }
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
- /* Routine: D_Exit_Help_window_2 */
- /* Purpose: Exit the modal dialog */
- void D_Exit_Help_window_2(theDialog)
- DialogPtr theDialog;
- {
-
- } /* End of procedure */
-
-
- /* ======================================================= */
-
-
-