Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5680)

Unified Diff: chrome/browser/ui/cocoa/web_intent_sheet_controller.mm

Issue 10917077: [WebIntents, OSX] Clean up inline disposition to match mock. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added comment. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
diff --git a/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm b/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
index 92645dc26ba69651390cfd1008b2f67638421be5..8d528ad3f62cc9a559044a0c01d868f5ab5bdc27 100644
--- a/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
+++ b/chrome/browser/ui/cocoa/web_intent_sheet_controller.mm
@@ -36,6 +36,13 @@
using content::OpenURLParams;
using content::Referrer;
+@interface HyperlinkButtonCell (Private)
+- (void)customizeButtonCell;
+@end
+
+@interface CustomLinkButtonCell : HyperlinkButtonCell
+@end
+
namespace {
// The width of a service button, in view coordinates.
@@ -47,9 +54,6 @@ const CGFloat kVerticalSpacing = 18;
// Square size of the close button.
const CGFloat kCloseButtonSize = 16;
-// Font size for picker header.
-const CGFloat kHeaderFontSize = 14.5;
-
// Width of the text fields.
const CGFloat kTextWidth = WebIntentPicker::kWindowWidth -
(WebIntentPicker::kContentAreaBorder * 2.0 + kCloseButtonSize);
@@ -67,8 +71,8 @@ void ConfigureTextFieldAsLabel(NSTextField* field) {
NSButton* CreateHyperlinkButton(NSString* title, const NSRect& frame) {
NSButton* button = [[NSButton alloc] initWithFrame:frame];
- scoped_nsobject<HyperlinkButtonCell> cell(
- [[HyperlinkButtonCell alloc] initTextCell:title]);
+ scoped_nsobject<CustomLinkButtonCell> cell(
+ [[CustomLinkButtonCell alloc] initTextCell:title]);
[cell setControlSize:NSSmallControlSize];
[button setCell:cell.get()];
[button setButtonType:NSMomentaryPushInButton];
@@ -79,6 +83,32 @@ NSButton* CreateHyperlinkButton(NSString* title, const NSRect& frame) {
} // namespace
+
+// Provide custom link format for intent picker. Removes underline attribute,
+// since UX direction is "look like WebUI".
+@implementation CustomLinkButtonCell
+- (void)customizeButtonCell {
+ [super customizeButtonCell];
+ [self setTextColor:[NSColor colorWithDeviceRed:0xff/255.0
+ green:0x11/255.0
+ blue:0x55/255.0
+ alpha:0xcc/255.0]];
+}
+
+- (NSDictionary*)linkAttributes {
+ scoped_nsobject<NSMutableParagraphStyle> paragraphStyle(
+ [[NSParagraphStyle defaultParagraphStyle] mutableCopy]);
Nico 2012/09/11 06:56:36 indent 2 more
groby-ooo-7-16 2012/09/12 22:39:11 Done.
+ [paragraphStyle setAlignment:[self alignment]];
+
+ return @{
+ NSForegroundColorAttributeName: [self textColor],
+ NSFontAttributeName: [self font],
+ NSCursorAttributeName: [NSCursor pointingHandCursor],
+ NSParagraphStyleAttributeName: paragraphStyle.get()
+ };
+}
+@end
+
// This simple NSView subclass is used as the single subview of the page info
// bubble's window's contentView. Drawing is flipped so that layout of the
// sections is easier. Apple recommends flipping the coordinate origin when
@@ -251,6 +281,7 @@ NSButton* CreateHyperlinkButton(NSString* title, const NSRect& frame) {
spacer_.reset([[NSBox alloc] initWithFrame:frame]);
[spacer_ setBoxType:NSBoxSeparator];
[spacer_ setBorderColor:[NSColor blackColor]];
+ [spacer_ setAlphaValue:0.2];
NSArray* subviews = @[titleField_, subtitleField_, spacer_];
[self setSubviews:subviews];
@@ -692,7 +723,7 @@ const CGFloat kAddButtonWidth = 128.0;
inlineDispositionTitleField_.reset([[NSTextField alloc] init]);
ConfigureTextFieldAsLabel(inlineDispositionTitleField_);
-
+ [inlineDispositionTitleField_ setFont:[NSFont boldSystemFontOfSize:0]];
flipView_.reset([[WebIntentsContentView alloc] init]);
[flipView_ setAutoresizingMask:NSViewMinYMargin];
[[[self window] contentView] setSubviews:
@@ -753,13 +784,6 @@ const CGFloat kAddButtonWidth = 128.0;
// Resize web contents.
[webContentView setFrameSize:inlineContentSize];
-
- // Position close button.
- NSRect buttonFrame = [closeButton_ frame];
- buttonFrame.origin.x = containerSize.width -
- WebIntentPicker::kContentAreaBorder - kCloseButtonSize;
- [closeButton_ setFrame:buttonFrame];
-
[self setContainerSize:containerSize];
}
@@ -850,13 +874,17 @@ const CGFloat kAddButtonWidth = 128.0;
}
- (void)addCloseButtonToSubviews:(NSMutableArray*)subviews {
+ const CGFloat kButtonPadding = 4.0; // whitespace inside button frame.
if (!closeButton_.get()) {
NSRect buttonFrame = NSMakeRect(
- WebIntentPicker::kContentAreaBorder + kTextWidth,
- WebIntentPicker::kContentAreaBorder,
+ WebIntentPicker::kContentAreaBorder + kTextWidth + kButtonPadding,
+ WebIntentPicker::kContentAreaBorder - kButtonPadding,
kCloseButtonSize, kCloseButtonSize);
closeButton_.reset(
[[HoverCloseButton alloc] initWithFrame:buttonFrame]);
+ // Anchor close button to upper right.
+ // (NSViewMaxYMargin since parent view is flipped.)
+ [closeButton_ setAutoresizingMask:NSViewMaxYMargin|NSViewMinXMargin];
[closeButton_ setTarget:self];
[closeButton_ setAction:@selector(cancelOperation:)];
}
@@ -911,9 +939,35 @@ const CGFloat kAddButtonWidth = 128.0;
- (CGFloat)addAnotherServiceLinkToSubviews:(NSMutableArray*)subviews
atOffset:(CGFloat)offset {
+ DCHECK(model_);
+ DCHECK(model_->IsInlineDisposition());
+ GURL url = model_->inline_disposition_url();
+
+ const WebIntentPickerModel::InstalledService* service =
+ model_->GetInstalledServiceWithURL(url);
+ DCHECK(service);
+
+ CGFloat originalOffset = offset;
+ // Icon for current service.
+ scoped_nsobject<NSImageView> icon;
+ NSRect imageFrame = NSMakeRect(WebIntentPicker::kContentAreaBorder, offset,
+ 0, 0);
+ icon.reset([[NSImageView alloc] initWithFrame:imageFrame]);
+ [icon setImage:service->favicon.ToNSImage()];
+ [icon setImageFrameStyle:NSImageFrameNone];
+ [icon setEnabled:YES];
+
+ imageFrame.size = [service->favicon.ToNSImage() size];
+ [icon setFrame:imageFrame];
+
+ [subviews addObject:icon];
+
+ // Resize control to fit text
NSRect textFrame =
- NSMakeRect(WebIntentPicker::kContentAreaBorder, offset, kTextWidth, 1);
+ NSMakeRect(NSMaxX(imageFrame) + 4,
+ offset,
+ WebIntentPicker::kTitleLinkMaxWidth, 1);
[inlineDispositionTitleField_ setFrame:textFrame];
[subviews addObject:inlineDispositionTitleField_];
[GTMUILocalizerAndLayoutTweaker sizeToFitView:inlineDispositionTitleField_];
@@ -925,11 +979,12 @@ const CGFloat kAddButtonWidth = 128.0;
model_->GetSuggestedExtensionCount()) {
NSRect frame = NSMakeRect(
NSMaxX(textFrame) + WebIntentPicker::kContentAreaBorder, offset,
- WebIntentPicker::kTitleLinkMaxWidth, 1);
+ 1, 1);
NSString* string = l10n_util::GetNSStringWithFixup(
IDS_INTENT_PICKER_USE_ALTERNATE_SERVICE);
scoped_nsobject<NSButton> button(CreateHyperlinkButton(string, frame));
[[button cell] setControlSize:NSRegularControlSize];
+ [[button cell] setFont:[NSFont controlContentFontOfSize:0]];
Nico 2012/09/11 06:56:36 nit: i think you replaced "0" with the explicit fo
groby-ooo-7-16 2012/09/12 22:39:11 Done.
[button setTarget:self];
[button setAction:@selector(chooseAnotherService:)];
[subviews addObject:button];
@@ -937,6 +992,13 @@ const CGFloat kAddButtonWidth = 128.0;
// Call size-to-fit to fixup for the localized string.
[GTMUILocalizerAndLayoutTweaker sizeToFitView:button];
+ // Right-align the "use another service" button.
+ frame = [button frame];
+ frame.origin.x = WebIntentPicker::kWindowWidth - NSWidth(frame) -
+ 2 * WebIntentPicker::kContentAreaBorder - kCloseButtonSize;
+ [button setFrame:frame];
+ [button setAutoresizingMask:NSViewMinXMargin];
+
// And finally, make sure the link and the title are horizontally centered.
frame = [button frame];
CGFloat height = std::max(NSHeight(textFrame), NSHeight(frame));
@@ -948,7 +1010,18 @@ const CGFloat kAddButtonWidth = 128.0;
[inlineDispositionTitleField_ setFrame:textFrame];
}
- return NSHeight(textFrame);
+ offset += NSHeight(textFrame) + kVerticalSpacing;
+
+ scoped_nsobject<NSBox> spacer;
+
+ NSRect frame = NSMakeRect(0, offset, WebIntentPicker::kWindowWidth, 1.0);
+ spacer.reset([[NSBox alloc] initWithFrame:frame]);
+ [spacer setBoxType:NSBoxSeparator];
+ [spacer setAlphaValue:0.2];
+ [spacer setAutoresizingMask:NSViewWidthSizable];
+ [subviews addObject: spacer];
+
+ return offset + kVerticalSpacing - originalOffset;
}
- (NSView*)createEmptyView {
@@ -1025,7 +1098,6 @@ const CGFloat kAddButtonWidth = 128.0;
} else if (contents_) {
offset += [self addAnotherServiceLinkToSubviews:subviews
atOffset:offset];
- offset += WebIntentPicker::kContentAreaBorder;
offset += [self addInlineHtmlToSubviews:subviews atOffset:offset];
} else {
offset += [self addHeaderToSubviews:subviews atOffset:offset];
@@ -1039,16 +1111,17 @@ const CGFloat kAddButtonWidth = 128.0;
}
offset += [self addCwsButtonToSubviews:subviews atOffset:offset];
}
- [self addCloseButtonToSubviews:subviews];
// Add the bottom padding.
offset += WebIntentPicker::kContentAreaBorder;
+ // Resize to fit.
+ [self setContainerSize:NSMakeSize(WebIntentPicker::kWindowWidth, offset)];
+
+ [self addCloseButtonToSubviews:subviews];
+
// Replace the window's content.
[flipView_ setSubviews:subviews];
-
- // And resize to fit.
- [self setContainerSize:NSMakeSize(WebIntentPicker::kWindowWidth, offset)];
}
- (void)setActionString:(NSString*)actionString {
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698