home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
source
/
macify13.shr
/
macify.hqx
/
Source
/
U
/
About_Dialog.c
next >
Wrap
Text File
|
1991-03-15
|
3KB
|
106 lines
/* About_Dialog */
/* File name: About_Dialog */
/* Function: Handle a modal dialog */
/* History: 3/15/91 Original by Prototyper 3.0 */
#include "PCommonMacify.h" /* Common */
#include "Common_Macify.h" /* Common */
#include "PUtils_Macify.h" /* General Utilities */
#include "Utils_Macify.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 */
/* ======================================================= */