home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------------------------------------
- //
- // UsingKeyDownBrowserController
- //
- // Inherits From: Object
- //
- // Declared In: UsingKeyDownBrowserController.h
- //
- // Class Description
- //
- // Application controller for UsingKeyDownBrowserPalette example.
- // Messages an instance of KeyDownBrowser to perform actions.
- //
- //
- // Disclaimer
- //
- // You may freely copy, distribute and reuse this software and its
- // associated documentation. I disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- //
- //---------------------------------------------------------------------------------------------------------
- #import <appkit/appkit.h>
-
-
- @interface UsingKeyDownBrowserController:Object
- {
- id browser;
- id singleActionTextField;
- id doubleActionTextField;
- NXHashTable* classes;
- NXHashState state;
- }
-
- //---------------------------------------------------------------------------------------------------------
- // Action Methods
- //---------------------------------------------------------------------------------------------------------
- - singleAction: sender;
- - doubleAction: sender;
-
-
- @end