home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / macify13.shr / macify.hqx / Source / U / About_Dialog.c next >
Text File  |  1991-03-15  |  3KB  |  106 lines

  1. /* About_Dialog */
  2.  
  3. /* File name: About_Dialog */
  4. /* Function: Handle a modal dialog */
  5. /* History: 3/15/91 Original by Prototyper 3.0   */
  6.  
  7. #include "PCommonMacify.h"    /* Common */
  8. #include "Common_Macify.h"    /* Common */
  9. #include "PUtils_Macify.h"    /* General Utilities */
  10. #include "Utils_Macify.h"    /* General Utilities */
  11.  
  12. #include "About_Dialog.h"    /* This file */
  13.  
  14.  
  15. /* ======================================================= */
  16.  
  17.  
  18.  
  19. /* Routine: D_Init_About_Dialog */
  20. /* Purpose: This routine is called while when the program is first run. */
  21. /*     This is used for onetime initialization. */
  22. void D_Init_About_Dialog()
  23. {
  24.  
  25. }                                                                                /* End of procedure */
  26.  
  27.  
  28. /* ======================================================= */
  29.  
  30.  
  31. /* Routine: D_Filter_About_Dialog */
  32. /* Purpose: This routine is called while inside of the Modal Dialog filter */
  33. /*     theDialog is the dialog(alert) pointer */
  34. /*     theEvent is the event that we are to see if we should filter */
  35. /*     itemHit is the item we set if we handle the event ourselves */
  36. Boolean D_Filter_About_Dialog(theDialog, theEvent, itemHit)
  37. DialogPtr    theDialog;
  38. EventRecord    *theEvent;
  39. short    *itemHit;
  40. {
  41. Boolean    Filter_About_Dialog;
  42.  
  43. Filter_About_Dialog = FALSE;                                             /* Let the modal routine handle it */
  44.  
  45. return(Filter_About_Dialog);
  46. }                                                                                /* End of function */
  47.  
  48.  
  49. /* ======================================================= */
  50.  
  51.  
  52. /* Routine: D_Refresh_About_Dialog */
  53. /* Purpose: Refresh the modal dialog */
  54. void D_Refresh_About_Dialog(theDialog)
  55. DialogPtr    theDialog;
  56. {
  57.  
  58. }                                                                                /* End of procedure */
  59.  
  60.  
  61. /* ======================================================= */
  62.  
  63.  
  64. /* Routine: D_Setup_About_Dialog */
  65. /* Purpose: Setup the modal dialog */
  66. void D_Setup_About_Dialog(theDialog)
  67. DialogPtr    theDialog;
  68. {
  69.  
  70. }                                                                                /* End of procedure */
  71.  
  72.  
  73. /* ======================================================= */
  74.  
  75.  
  76. /* Routine: D_Hit_About_Dialog */
  77. /* Purpose: Hit in the modal dialog */
  78. void D_Hit_About_Dialog( theDialog,  itemHit,  ExitDialog)
  79. DialogPtr    theDialog;
  80. short    itemHit;
  81. Boolean    *ExitDialog;
  82. {
  83.  
  84. if (itemHit ==Res_Dlg_OK)                                                 /* Handle the Button being pressed */
  85.     {
  86.     }
  87.  
  88. }                                                                                /* End of procedure */
  89.  
  90.  
  91. /* ======================================================= */
  92.  
  93.  
  94. /* Routine: D_Exit_About_Dialog */
  95. /* Purpose: Exit the modal dialog */
  96. void D_Exit_About_Dialog(theDialog)
  97. DialogPtr    theDialog;
  98. {
  99.  
  100. }                                                                                /* End of procedure */
  101.  
  102.  
  103. /* ======================================================= */
  104.  
  105.  
  106.