diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-12-01 12:23:22 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-12-01 12:23:22 +0000 |
commit | 019a1015546ab203eb366a71811d6c75b130fd40 (patch) | |
tree | 6d93981dd3340eeb6586ae35a1a4720c48f854f5 /Source/SPAppController.h | |
parent | 8e9f5d343c0128c06a018fb58751ac67ec1dfa6f (diff) | |
download | sequelpro-019a1015546ab203eb366a71811d6c75b130fd40.tar.gz sequelpro-019a1015546ab203eb366a71811d6c75b130fd40.tar.bz2 sequelpro-019a1015546ab203eb366a71811d6c75b130fd40.zip |
• added chance to cancel an activity - up to now a running Bundle command - from the Activities pane (toggable via double-clicking at Table Information header); it's still tentative and the correct cancel icon will follow asap
• added notification system for updating the activities pane (SPActivitiesUpdateNotification)
Diffstat (limited to 'Source/SPAppController.h')
-rw-r--r-- | Source/SPAppController.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/SPAppController.h b/Source/SPAppController.h index d96af12f..2fb4aef2 100644 --- a/Source/SPAppController.h +++ b/Source/SPAppController.h @@ -50,7 +50,7 @@ NSMutableDictionary *bundleKeyEquivalents; NSMutableDictionary *installedBundleUUIDs; - NSMutableArray *runningBASHprocesses; + NSMutableArray *runningActivitiesArray; } @@ -97,9 +97,9 @@ - (NSArray *)bundleCategoriesForScope:(NSString*)scope; - (NSArray *)bundleItemsForScope:(NSString*)scope; - (NSDictionary *)bundleKeyEquivalentsForScope:(NSString*)scope; -- (void)registerBASHCommand:(NSDictionary*)commandDict; -- (void)unRegisterBASHCommand:(NSInteger)pid; -- (NSArray*)runningBASHProcesses; +- (void)registerActivity:(NSDictionary*)commandDict; +- (void)removeRegisteredActivity:(NSInteger)pid; +- (NSArray*)runningActivities; - (void)handleEventWithURL:(NSURL*)url; |