Guest User

Untitled

a guest
May 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #import <Cocoa/Cocoa.h>
  2.  
  3. @interface TextController : NSObject {
  4. IBOutlet id bottom;
  5. IBOutlet id top;
  6. IBOutlet NSWindow *mainWindow;
  7. IBOutlet NSWindow *window;
  8. }
  9.  
  10. - (IBAction)someMethod: sender;
  11.  
  12.  
  13. -(void)filePanelDidEnd:(NSWindow*)sheet
  14. returnCode:(int)returnCode
  15. contextInfo:(void*)contextInfo;
  16.  
  17.  
  18. - (NSArray *) fileTypesArray;
  19. - (void) setFileTypesArray: (NSArray *) anArray;
  20.  
  21.  
  22. - (NSString *) userDirectory;
  23. - (void) setUserDirectoryFromFilename: (NSString *) aFilename;
  24.  
  25.  
  26. - (id) window;
  27.  
  28.  
  29. - (IBAction)copyPressed: sender;
  30. - (IBAction)helloPressed: sender;
  31. @end
Add Comment
Please, Sign In to add comment