OSDN Git Service

MacGui: Add "Auto" to audio sample rate selections
[handbrake-jp/handbrake-jp-git.git] / macosx / Controller.h
1 /* $Id: Controller.h,v 1.35 2005/08/01 14:29:50 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #import <Cocoa/Cocoa.h>
8 #import <Growl/Growl.h>
9
10 #include "hb.h"
11
12 #import "ChapterTitles.h"
13 #import "PictureController.h"
14 #import "HBQueueController.h"
15 #import "MVMenuButton.h"
16 #import "HBAdvancedController.h"
17 #import "HBPreferencesController.h"
18 #import "HBPresets.h"
19 @class HBOutputPanelController;
20
21 /* We subclass NSView so that our drags show both the icon as well as PresetName columns */
22 @interface HBPresetsOutlineView : NSOutlineView
23 {
24
25 BOOL                        fIsDragging;
26
27 }
28 @end
29 @interface HBController : NSObject <GrowlApplicationBridgeDelegate>
30 {
31     IBOutlet NSWindow            * fWindow;
32
33     /* Main Menu Outlets */
34     NSMenuItem                   * fOpenSourceTitleMMenu;
35     
36     /* Source Title Scan Outlets */
37     IBOutlet NSPanel              * fScanSrcTitlePanel;
38     IBOutlet NSTextField          * fScanSrcTitlePathField;
39     IBOutlet NSTextField          * fSrcDsplyNameTitleScan;
40     IBOutlet NSTextField          * fScanSrcTitleNumField;
41     IBOutlet NSButton             * fScanSrcTitleCancelButton;
42     IBOutlet NSButton             * fScanSrcTitleOpenButton;
43     
44     /* Picture panel */
45     PictureController            * fPictureController;
46     
47     /* Advanced options tab */
48     HBAdvancedController         * fAdvancedOptions;
49         IBOutlet NSBox               * fAdvancedView;
50     
51     HBPreferencesController      * fPreferencesController;
52     
53     /* Queue panel */
54     HBQueueController            * fQueueController;
55     IBOutlet NSTextField         * fQueueStatus;
56     
57     /* Output panel */
58     HBOutputPanelController       *outputPanel;
59         
60     /* Source box */
61         IBOutlet NSProgressIndicator * fScanIndicator;
62         NSString                     * sourceDisplayName;
63     IBOutlet NSTextField         * fSrcDVD2Field;
64     IBOutlet NSTextField         * fSrcTitleField;
65     IBOutlet NSPopUpButton       * fSrcTitlePopUp;
66     IBOutlet NSTextField         * fSrcChapterField;
67     IBOutlet NSPopUpButton       * fSrcChapterStartPopUp;
68     IBOutlet NSTextField         * fSrcChapterToField;
69     IBOutlet NSPopUpButton       * fSrcChapterEndPopUp;
70     IBOutlet NSTextField         * fSrcDuration1Field;
71     IBOutlet NSTextField         * fSrcDuration2Field;
72         
73     /* Destination box */
74     IBOutlet NSTextField         * fDstFormatField;
75         IBOutlet NSPopUpButton       * fDstFormatPopUp;
76         
77     IBOutlet NSTextField         * fDstFile1Field;
78     IBOutlet NSTextField         * fDstFile2Field;
79     IBOutlet NSButton            * fDstBrowseButton;
80     /* MP4 Options */
81     // Creates 64 bit mp4's that allow file sizes over 4gb
82     IBOutlet NSButton            * fDstMp4LargeFileCheck;
83     // Optimizes mp4's for http
84     IBOutlet NSButton            * fDstMp4HttpOptFileCheck;
85     // Creates iPod compatible mp4's (add ipod uuid atom)
86     IBOutlet NSButton            * fDstMp4iPodFileCheck;
87         
88     /* Video box */
89     IBOutlet NSTextField         * fVidRateField;
90     IBOutlet NSPopUpButton       * fVidRatePopUp;
91     IBOutlet NSTextField         * fVidEncoderField;
92     IBOutlet NSPopUpButton       * fVidEncoderPopUp;
93     IBOutlet NSTextField         * fVidQualityField;
94     IBOutlet NSMatrix            * fVidQualityMatrix;
95     IBOutlet NSButtonCell        * fVidTargetCell;
96     IBOutlet NSTextField         * fVidTargetSizeField;
97     IBOutlet NSButtonCell        * fVidBitrateCell;
98     IBOutlet NSTextField         * fVidBitrateField;
99     IBOutlet NSButtonCell        * fVidConstantCell;
100     IBOutlet NSSlider            * fVidQualitySlider;
101     IBOutlet NSButton            * fVidGrayscaleCheck;
102     IBOutlet NSButton            * fVidTwoPassCheck;
103     IBOutlet NSButton            * fVidTurboPassCheck;
104         
105         /* Picture Settings box */
106         IBOutlet NSTextField         * fPicLabelSettings;
107         IBOutlet NSTextField         * fPicLabelSrc;
108     IBOutlet NSTextField         * fPicSettingsSrc;
109         IBOutlet NSTextField         * fPicLabelOutp;
110     IBOutlet NSTextField         * fPicSettingsOutp;
111     IBOutlet NSTextField         * fPicLabelAnamorphic;
112     IBOutlet NSTextField         * fPicSettingsAnamorphic;
113     
114     IBOutlet NSTextField         * fPicLabelAr;
115         IBOutlet NSTextField         * fPicLabelAutoCrop;
116     IBOutlet NSTextField         * fPicLabelDetelecine;
117         IBOutlet NSTextField         * fPicLabelDeinterlace;
118     IBOutlet NSTextField         * fPicLabelDecomb;
119     IBOutlet NSTextField         * fPicLabelDenoise;
120     IBOutlet NSTextField         * fPicLabelDeblock;
121         IBOutlet NSTextField         * fPicSettingDeinterlace;
122     IBOutlet NSTextField         * fPicSettingDecomb;
123         IBOutlet NSTextField         * fPicSettingARkeep;
124         IBOutlet NSTextField         * fPicSettingPAR;
125         IBOutlet NSTextField         * fPicSettingAutoCrop;
126         IBOutlet NSTextField         * fPicSettingDetelecine;
127         IBOutlet NSTextField         * fPicSettingDenoise;
128     IBOutlet NSTextField         * fPicSettingDeblock;
129         
130         /* Picture variables */
131         int                        PicOrigOutputWidth;
132         int                        PicOrigOutputHeight;
133         int                        AutoCropTop;
134         int                        AutoCropBottom;
135         int                        AutoCropLeft;
136         int                        AutoCropRight;
137     /* Subtitles box */
138     IBOutlet NSTextField         * fSubField;
139     IBOutlet NSPopUpButton       * fSubPopUp;
140         IBOutlet NSButton            * fSubForcedCheck;
141         
142     /* Audio box */
143     /* Track Labels */
144     IBOutlet NSTextField         * fAudSourceLabel;
145     IBOutlet NSTextField         * fAudCodecLabel;
146     IBOutlet NSTextField         * fAudMixdownLabel;
147     IBOutlet NSTextField         * fAudSamplerateLabel;
148     IBOutlet NSTextField         * fAudBitrateLabel;
149     IBOutlet NSTextField         * fAudDrcLabel;
150     
151     IBOutlet NSTextField         * fAudTrack1Label;
152     IBOutlet NSTextField         * fAudTrack2Label;
153     IBOutlet NSTextField         * fAudTrack3Label;
154     IBOutlet NSTextField         * fAudTrack4Label;
155     
156     /* Source Audio PopUps */
157     IBOutlet NSPopUpButton       * fAudLang1PopUp;
158     IBOutlet NSPopUpButton       * fAudLang2PopUp;
159     IBOutlet NSPopUpButton       * fAudLang3PopUp;
160     IBOutlet NSPopUpButton       * fAudLang4PopUp;
161     
162     /* Codec Popups */
163     IBOutlet NSPopUpButton       * fAudTrack1CodecPopUp;
164     IBOutlet NSPopUpButton       * fAudTrack2CodecPopUp;
165     IBOutlet NSPopUpButton       * fAudTrack3CodecPopUp;
166     IBOutlet NSPopUpButton       * fAudTrack4CodecPopUp;
167     
168         /* Mixdown PopUps */
169         IBOutlet NSPopUpButton       * fAudTrack1MixPopUp;
170     IBOutlet NSPopUpButton       * fAudTrack2MixPopUp;
171     IBOutlet NSPopUpButton       * fAudTrack3MixPopUp;
172     IBOutlet NSPopUpButton       * fAudTrack4MixPopUp;
173         
174     /* Samplerate PopUps */
175         IBOutlet NSPopUpButton       * fAudTrack1RatePopUp;
176     IBOutlet NSPopUpButton       * fAudTrack2RatePopUp;
177     IBOutlet NSPopUpButton       * fAudTrack3RatePopUp;
178     IBOutlet NSPopUpButton       * fAudTrack4RatePopUp;
179     
180     /* Bitrate PopUps */
181     IBOutlet NSPopUpButton       * fAudTrack1BitratePopUp;
182     IBOutlet NSPopUpButton       * fAudTrack2BitratePopUp;
183     IBOutlet NSPopUpButton       * fAudTrack3BitratePopUp;
184     IBOutlet NSPopUpButton       * fAudTrack4BitratePopUp;
185     
186     /* Dynamic Range Compression */
187     IBOutlet NSSlider            * fAudTrack1DrcSlider;
188     IBOutlet NSTextField         * fAudTrack1DrcField;
189     IBOutlet NSSlider            * fAudTrack2DrcSlider;
190     IBOutlet NSTextField         * fAudTrack2DrcField;
191     IBOutlet NSSlider            * fAudTrack3DrcSlider;
192     IBOutlet NSTextField         * fAudTrack3DrcField;
193     IBOutlet NSSlider            * fAudTrack4DrcSlider;
194     IBOutlet NSTextField         * fAudTrack4DrcField;
195     
196     /* Chapters box */
197     IBOutlet NSButton            * fCreateChapterMarkers;
198     IBOutlet NSTableView         * fChapterTable;
199         ChapterTitles                * fChapterTitlesDelegate;
200         
201     /* Bottom */
202     IBOutlet NSButton            * fPictureButton;
203     IBOutlet NSTextField         * fStatusField;
204     IBOutlet NSProgressIndicator * fRipIndicator;
205         BOOL                           fRipIndicatorShown;
206     
207         /* User Preset variables here */
208         HBPresets                    * fPresetsBuiltin;
209         IBOutlet NSDrawer            * fPresetDrawer;
210         IBOutlet NSTextField         * fPresetNewName;
211         IBOutlet NSTextField         * fPresetNewDesc;
212         IBOutlet NSPopUpButton       * fPresetNewPicSettingsPopUp;
213     IBOutlet NSButton            * fPresetNewPicFiltersCheck;
214         IBOutlet NSTextField         * fPresetSelectedDisplay;
215         
216         NSString                     * AppSupportDirectory;
217         NSString                     * UserPresetsFile;
218         NSMutableArray               * UserPresets;
219         NSMutableArray               * UserPresetssortedArray;
220         NSMutableDictionary          * chosenPreset;
221     int                            curUserPresetChosenNum;
222          
223         int                            presetHbDefault; // this is 1 in "Default" preset key
224         int                            presetUserDefault;// this is 2 in "Default" preset key
225     int                        presetCurrentBuiltInCount; // keeps track of the current number of built in presets
226     IBOutlet NSPanel             * fAddPresetPanel;
227         /* new NSOutline View for the presets */
228     NSArray                      *fDraggedNodes;
229     IBOutlet HBPresetsOutlineView * fPresetsOutlineView;
230     IBOutlet NSButton            * fPresetsAdd;
231         IBOutlet NSButton            * fPresetsDelete;
232     IBOutlet MVMenuButton        * fPresetsActionButton;
233     IBOutlet NSMenu              * fPresetsActionMenu;
234         
235     hb_handle_t                  * fHandle;
236         hb_title_t                   * fTitle;
237     /* integer to set to determine the previous state
238                 of encode 0==idle, 1==encoding, 2==cancelled*/
239     int                            fEncodeState;
240         int                            currentScanCount;
241         int                            currentSuccessfulScanCount;
242     BOOL                           SuccessfulScan;
243         NSString                      * currentSource;
244     NSString                     * browsedSourceDisplayName;
245 }
246 - (void) writeToActivityLog:(char *) format, ...;
247 - (IBAction) browseSources: (id) sender;
248 - (void) browseSourcesDone: (NSOpenPanel *) sheet
249                 returnCode: (int) returnCode contextInfo: (void *) contextInfo;
250 - (IBAction) showSourceTitleScanPanel: (id) sender;
251 - (IBAction) closeSourceTitleScanPanel: (id) sender;  
252 - (void) performScan:(NSString *) scanPath scanTitleNum: (int) scanTitleNum;
253 - (IBAction) showNewScan: (id) sender;
254
255 - (void)     updateUI: (NSTimer *) timer;
256 - (void)     enableUI: (bool) enable;
257
258 - (IBAction) titlePopUpChanged: (id) sender;
259 - (IBAction) chapterPopUpChanged: (id) sender;
260
261 - (IBAction) formatPopUpChanged: (id) sender;
262 - (IBAction) videoEncoderPopUpChanged: (id) sender;
263 - (IBAction) autoSetM4vExtension: (id) sender;
264 - (IBAction) twoPassCheckboxChanged: (id) sender;
265 - (IBAction) videoFrameRateChanged: (id) sender;
266 - (IBAction) audioAddAudioTrackCodecs: (id)sender;
267 - (IBAction) audioCodecsPopUpChanged: (id) sender;
268 - (IBAction) setEnabledStateOfAudioMixdownControls: (id) sender;
269 - (IBAction) addAllAudioTracksToPopUp: (id) sender;
270 - (IBAction) selectAudioTrackInPopUp: (id) sender searchPrefixString: (NSString *) searchPrefixString selectIndexIfNotFound: (int) selectIndexIfNotFound;
271 - (IBAction) audioTrackPopUpChanged: (id) sender;
272 - (IBAction) audioTrackPopUpChanged: (id) sender mixdownToUse: (int) mixdownToUse;
273 - (IBAction) audioTrackMixdownChanged: (id) sender;
274 - (IBAction) subtitleSelectionChanged: (id) sender;
275
276 - (IBAction) browseFile: (id) sender;
277 - (void)     browseFileDone: (NSSavePanel *) sheet
278                  returnCode: (int) returnCode contextInfo: (void *) contextInfo;
279
280 - (IBAction) videoMatrixChanged: (id) sender;
281 - (IBAction) qualitySliderChanged: (id) sender;
282 - (IBAction) audioDRCSliderChanged: (id) sender;
283
284 - (IBAction) showPicturePanel: (id) sender;
285 - (IBAction) calculatePictureSizing: (id) sender;
286 - (IBAction) openMainWindow: (id) sender;
287
288 - (IBAction) addToQueue: (id) sender;
289 - (void) overwriteAddToQueueAlertDone: (NSWindow *) sheet
290                            returnCode: (int) returnCode contextInfo: (void *) contextInfo;
291 - (void)     doAddToQueue;
292
293 - (IBAction) showQueueWindow:(id)sender;
294
295 - (IBAction)showPreferencesWindow:(id)sender;
296
297 - (IBAction) Rip: (id) sender;
298 - (void)     overWriteAlertDone: (NSWindow *) sheet
299                      returnCode: (int) returnCode contextInfo: (void *) contextInfo;
300 - (void)     doRip;
301
302 - (IBAction) Cancel: (id) sender;
303 - (void)     doCancelCurrentJob;
304
305 - (IBAction) Pause: (id) sender;
306
307 - (IBAction) calculateBitrate: (id) sender;
308 - (void) controlTextDidChange: (NSNotification *) notification;
309
310 - (IBAction) openHomepage: (id) sender;
311 - (IBAction) openForums:   (id) sender;
312 - (IBAction) openUserGuide:   (id) sender;
313
314 // Preset Methods Here
315     
316 /* These are required by the NSOutlineView Datasource Delegate */
317 /* We use this to deterimine children of an item */
318 - (id)outlineView:(NSOutlineView *)fPresetsOutlineView child:(NSInteger)index ofItem:(id)item;
319 /* We use this to determine if an item should be expandable */
320 - (BOOL)outlineView:(NSOutlineView *)fPresetsOutlineView isItemExpandable:(id)item;
321 /* used to specify the number of levels to show for each item */
322 - (int)outlineView:(NSOutlineView *)fPresetsOutlineView numberOfChildrenOfItem:(id)item;
323 /* Used to tell the outline view which information is to be displayed per item */
324 - (id)outlineView:(NSOutlineView *)fPresetsOutlineView objectValueForTableColumn:(NSTableColumn *)tableColumn byItem:(id)item;
325 /* Use to customize the font and display characteristics of the title cell */
326 - (void)outlineView:(NSOutlineView *)fPresetsOutlineView willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn item:(id)item;
327 /* We use this to edit the name field in the outline view */
328 - (void)outlineView:(NSOutlineView *)fPresetsOutlineView setObjectValue:(id)object forTableColumn:(NSTableColumn *)tableColumn byItem:(id)item;
329 /* We use this to provide tooltips for the items in the presets outline view */
330 - (NSString *)outlineView:(NSOutlineView *)fPresetsOutlineView toolTipForCell:(NSCell *)cell rect:(NSRectPointer)rect tableColumn:(NSTableColumn *)tc item:(id)item mouseLocation:(NSPoint)mouseLocation;
331
332 /* We use this to actually select the preset and act accordingly */
333 - (IBAction)selectPreset:(id)sender;    
334
335 /* Manage User presets */    
336 - (void) loadPresets;
337 - (IBAction) customSettingUsed: (id) sender;
338 - (IBAction) showAddPresetPanel: (id) sender;
339 - (IBAction) closeAddPresetPanel: (id) sender;
340 - (NSDictionary *)createPreset;
341
342 - (IBAction) revertPictureSizeToMax:(id)sender;
343
344 - (IBAction)setDefaultPreset:(id)sender;
345 - (IBAction)selectDefaultPreset:(id)sender;
346 - (void) savePreset;
347 - (void)sortPresets;
348 - (IBAction)addFactoryPresets:(id)sender;
349 - (IBAction)deleteFactoryPresets:(id)sender;
350 - (IBAction)addUserPreset:(id)sender;
351 - (void)addPreset;
352 - (IBAction)insertPreset:(id)sender;
353 - (IBAction)deletePreset:(id)sender;
354 - (IBAction)getDefaultPresets:(id)sender;
355
356 -(void)sendToMetaX:(NSString *) filePath;
357     // Growl methods
358 - (NSDictionary *) registrationDictionaryForGrowl;
359 -(void)showGrowlDoneNotification:(NSString *) filePath;
360 - (IBAction)showDebugOutputPanel:(id)sender;
361 - (void)setupToolbar;
362
363 - (void) remindUserOfSleepOrShutdown;
364
365 - (void)moveObjectsInPresetsArray:(NSMutableArray *)array fromIndexes:(NSIndexSet *)indexSet toIndex:(unsigned)insertIndex;
366 @end
367