gwenhywfar
4.3.1
|
00001 // 00002 // CocoaTextBrowser.h 00003 // 00004 // 00005 // Created by Samuel Strupp on 17.08.10. 00006 // 00007 00008 #import <Cocoa/Cocoa.h> 00009 #import <WebKit/WebKit.h> 00010 #import "CocoaGwenGUIProtocol.h" 00011 00012 @interface CocoaTextBrowser : WebView <CocoaGwenGUIProtocol> { 00013 BOOL fillX; 00014 BOOL fillY; 00015 00016 NSString* loadedString; 00017 } 00018 00019 @property BOOL fillX; 00020 @property BOOL fillY; 00021 00022 -(void) setStringValue:(NSString*)value BasePath:(NSString*)base; 00023 -(void) setStringValue:(NSString*)value; 00024 -(NSString*) stringValue; 00025 00026 @end