mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Kind of starting from scratch.
Recreated the project as an xcode 4 project. Key Bindings are working and reloading. Got rid of everything that wasn't being used right now.
This commit is contained in:
43
Atom/JSCocoa/BridgeSupportController.h
Normal file
43
Atom/JSCocoa/BridgeSupportController.h
Normal file
@@ -0,0 +1,43 @@
|
||||
//
|
||||
// BridgeSupportController.h
|
||||
// JSCocoa
|
||||
//
|
||||
// Created by Patrick Geiller on 08/07/08.
|
||||
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#if !TARGET_IPHONE_SIMULATOR && !TARGET_OS_IPHONE
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#endif
|
||||
|
||||
@interface BridgeSupportController : NSObject {
|
||||
|
||||
|
||||
NSMutableArray* paths;
|
||||
NSMutableArray* xmlDocuments;
|
||||
|
||||
NSMutableDictionary* hash;
|
||||
NSMutableDictionary* variadicSelectors;
|
||||
NSMutableDictionary* variadicFunctions;
|
||||
}
|
||||
|
||||
+ (id)sharedController;
|
||||
|
||||
- (BOOL)loadBridgeSupport:(NSString*)path;
|
||||
- (BOOL)isBridgeSupportLoaded:(NSString*)path;
|
||||
- (NSUInteger)bridgeSupportIndexForString:(NSString*)string;
|
||||
|
||||
- (NSMutableDictionary*)variadicSelectors;
|
||||
- (NSMutableDictionary*)variadicFunctions;
|
||||
|
||||
/*
|
||||
- (NSString*)query:(NSString*)name withType:(NSString*)type;
|
||||
- (NSString*)query:(NSString*)name withType:(NSString*)type inBridgeSupportFile:(NSString*)file;
|
||||
*/
|
||||
- (NSString*)queryName:(NSString*)name;
|
||||
- (NSString*)queryName:(NSString*)name type:(NSString*)type;
|
||||
|
||||
- (NSArray*)keys;
|
||||
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user