MacInputWatcher.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //
  2. //  MacInputWatcher.h
  3. //  celestia
  4. //
  5. //  Created by Da Woon Jung on 2007-06-15.
  6. //  Copyright 2007 Da Woon Jung. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. @class _MacInputWatcher;
  10. @interface MacInputWatcher : NSObject
  11. {
  12.     _MacInputWatcher *watcher;
  13.     id watched;
  14. }
  15. - (id)initWithWatched: (id)aWatched;
  16. - (BOOL) control: (NSControl *)aControl textShouldBeginEditing: (NSText *)aTextObject;
  17. - (void) controlTextDidChange: (NSNotification *)aNotification;
  18. - (BOOL) control: (NSControl *)aControl textView: (NSTextView *)aTextView doCommandBySelector: (SEL)aCommand;
  19. - (void) stringEntered: (NSString *)aString;
  20. @end