summaryrefslogtreecommitdiffstats
path: root/macosx/HBQueueController.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2008-08-07 17:26:25 +0000
committerritsuka <[email protected]>2008-08-07 17:26:25 +0000
commitc8ed1a0c1534761b2081f6c7ea71bf7c4a698d78 (patch)
treec0d5806c11b8be551e45fdd333024418ef9f9fcf /macosx/HBQueueController.h
parent7cf9caca9ebe88fe22863302c0b0be94f3516843 (diff)
MacGui: Some small enhancements and clean ups in HBQueueController
- Removed white spaces and hard tabs. - Changed all the enumerators to use the new fast enumerators available in objective-c 2. - Changed intValue to integerValue. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1613 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBQueueController.h')
-rw-r--r--macosx/HBQueueController.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h
index 9fa4d67ec..262557881 100644
--- a/macosx/HBQueueController.h
+++ b/macosx/HBQueueController.h
@@ -5,7 +5,7 @@
It may be used under the terms of the GNU General Public License. */
-#include <Cocoa/Cocoa.h>
+#import <Cocoa/Cocoa.h>
#include "hb.h"
@class HBController;
@@ -73,7 +73,7 @@ BOOL fIsDragging;
@interface HBJob : NSObject
{
HBJobGroup *jobGroup; // The group this job belongs to
-
+
// The following fields match up with similar fields found in hb_job_t and it's
// various substructures.
@public
@@ -108,7 +108,7 @@ BOOL fIsDragging;
/* Used to concatenate audio list values into a string for display */
NSString *audioinfo_codecs;
NSString *audioinfo_summary;
-
+
int audio_mixdowns[8];
int acodec;
int abitrate;
@@ -180,7 +180,7 @@ BOOL fIsDragging;
- (unsigned int) count;
- (HBJob *) jobAtIndex: (unsigned)index;
- (unsigned int) indexOfJob: (HBJob *)aJob;
-- (NSEnumerator *) jobEnumerator;
+- (NSMutableArray *) fJobs;
- (void) setStatus: (HBQueueJobGroupStatus)status;
- (HBQueueJobGroupStatus) status;
- (void) setPresetName: (NSString *)name;
@@ -212,7 +212,7 @@ BOOL fIsDragging;
unsigned int fCanceledCount; // Use the accessor functions instead.
unsigned int fWorkingCount;
BOOL fJobGroupCountsNeedUpdating;
-
+
BOOL fCurrentJobPaneShown; // NO when fCurrentJobPane has been shifted out of view (see showCurrentJobPane)
NSMutableIndexSet *fSavedExpandedItems; // used by save/restoreOutlineViewState to preserve which items are expanded
NSMutableIndexSet *fSavedSelectedItems; // used by save/restoreOutlineViewState to preserve which items are selected
@@ -245,7 +245,7 @@ BOOL fIsDragging;
IBOutlet NSTextField *fJobDescTextField;
IBOutlet NSProgressIndicator *fProgressBar;
IBOutlet NSTextField *fProgressTextField;
-
+
// fQueuePane - always visible; fills entire window when fCurrentJobPane is hidden
IBOutlet NSView *fQueuePane;
IBOutlet HBQueueOutlineView *fOutlineView;
@@ -254,12 +254,12 @@ BOOL fIsDragging;
IBOutlet NSSlider *fIndentation; // debug
IBOutlet NSSlider *fSpacing; // debug
#endif
-
+
}
- (void)setHandle: (hb_handle_t *)handle;
- (void)setHBController: (HBController *)controller;
-- (void)libhbStateChanged: (hb_state_t &)state;
+- (void)libhbStateChanged: (hb_state_t)state;
- (void)libhbWillStop;
// Adding items to the queue