summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-12-03 19:22:03 +0000
committerritsuka <[email protected]>2014-12-03 19:22:03 +0000
commitd22ffc275a7ce636d8e47555838945ffad45cdbc (patch)
treef5241a93d1e081f4073783048120383035dcb779 /macosx/Controller.h
parent82ea5dc61ad639506b4662a7bb7b573a4415a526 (diff)
MacGui: switched the hb_handle_t references in HBController to HBCore instances.
Drag & drop to the main window does not work is this rev. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6577 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/Controller.h')
-rw-r--r--macosx/Controller.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/macosx/Controller.h b/macosx/Controller.h
index 9797cd35d..c67e4044e 100644
--- a/macosx/Controller.h
+++ b/macosx/Controller.h
@@ -146,18 +146,11 @@ extern NSString *keyTitleTag;
IBOutlet NSMenu * presetsMenu;
IBOutlet NSDrawer * fPresetDrawer;
IBOutlet NSTextField * fPresetSelectedDisplay;
-
- hb_handle_t * fHandle;
/* Queue variables */
int hbInstanceNum; //stores the number of HandBrake instances currently running
- hb_handle_t * fQueueEncodeLibhb; // libhb for HB Encoding
hb_title_t * fTitle;
- hb_title_t * fQueueEncodeTitle;
- int fEncodingQueueItem; // corresponds to the index of fJobGroups encoding item
int fPendingCount; // Number of various kinds of job groups in fJobGroups.
- int fCompletedCount;
- int fCanceledCount;
int fWorkingCount;
NSInteger fqueueEditRescanItemNum; // queue array item to be reloaded into the main window
@@ -180,7 +173,6 @@ extern NSString *keyTitleTag;
HBDockTile *dockTile;
}
-- (int) getPidnum;
- (IBAction) browseSources: (id) sender;
- (void) browseSourcesDone: (NSOpenPanel *) sheet
@@ -190,10 +182,6 @@ extern NSString *keyTitleTag;
- (void) performScan:(NSString *) scanPath scanTitleNum: (NSInteger) scanTitleNum;
- (IBAction) showNewScan: (id) sender;
-
-- (IBAction) cancelScanning:(id)sender;
-
-- (void) updateUI: (NSTimer*) timer;
- (void) enableUI: (BOOL) enable;
- (IBAction) encodeStartStopPopUpChanged: (id) sender;
@@ -296,10 +284,4 @@ extern NSString *keyTitleTag;
- (int) hbInstances;
-// Drag & Drop methods
-- (void)openFiles:(NSArray*)filenames;
-- (void)application:(NSApplication *)sender openFiles:(NSArray *)filenames;
-- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender;
-- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender;
-
@end