summaryrefslogtreecommitdiff
path: root/QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h
diff options
context:
space:
mode:
authorRob McBroom <github@skurfer.com>2014-02-17 14:36:23 -0500
committerRob McBroom <github@skurfer.com>2014-02-17 14:36:23 -0500
commit0cad0c9c58dc4386e95c2e2968ac376c68be96be (patch)
treee9866dcc8f3eade9e0edba0ce80aef7297e89337 /QSFoundation.framework/Versions/A/PrivateHeaders/NSApplication_BLTRExtensions.h
parentaaff46c79008d6f39502e02ed7e7ccc2408828e4 (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.h57
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
-
-
-