Sha256: 936d071269cba898ca188f565a30eb8cd445f047d4a4f1b83c60b71b4f632b6e

Contents?: true

Size: 1.35 KB

Versions: 6

Compression:

Stored size: 1.35 KB

Contents

//
//  BrowserAppDelegate.h
//  Browser
//
//  Created by adam blum on 9/4/08.
//  Copyright __MyCompanyName__ 2008. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import "ServerHost.h"
#import "SplashViewController.h"
#import "PickImageDelegate.h"
#import "DateTimePickerDelegate.h"
#import "TabBarDelegate.h"
#import "LogViewController.h"
#import "LogOptionsController.h"
#import "NativeBar.h"

@class WebViewController;

@interface RhoRunnerAppDelegate : NSObject <UIApplicationDelegate, AVAudioPlayerDelegate> {
    UIWindow *window;
    SplashViewController *splashViewController;
    WebViewController *webViewController;
    LogViewController* logViewController;
    LogOptionsController* logOptionsController;
    ServerHost * serverHost;
    PickImageDelegate* pickImageDelegate;
    DateTimePickerDelegate* dateTimePickerDelegate;
    TabBarDelegate* tabBarDelegate;
    NativeBar* nativeBar;
    AVAudioPlayer *player;
    bool appStarted;
    bool splashDisplayed;
}

@property (nonatomic, retain) UIWindow *window;
@property (nonatomic, retain) SplashViewController *splashViewController;
@property (nonatomic, retain) WebViewController *webViewController;
@property (nonatomic, retain) AVAudioPlayer *player;
@property (nonatomic, retain) NativeBar* nativeBar;

+ (RhoRunnerAppDelegate*)sharedDelegate;
- (void)fixFrame;

@end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rhodes-1.5.5 platform/iphone/Classes/RhoRunnerAppDelegate.h
rhodes-1.5.4 platform/iphone/Classes/RhoRunnerAppDelegate.h
rhodes-1.5.3 platform/iphone/Classes/RhoRunnerAppDelegate.h
rhodes-1.5.2 platform/iphone/Classes/RhoRunnerAppDelegate.h
rhodes-1.5.1 platform/iphone/Classes/RhoRunnerAppDelegate.h
rhodes-1.5.0 platform/iphone/Classes/RhoRunnerAppDelegate.h