X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=macosx%2FHBQueueController.h;h=f08415fc4864c84b530bc1275c6bdda46bd48bbb;hb=4b72a63eb61a01275493c4bfb51ba02152d1c5e1;hp=92379793f20498970c983047f6e8c952522ec4cc;hpb=56cdefd6f70ad5272f60e6e60d148c22c3cc59c8;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/macosx/HBQueueController.h b/macosx/HBQueueController.h index 92379793..f08415fc 100644 --- a/macosx/HBQueueController.h +++ b/macosx/HBQueueController.h @@ -53,8 +53,9 @@ BOOL fIsDragging; hb_handle_t *fQueueEncodeLibhb; // reference to libhb HBController *fHBController; // reference to HBController NSMutableArray *fJobGroups; // mirror image of the queue array from controller.mm - - int fEncodingQueueItem; // corresponds to the index of fJobGroups encoding item + + int pidNum; // Records the PID number from HBController for this instance + 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; @@ -99,13 +100,14 @@ BOOL fIsDragging; IBOutlet HBQueueOutlineView *fOutlineView; IBOutlet NSTextField *fQueueCountField; NSArray *fDraggedNodes; + BOOL fIsDragging; #if HB_OUTLINE_METRIC_CONTROLS IBOutlet NSSlider *fIndentation; // debug IBOutlet NSSlider *fSpacing; // debug #endif } - +- (void)setPidNum: (int)myPidnum; - (void)setHandle: (hb_handle_t *)handle; - (void)setHBController: (HBController *)controller; @@ -124,13 +126,11 @@ BOOL fIsDragging; - (void)outlineView:(NSOutlineView *)fOutlineView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item; -- (void)moveObjectsInQueueArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)insertIndex; - /* Animate the icon for the current encode */ - (void) animateWorkingEncodeIconInQueue; - (void) startAnimatingCurrentWorkingEncodeInQueue; - (void) stopAnimatingCurrentJobGroupInQueue; - +- (void)setQueueStatusString: (NSString *)statusString; - (IBAction)showQueueWindow: (id)sender; @@ -138,6 +138,7 @@ BOOL fIsDragging; /* control encodes in the window */ - (IBAction)removeSelectedQueueItem: (id)sender; - (IBAction)revealSelectedQueueItem: (id)sender; +- (IBAction)editSelectedQueueItem: (id)sender; #if HB_OUTLINE_METRIC_CONTROLS - (IBAction)imageSpacingChanged: (id)sender;