phoenix-firestorm/indra/llwindow/llappdelegate-objc.h

30 lines
634 B
Objective-C

//
// LLAppDelegate.h
// SecondLife
//
// Created by Geenz on 12/16/12.
//
//
#import <Cocoa/Cocoa.h>
#import "llopenglview-objc.h"
@interface LLAppDelegate : NSObject <NSApplicationDelegate> {
LLNSWindow *window;
NSWindow *inputWindow;
LLNonInlineTextView *inputView;
NSTimer *frameTimer;
NSString *currentInputLanguage;
}
@property (assign) IBOutlet LLNSWindow *window;
@property (assign) IBOutlet NSWindow *inputWindow;
@property (assign) IBOutlet LLNonInlineTextView *inputView;
@property (retain) NSString *currentInputLanguage;
- (void) mainLoop;
- (void) showInputWindow:(bool)show;
- (void) languageUpdated;
@end