1234567891011121314151617181920212223242526272829303132333435 |
- #import <Cocoa/Cocoa.h>
- #import "WikiDisplay.h"
- @interface MainWindow : NSWindow {
- IBOutlet WikiDisplay *imageView;
- NSCondition *condition;
- NSBitmapImageRep *imageRep;
- NSTimer *refreshTimer;
- unsigned char *frameBuffer;
- }
- - (void) refreshDisplay;
- - (NSCondition *) getCondition;
- - (NSImageView *) imageView;
- - (IBAction) buttonPressed: (id) sender;
- @end
|