diff options
author | dynaflash <[email protected]> | 2007-07-06 15:32:34 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-07-06 15:32:34 +0000 |
commit | c844ec634f42c7a2092fe0829cf4663ea836a276 (patch) | |
tree | 6f292af378ded60bf28e94601635099bfe860740 /macosx/PictureController.h | |
parent | 57ccb9bd7ccd5431c2865de38862ac2ec8503059 (diff) |
MacGui: Add auto crop value to main window
- shows if you are using Auto or Custom cropping in the Video tab of the main window.
- Prepares controller.mm to better use custom/auto cropping values particularly with presets.
- Required since auto crop is not currently stored in a title or job variable, and proper use of cropping for presets requires the preset to know what cropping to actually use.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@651 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/PictureController.h')
-rw-r--r-- | macosx/PictureController.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/macosx/PictureController.h b/macosx/PictureController.h index 46b8b3d98..973a0e2ff 100644 --- a/macosx/PictureController.h +++ b/macosx/PictureController.h @@ -43,8 +43,13 @@ IBOutlet NSButton * fNextButton; IBOutlet NSTextField * fInfoField; + + int MaxOutputWidth; int MaxOutputHeight; + + /* widgets in main window */ + IBOutlet NSTextField * fAutoCropMainWindow; } |