mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 15:29:02 +00:00
32 lines
1.0 KiB
C
32 lines
1.0 KiB
C
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@interface CocoaProxy : NSObject
|
||
|
{
|
||
|
NSAutoreleasePool *currentPool;
|
||
|
}
|
||
|
- (void)openPath:(NSString *)path;
|
||
|
- (void)openURL:(NSString *)url;
|
||
|
- (void)revealPath:(NSString *)path;
|
||
|
- (NSString *)getUTI:(NSString *)path;
|
||
|
- (BOOL)type:(NSString *)type conformsToType:(NSString *)refType;
|
||
|
- (NSString *)getAppdataPath;
|
||
|
- (NSString *)getCachePath;
|
||
|
- (NSString *)getResourcePath;
|
||
|
- (NSString *)systemLang;
|
||
|
- (NSString *)systemShortDateFormat;
|
||
|
- (NSString *)systemNumberDecimalSeparator;
|
||
|
- (NSString *)systemNumberGroupingSeparator;
|
||
|
- (NSString *)systemCurrency;
|
||
|
- (NSString *)bundleIdentifier;
|
||
|
- (NSString *)appVersion;
|
||
|
- (NSString *)osxVersion;
|
||
|
- (void)postNotification:(NSString *)name userInfo:(NSDictionary *)userInfo;
|
||
|
- (id)prefValue:(NSString *)prefname;
|
||
|
- (void)setPrefValue:(NSString *)prefname value:(id)value;
|
||
|
- (id)prefValue:(NSString *)prefname inDomain:(NSString *)domain;
|
||
|
- (NSString *)url2path:(NSString *)url;
|
||
|
- (void)createPool;
|
||
|
- (void)destroyPool;
|
||
|
- (void)reportCrash:(NSString *)crashReport;
|
||
|
- (void)log:(NSString *)s;
|
||
|
@end
|