home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Utilities / NCCompletionDictionary-2.6 / NCCompletionDictionary.h < prev    next >
Encoding:
Text File  |  1997-08-10  |  652 b   |  32 lines

  1.  
  2. // NCCompletionDictionary.h
  3. //
  4. // Written by Norbert Heger <bertl@hal.kph.tuwien.ac.at>
  5. // Copyright (c)1997
  6. //
  7. // This file is distributed under the terms of the
  8. // GNU General Public License.
  9.  
  10. #import <AppKit/AppKit.h>
  11.  
  12. @interface NCCompletionDictionary:NSObject
  13. {
  14.     IBOutlet NSBrowser *    browser;
  15.     IBOutlet NSTextField *    keyTextField;
  16.     IBOutlet NSTextView *    textView;
  17.     IBOutlet NSWindow *        window;
  18.     IBOutlet NSMatrix *        buttonMatrix;
  19.  
  20.        NSArray *sortedKeys;
  21. }
  22.  
  23. + (NSDictionary *)dictionary;
  24.  
  25. - (void)showPanel:(id)sender;
  26. - (void)set:(id)sender;
  27. - (void)remove:(id)sender;
  28. - (void)select:(id)sender;
  29. - (void)import:(id)sender;
  30.  
  31. @end
  32.