home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / ODBCLoginPanel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-15  |  728 b   |  36 lines

  1. /*
  2.    ODBCLoginPanel.h
  3.    Copyright (c) 1996, NeXT Software, Inc.
  4.    All rights reserved.
  5. */
  6.  
  7. #import <EOAccess/EOAccess.h>
  8. #import <AppKit/AppKit.h>
  9.  
  10. #ifndef IBOutlet
  11. #define IBOutlet
  12. #endif
  13.  
  14. @interface ODBCLoginPanel : NSObject
  15. {
  16.     IBOutlet NSTextField *datasourceName;
  17.     IBOutlet NSTextField *userName;
  18.     IBOutlet NSTextField *password;
  19.  
  20.     IBOutlet NSTextField *connectionString;
  21.  
  22.     IBOutlet NSButton *useConnectionString;
  23.  
  24.     NSMutableDictionary *_connectionInfo;
  25. }
  26.  
  27. - (NSDictionary *)runPanelForAdaptor:(EOAdaptor *)adaptor validate:(BOOL)yn;
  28.  
  29. // Private methods
  30. - (void)cancel:sender;
  31. - (void)login:sender;
  32. - (void)switch:sender;
  33.     // These are the targets of the Login and Cancel buttons on the panel.
  34.  
  35. @end
  36.