home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Appearance SDK 1.0.4 / Appearance Sample Code / Source / MegaPane.cp < prev    next >
Encoding:
Text File  |  1999-07-16  |  616 b   |  48 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        MegaPane.cp
  3.  
  4.     Contains:    Base class for panes in our MegaDialog.
  5.  
  6.     Version:    Appearance 1.0 SDK
  7.  
  8.     Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Edward Voas
  13.  
  14.         Other Contact:        7 of 9, Borg Collective
  15.  
  16.         Technology:            OS Technologies Group
  17.  
  18.     Writers:
  19.  
  20.         (edv)    Ed Voas
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <1>     9/11/97    edv        First checked in.
  25. */
  26.  
  27. #include "MegaPane.h"
  28.  
  29. MegaPane::MegaPane( DialogPtr dialog, SInt16 items )
  30. {
  31.     fDialog = dialog;
  32.     fOrigItems = items;
  33. }
  34.  
  35. MegaPane::~MegaPane()
  36. {
  37. }
  38.  
  39. void
  40. MegaPane::ItemHit( SInt16 )
  41. {
  42. }
  43.  
  44. void
  45. MegaPane::Idle()
  46. {
  47. }
  48.