home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Connectivity / GateKeeper-2.1 / ToolBar.h < prev    next >
Encoding:
Text File  |  1997-03-04  |  1.4 KB  |  61 lines

  1. //************************************************************************
  2. //
  3. //    ToolBar.h.  
  4. //
  5. //        ToolBar control object
  6. //
  7. //            by    Felipe A. Rodriguez        
  8. //
  9. //    This code is supplied "as is" the author makes no warranty as to its 
  10. //    suitability for any purpose.  This code is free and may be distributed 
  11. //    in accordance with the terms of the:
  12. //        
  13. //            GNU GENERAL PUBLIC LICENSE
  14. //            Version 2, June 1991
  15. //            copyright (C) 1989, 1991 Free Software Foundation, Inc.
  16. //             675 Mass Ave, Cambridge, MA 02139, USA
  17. //
  18. //************************************************************************
  19.  
  20.  
  21. #import <appkit/appkit.h>
  22.  
  23. @interface ToolBar:View
  24. {
  25.     id     nxAppDel;                        // NXApp delegate
  26.     id  hotListDelegate;
  27.     id    appTile;
  28.     id    appIconContentView;
  29.     id    image;
  30.     NXRect aRect;
  31.     id    playButton;
  32.     id    stopButton;
  33.     id    minusButton;
  34.     id    nextButton;
  35.     id    closeButton;
  36.     id    backWindow;
  37.     id    theToolView;
  38.     id    toolView;
  39.     id    toolIconView;                // points to iconView
  40.     id  toolWin;
  41.     id HLImageView;
  42.     id namHashTable;
  43.     id tmpHashTable;
  44.     int iWasSet;                    // mail icon has been set if > 0
  45.     BOOL cursorOverToolBar;
  46.     BOOL hotListDirValid;            // whether the hotList dir is valid
  47.     BOOL statusVisible;                    
  48.     BOOL wasHidden;                    // whether the app was hidden when the
  49. }                                    // cursor entered the toolbar
  50.  
  51. - playLink:sender; 
  52. - playUnlink:sender; 
  53. - nextItem:sender; 
  54. - prevItem:sender; 
  55. - close:sender; 
  56. - mailInQueueIcon;
  57.  
  58.  
  59.  
  60. @end
  61.