summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macosx/English.lproj/PicturePreview.xib4
-rw-r--r--macosx/HBPreviewController.mm45
2 files changed, 38 insertions, 11 deletions
diff --git a/macosx/English.lproj/PicturePreview.xib b/macosx/English.lproj/PicturePreview.xib
index 8c37f42e7..fc3a7cb4b 100644
--- a/macosx/English.lproj/PicturePreview.xib
+++ b/macosx/English.lproj/PicturePreview.xib
@@ -2,9 +2,9 @@
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.03">
<data>
<int key="IBDocument.SystemTarget">1050</int>
- <string key="IBDocument.SystemVersion">9G55</string>
+ <string key="IBDocument.SystemVersion">9J61</string>
<string key="IBDocument.InterfaceBuilderVersion">677</string>
- <string key="IBDocument.AppKitVersion">949.43</string>
+ <string key="IBDocument.AppKitVersion">949.46</string>
<string key="IBDocument.HIToolboxVersion">353.00</string>
<object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
<bool key="EncodedWithXMLCoder">YES</bool>
diff --git a/macosx/HBPreviewController.mm b/macosx/HBPreviewController.mm
index f6ab2ac45..29beeb290 100644
--- a/macosx/HBPreviewController.mm
+++ b/macosx/HBPreviewController.mm
@@ -304,8 +304,9 @@ return YES;
viewSize.width = viewSize.width - (viewSize.width - imageScaledSize.width);
viewSize.height = viewSize.height - (viewSize.height - imageScaledSize.height);
[fPreviewImage setSize: viewSize];
- [fPictureView setFrameSize: viewSize];
+ //[fPictureView setFrameSize: viewSize];
}
+
else
{
[fPreviewImage setSize: imageScaledSize];
@@ -336,6 +337,13 @@ return YES;
viewSize.height = viewSize.height - (viewSize.height - imageScaledSize.height);
[self setViewSize:viewSize];
+ /* special case for scaleToScreen */
+ if (scaleToScreen == YES)
+ {
+ [fPreviewImage setSize: viewSize];
+ [fPictureView setImage: fPreviewImage];
+ }
+
NSString *scaleString;
if( imageScaledSize.height > [fPictureView frame].size.height)
@@ -533,6 +541,7 @@ return YES;
else
{
[[fPictureControlBox animator] setHidden: YES];
+ [self stopHudTimer];
}
}
@@ -662,7 +671,6 @@ return YES;
/* make sure we are set to a still preview */
[self pictureSliderChanged:nil];
- //[fPreviewWindow setAcceptsMouseMovedEvents:NO];
[fFullScreenWindow setAcceptsMouseMovedEvents:YES];
@@ -1325,16 +1333,35 @@ return YES;
// Assumes resizeSheetForViewSize: has already been called.
//
- (void)setViewSize: (NSSize)viewSize
-{
+{
+ /* special case for scaleToScreen */
+ if (scaleToScreen == YES)
+ {
+ /* for scaleToScreen, we expand the fPictureView to fit the entire screen */
+ NSSize areaSize = [fPictureViewArea frame].size;
+ CGFloat viewSizeAspect = viewSize.width / viewSize.height;
+ if (viewSizeAspect > 1.0) // we are wider than taller, so expand the width to fill the area and scale the height
+ {
+ viewSize.width = areaSize.width;
+ viewSize.height = viewSize.width / viewSizeAspect;
+ }
+ else
+ {
+ viewSize.height = areaSize.height;
+ viewSize.width = viewSize.height * viewSizeAspect;
+ }
+
+ }
+
[fPictureView setFrameSize:viewSize];
- // center it vertically and horizontally
+ // center it vertically and horizontally
NSPoint origin = [fPictureViewArea frame].origin;
origin.y += ([fPictureViewArea frame].size.height -
[fPictureView frame].size.height) / 2.0;
-
- origin.x += ([fPictureViewArea frame].size.width -
- [fPictureView frame].size.width) / 2.0;
+
+ origin.x += ([fPictureViewArea frame].size.width -
+ [fPictureView frame].size.width) / 2.0;
[fPictureView setFrameOrigin:origin];
@@ -1344,8 +1371,8 @@ return YES;
controlboxorigin.y += 100;
controlboxorigin.x += ([fPictureViewArea frame].size.width -
- [fPictureControlBox frame].size.width) / 2.0;
-
+ [fPictureControlBox frame].size.width) / 2.0;
+
/* origin should be rounded to integer otherwise font/antialiasing
* may be blurry.