diff options
| author | Rob McBroom <github@skurfer.com> | 2014-02-17 14:36:23 -0500 |
|---|---|---|
| committer | Rob McBroom <github@skurfer.com> | 2014-02-17 14:36:23 -0500 |
| commit | 0cad0c9c58dc4386e95c2e2968ac376c68be96be (patch) | |
| tree | e9866dcc8f3eade9e0edba0ce80aef7297e89337 /QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h | |
| parent | aaff46c79008d6f39502e02ed7e7ccc2408828e4 (diff) | |
project updates, version bump
Diffstat (limited to 'QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h')
| -rw-r--r-- | QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h b/QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h deleted file mode 100644 index f9b1442..0000000 --- a/QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h +++ /dev/null @@ -1,57 +0,0 @@ -// -// NSApplication_Extensions.h -// Daedalus -// -// Created by Alcor on Thu May 01 2003. -// Copyright (c) 2003 Blacktree, Inc. All rights reserved. -// - -#import <Cocoa/Cocoa.h> - -#define QSApplicationWillRelaunchNotification @"QSApplicationWillRelaunchNotification" -@interface NSApplication (Info) -- (BOOL)wasLaunchedAtLogin; -- (NSString *)versionString; -- (int)featureLevel; -- (NSDictionary *)processInformation; -- (NSDictionary *)parentProcessInformation; -@end - -@interface NSApplication (Focus) -- (BOOL) stealKeyFocus; -- (BOOL) releaseKeyFocus; -@end - - -@interface NSApplication (Relaunching) --(IBAction)relaunch:(id)sender; -- (void)requestRelaunch:(id)sender; --(void)relaunchFromPath:(NSString *)path; --(void)relaunchAfterMovingFromPath:(NSString *)newPath; --(void)relaunchAtPath:(NSString *)launchPath movedFromPath:(NSString *)newPath; --(void)replaceWithUpdateFromPath:(NSString *)newPath; -@end - -@interface NSApplication (LSUIElementManipulation) --(BOOL)shouldBeUIElement; --(BOOL)setShouldBeUIElement:(BOOL)hidden; -@end - - -typedef enum { - QSApplicationNormalLaunch = 0, - QSApplicationUpgradedLaunch = 1, - QSApplicationDowngradedLaunch = -1, - QSApplicationFirstLaunch = 2 -} QSApplicationLaunchStatusFlags; - -#define kLastUsedVersion @"Last Used Version" -#define kLastUsedLocation @"Last Used Location" - -@interface NSApplication (LaunchStatus) --(int)checkLaunchStatus; --(void)updateLaunchStatusInfo; -@end - - - |