WebSurf/frontends/gnustep/PlotView.h

24 lines
594 B
C
Raw Normal View History

#import <AppKit/AppKit.h>
2020-11-14 13:45:05 -08:00
@interface PlotView: NSView {
void *browser;
BOOL reallyDraw;
BOOL isDragging;
NSPoint dragStart;
NSSize lastSize;
2020-12-05 07:43:34 -08:00
BOOL showCaret;
NSRect caretRect;
2020-12-06 02:32:12 -08:00
BOOL didResize;
2020-11-14 13:45:05 -08:00
}
-(void)setBrowser: (void*)aBrowser;
2020-12-05 07:43:34 -08:00
-(void)placeCaretAtX: (int)x y: (int)y height: (int)height;
-(void)removeCaret;
-(void)reload: (id)sender;
-(void)stopReloading: (id)sender;
2022-02-10 00:54:37 -08:00
-(void)showDropdownMenuWithOptions: (NSArray*)options atLocation: (NSPoint)location control: (struct form_control*)control;
-(void)zoomIn: (id)sender;
-(void)zoomOut: (id)sender;
-(void)resetZoom: (id)sender;
2020-11-14 13:45:05 -08:00
@end