diff options
author | ritsuka <[email protected]> | 2014-12-27 10:46:04 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-27 10:46:04 +0000 |
commit | df8b2ff3e109699e3dadd88404911f8dfc7b210a (patch) | |
tree | 8489fee4edaf57adf55f69d0c0d28f61a5757057 /macosx/Controller.h | |
parent | 8df584534c0c39f5c2f298d8ba480cc906743bbf (diff) |
MacGui: change the queue to work with serialized HBJob objects, remove the NSDictionary job representation and the duplicate prepareJob method. Implement NSCopying protocol in HBJob.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6655 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r-- | macosx/Controller.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h index cb7610f26..a2a92ba47 100644 --- a/macosx/Controller.h +++ b/macosx/Controller.h @@ -144,15 +144,12 @@ int fPendingCount; // Number of various kinds of job groups in fJobGroups. int fWorkingCount; - NSInteger fqueueEditRescanItemNum; // queue array item to be reloaded into the main window pid_t pidNum; // The pid number for this instance NSString * currentQueueEncodeNameString; /* integer to set to determine the previous state of encode 0==idle, 1==encoding, 2==cancelled*/ int fEncodeState; - BOOL applyQueueToScan; - NSString * browsedSourceDisplayName; /* Dock progress variables */ double dockIconProgress; @@ -164,7 +161,6 @@ - (IBAction) showSourceTitleScanPanel: (id) sender; - (IBAction) closeSourceTitleScanPanel: (id) sender; - (void) performScan:(NSString *) scanPath scanTitleNum: (NSInteger) scanTitleNum; -- (IBAction) showNewScan: (id) sender; - (void) enableUI: (BOOL) enable; @@ -174,7 +170,6 @@ - (IBAction) titlePopUpChanged: (id) sender; - (IBAction) chapterPopUpChanged: (id) sender; -- (IBAction) formatPopUpChanged: (id) sender; - (IBAction) autoSetM4vExtension: (id) sender; - (IBAction) browseFile: (id) sender; @@ -184,10 +179,6 @@ - (void)pictureSettingsDidChange; - (IBAction) openMainWindow: (id) sender; -/* Text summaries of various settings */ -- (NSString*) pictureSettingsSummary; -- (NSString*) muxerOptionsSummary; - /* Add All titles to the queue */ - (IBAction) addAllTitlesToQueue: (id) sender; - (void) addAllTitlesToQueueAlertDone: (NSWindow *) sheet @@ -199,15 +190,13 @@ - (void) closeQueueFSEvent; - (void) loadQueueFile; - (void) reloadQueue; -- (NSDictionary *)createQueueFileItem; - (void)saveQueueFileItem; - (void) incrementQueueItemDone:(NSInteger) queueItemDoneIndexNum; - (void) performNewQueueScan:(NSString *) scanPath scanTitleNum: (NSInteger) scanTitleNum; - (void) processNewQueueEncode; - (void) clearQueueEncodedItems; /* Queue Editing */ -- (IBAction)applyQueueSettingsToMainWindow:(id)sender; -- (IBAction)rescanQueueItemToMainWindow:(NSString *) scanPath scanTitleNum: (NSUInteger) scanTitleNum selectedQueueItem: (NSUInteger) selectedQueueItem; +- (IBAction)rescanQueueItemToMainWindow:(NSUInteger) selectedQueueItem; - (void) removeQueueFileItem:(NSUInteger) queueItemToRemove; @@ -227,7 +216,6 @@ - (IBAction) Rip: (id) sender; - (void) overWriteAlertDone: (NSWindow *) sheet returnCode: (int) returnCode contextInfo: (void *) contextInfo; -- (void) doRip; - (IBAction) Cancel: (id) sender; - (void) doCancelCurrentJob; @@ -244,9 +232,7 @@ - (IBAction) browseImportPresetFile: (id) sender; /* Manage User presets */ -- (IBAction) customSettingUsed: (id) sender; - (IBAction) showAddPresetPanel: (id) sender; - - (IBAction)selectDefaultPreset:(id)sender; - (IBAction)addFactoryPresets:(id)sender; |