home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Examples / UNIX-HatersTool / BBSwapWindow.h < prev    next >
Encoding:
Text File  |  1995-04-12  |  648 b   |  34 lines

  1. /* BBSwapWindow.h                 
  2.  *
  3.  * This our special window object. The only thing it does is trigger an
  4.  * inital swap for the SwapByMatrix view.
  5.  *
  6.  * Usage: Don't use it :-)
  7.  *          This dirty hack takes the trigger source object and the swapView...
  8.  *          then it just send the swapContents method.
  9.  *
  10.  * Written by:         Thomas Engel
  11.  * Created:            27.12.1994 (Copyleft)
  12.  * Last modified:     27.12.1994
  13.  * Copyright (C) 1995 Thomas Engel
  14.  */
  15.  
  16. #import <appkit/appkit.h>
  17.  
  18. @interface BBSwapWindow:Window
  19. {
  20.     id    swapView;
  21.     id    triggerSource;
  22. }
  23.  
  24. - makeKeyAndOrderFront:sender;
  25.  
  26. @end
  27.  
  28. /*
  29.  * History: 27.12.94 First test--should just work.
  30.  *
  31.  *
  32.  * Bugs: - No.
  33.  */
  34.