Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h" | 5 #include "chrome/browser/ui/cocoa/omnibox/omnibox_popup_view_mac.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 | 8 |
| 9 #include "base/stl_util.h" | 9 #include "base/stl_util.h" |
| 10 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMNSAnimation+Duration.h " | 22 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMNSAnimation+Duration.h " |
| 23 #import "ui/base/cocoa/cocoa_base_utils.h" | 23 #import "ui/base/cocoa/cocoa_base_utils.h" |
| 24 #import "ui/base/cocoa/flipped_view.h" | 24 #import "ui/base/cocoa/flipped_view.h" |
| 25 #include "ui/base/cocoa/window_size_constants.h" | 25 #include "ui/base/cocoa/window_size_constants.h" |
| 26 #include "ui/gfx/geometry/rect.h" | 26 #include "ui/gfx/geometry/rect.h" |
| 27 #include "ui/gfx/scoped_ns_graphics_context_save_gstate_mac.h" | 27 #include "ui/gfx/scoped_ns_graphics_context_save_gstate_mac.h" |
| 28 #include "ui/gfx/text_elider.h" | 28 #include "ui/gfx/text_elider.h" |
| 29 | 29 |
| 30 namespace { | 30 namespace { |
| 31 | 31 |
| 32 // How much to adjust the cell sizing up from the default determined | |
| 33 // by the font. | |
| 34 const CGFloat kCellHeightAdjust = 6.0; | |
| 35 | |
| 36 // Padding between matrix and the top and bottom of the popup window. | 32 // Padding between matrix and the top and bottom of the popup window. |
| 37 const CGFloat kPopupPaddingVertical = 5.0; | 33 const CGFloat kPopupPaddingVertical = 5.0; |
| 38 | 34 |
| 39 // Animation duration when animating the popup window smaller. | 35 // Animation duration when animating the popup window smaller. |
| 40 const NSTimeInterval kShrinkAnimationDuration = 0.1; | 36 const NSTimeInterval kShrinkAnimationDuration = 0.1; |
| 41 | 37 |
| 42 // Background colors for different states of the popup elements. | 38 // Background colors for different states of the popup elements. |
| 43 NSColor* BackgroundColor() { | 39 NSColor* BackgroundColor() { |
| 44 return [NSColor controlBackgroundColor]; | 40 return [NSColor controlBackgroundColor]; |
| 45 } | 41 } |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 76 DCHECK([NSThread isMainThread]); | 72 DCHECK([NSThread isMainThread]); |
| 77 const AutocompleteResult& result = GetResult(); | 73 const AutocompleteResult& result = GetResult(); |
| 78 const size_t start_match = result.ShouldHideTopMatch() ? 1 : 0; | 74 const size_t start_match = result.ShouldHideTopMatch() ? 1 : 0; |
| 79 const size_t rows = result.size() - start_match; | 75 const size_t rows = result.size() - start_match; |
| 80 if (rows == 0) { | 76 if (rows == 0) { |
| 81 [[popup_ parentWindow] removeChildWindow:popup_]; | 77 [[popup_ parentWindow] removeChildWindow:popup_]; |
| 82 [popup_ orderOut:nil]; | 78 [popup_ orderOut:nil]; |
| 83 | 79 |
| 84 // Break references to |this| because the popup may not be | 80 // Break references to |this| because the popup may not be |
| 85 // deallocated immediately. | 81 // deallocated immediately. |
| 86 [matrix_ setDelegate:nil]; | 82 [matrix_ setObserver:NULL]; |
| 87 matrix_.reset(); | 83 matrix_.reset(); |
| 88 | 84 |
| 89 popup_.reset(nil); | 85 popup_.reset(nil); |
| 90 | 86 |
| 91 target_popup_frame_ = NSZeroRect; | 87 target_popup_frame_ = NSZeroRect; |
| 92 | 88 |
| 93 return; | 89 return; |
| 94 } | 90 } |
| 95 | 91 |
| 96 CreatePopupIfNeeded(); | 92 CreatePopupIfNeeded(); |
| 97 | 93 |
| 98 // Calculate the width of the matrix based on backing out the popup's border | |
| 99 // from the width of the field. | |
| 100 const CGFloat matrix_width = NSWidth([field_ bounds]); | |
| 101 DCHECK_GT(matrix_width, 0.0); | |
| 102 | |
| 103 // Load the results into the popup's matrix. | 94 // Load the results into the popup's matrix. |
| 104 DCHECK_GT(rows, 0U); | 95 DCHECK_GT(rows, 0U); |
| 105 [matrix_ renewRows:rows columns:1]; | 96 base::scoped_nsobject<NSMutableArray> array([[NSMutableArray alloc] init]); |
|
groby-ooo-7-16
2015/05/20 01:02:31
Theoretically...
What we're building here _is_ es
dschuyler
2015/05/21 00:38:39
I've moved the data init into the Controller (whic
| |
| 97 CGFloat popupHeight = 0; | |
| 98 NSRect cellRect = NSZeroRect; | |
| 99 cellRect.size.width = NSWidth([field_ bounds]); | |
| 106 CGFloat max_match_contents_width = 0.0f; | 100 CGFloat max_match_contents_width = 0.0f; |
| 107 CGFloat contents_offset = -1.0f; | 101 CGFloat contents_offset = -1.0f; |
| 108 for (size_t ii = 0; ii < rows; ++ii) { | 102 for (size_t ii = 0; ii < rows; ++ii) { |
| 109 OmniboxPopupCell* cell = [matrix_ cellAtRow:ii column:0]; | |
| 110 const AutocompleteMatch& match = GetResult().match_at(ii + start_match); | 103 const AutocompleteMatch& match = GetResult().match_at(ii + start_match); |
| 111 [cell setImage:ImageForMatch(match)]; | 104 NSImage* image = ImageForMatch(match); |
| 112 [cell setMatch:match]; | 105 base::scoped_nsobject<OmniboxPopupCellData> cellData( |
| 106 [[OmniboxPopupCellData alloc] initWithMatch:match image:image]); | |
| 107 [array addObject:cellData]; | |
| 108 popupHeight += [cellData rowHeight]; | |
| 113 if (match.type == AutocompleteMatchType::SEARCH_SUGGEST_TAIL) { | 109 if (match.type == AutocompleteMatchType::SEARCH_SUGGEST_TAIL) { |
| 114 max_match_contents_width = std::max(max_match_contents_width, | 110 max_match_contents_width = |
| 115 [cell getMatchContentsWidth]); | 111 std::max(max_match_contents_width, [cellData getMatchContentsWidth]); |
| 116 if (contents_offset < 0.0f) { | 112 if (contents_offset < 0.0f) { |
| 117 contents_offset = [OmniboxPopupCell computeContentsOffset:match]; | 113 contents_offset = [OmniboxPopupCell computeContentsOffset:match]; |
| 118 } | 114 } |
| 119 [cell setContentsOffset:contents_offset]; | 115 [cellData setContentsOffset:contents_offset]; |
| 120 } | 116 } |
| 121 } | 117 } |
| 122 | 118 |
| 123 for (size_t ii = 0; ii < rows; ++ii) { | 119 for (size_t ii = 0; ii < rows; ++ii) { |
| 124 OmniboxPopupCell* cell = [matrix_ cellAtRow:ii column:0]; | 120 OmniboxPopupCellData* cellData = [array objectAtIndex:ii]; |
| 125 [cell setMaxMatchContentsWidth:max_match_contents_width]; | 121 [cellData setMaxMatchContentsWidth:max_match_contents_width]; |
| 126 } | 122 } |
| 127 | 123 |
| 128 // Set the cell size to fit a line of text in the cell's font. All | 124 [matrix_ setDataArray:array]; |
| 129 // cells should use the same font and each should layout in one | 125 [matrix_ reloadData]; |
| 130 // line, so they should all be about the same height. | 126 popupHeight += [matrix_ intercellSpacing].height * (rows - 1); |
| 131 const NSSize cell_size = [[matrix_ cellAtRow:0 column:0] cellSize]; | |
| 132 DCHECK_GT(cell_size.height, 0.0); | |
| 133 const CGFloat cell_height = cell_size.height + kCellHeightAdjust; | |
| 134 [matrix_ setCellSize:NSMakeSize(matrix_width, cell_height)]; | |
| 135 | 127 |
| 136 // Update the selection before placing (and displaying) the window. | 128 // Update the selection before placing (and displaying) the window. |
| 137 PaintUpdatesNow(); | 129 PaintUpdatesNow(); |
| 138 | 130 |
| 139 // Calculate the matrix size manually rather than using -sizeToCells | 131 // Calculate the matrix size manually rather than using -sizeToCells |
| 140 // because actually resizing the matrix messed up the popup size | 132 // because actually resizing the matrix messed up the popup size |
| 141 // animation. | 133 // animation. |
| 142 DCHECK_EQ([matrix_ intercellSpacing].height, 0.0); | 134 DCHECK_EQ([matrix_ intercellSpacing].height, 0.0); |
| 143 PositionPopup(rows * cell_height); | 135 PositionPopup(popupHeight); |
| 144 } | 136 } |
| 145 | 137 |
| 146 gfx::Rect OmniboxPopupViewMac::GetTargetBounds() { | 138 gfx::Rect OmniboxPopupViewMac::GetTargetBounds() { |
| 147 // Flip the coordinate system before returning. | 139 // Flip the coordinate system before returning. |
| 148 NSScreen* screen = [[NSScreen screens] objectAtIndex:0]; | 140 NSScreen* screen = [[NSScreen screens] objectAtIndex:0]; |
| 149 NSRect monitor_frame = [screen frame]; | 141 NSRect monitor_frame = [screen frame]; |
| 150 gfx::Rect bounds(NSRectToCGRect(target_popup_frame_)); | 142 gfx::Rect bounds(NSRectToCGRect(target_popup_frame_)); |
| 151 bounds.set_y(monitor_frame.size.height - bounds.y() - bounds.height()); | 143 bounds.set_y(monitor_frame.size.height - bounds.y() - bounds.height()); |
| 152 return bounds; | 144 return bounds; |
| 153 } | 145 } |
| 154 | 146 |
| 155 // This is only called by model in SetSelectedLine() after updating | 147 // This is only called by model in SetSelectedLine() after updating |
| 156 // everything. Popup should already be visible. | 148 // everything. Popup should already be visible. |
| 157 void OmniboxPopupViewMac::PaintUpdatesNow() { | 149 void OmniboxPopupViewMac::PaintUpdatesNow() { |
| 158 size_t start_match = model_->result().ShouldHideTopMatch() ? 1 : 0; | 150 size_t start_match = model_->result().ShouldHideTopMatch() ? 1 : 0; |
| 159 if (start_match > model_->selected_line()) { | 151 NSIndexSet* indexSet = nil; |
|
groby-ooo-7-16
2015/05/20 01:02:31
Since we're only allow single selection, why not m
dschuyler
2015/05/21 00:38:39
How about selectRowIndex.
Done.
| |
| 160 [matrix_ deselectAllCells]; | 152 if (start_match <= model_->selected_line()) { |
| 153 indexSet = | |
| 154 [NSIndexSet indexSetWithIndex:model_->selected_line() - start_match]; | |
| 161 } else { | 155 } else { |
| 162 [matrix_ selectCellAtRow:model_->selected_line() - start_match column:0]; | 156 indexSet = [NSIndexSet indexSet]; |
| 163 } | 157 } |
| 164 | 158 [matrix_ selectRowIndexes:indexSet byExtendingSelection:NO]; |
| 165 } | 159 } |
| 166 | 160 |
| 167 void OmniboxPopupViewMac::OnMatrixRowSelected(OmniboxPopupMatrix* matrix, | 161 void OmniboxPopupViewMac::OnMatrixRowSelected(OmniboxPopupMatrix* matrix, |
| 168 size_t row) { | 162 size_t row) { |
| 169 size_t start_match = model_->result().ShouldHideTopMatch() ? 1 : 0; | 163 size_t start_match = model_->result().ShouldHideTopMatch() ? 1 : 0; |
| 170 model_->SetSelectedLine(row + start_match, false, false); | 164 model_->SetSelectedLine(row + start_match, false, false); |
| 171 } | 165 } |
| 172 | 166 |
| 173 void OmniboxPopupViewMac::OnMatrixRowClicked(OmniboxPopupMatrix* matrix, | 167 void OmniboxPopupViewMac::OnMatrixRowClicked(OmniboxPopupMatrix* matrix, |
| 174 size_t row) { | 168 size_t row) { |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 235 NSRect popup_frame = anchor_rect_base; | 229 NSRect popup_frame = anchor_rect_base; |
| 236 // Size to fit the matrix and shift down by the size. | 230 // Size to fit the matrix and shift down by the size. |
| 237 popup_frame.size.height = matrixHeight + kPopupPaddingVertical * 2.0; | 231 popup_frame.size.height = matrixHeight + kPopupPaddingVertical * 2.0; |
| 238 popup_frame.size.height += [OmniboxPopupTopSeparatorView preferredHeight]; | 232 popup_frame.size.height += [OmniboxPopupTopSeparatorView preferredHeight]; |
| 239 popup_frame.size.height += [OmniboxPopupBottomSeparatorView preferredHeight]; | 233 popup_frame.size.height += [OmniboxPopupBottomSeparatorView preferredHeight]; |
| 240 popup_frame.origin.y -= NSHeight(popup_frame); | 234 popup_frame.origin.y -= NSHeight(popup_frame); |
| 241 // Shift to screen coordinates. | 235 // Shift to screen coordinates. |
| 242 popup_frame.origin = | 236 popup_frame.origin = |
| 243 [[controller window] convertBaseToScreen:popup_frame.origin]; | 237 [[controller window] convertBaseToScreen:popup_frame.origin]; |
| 244 | 238 |
| 245 // Do nothing if the popup is already animating to the given |frame|. | |
| 246 if (NSEqualRects(popup_frame, target_popup_frame_)) | |
| 247 return; | |
| 248 | |
| 249 // Top separator. | 239 // Top separator. |
| 250 NSRect top_separator_frame = NSZeroRect; | 240 NSRect top_separator_frame = NSZeroRect; |
| 251 top_separator_frame.size.width = NSWidth(popup_frame); | 241 top_separator_frame.size.width = NSWidth(popup_frame); |
| 252 top_separator_frame.size.height = | 242 top_separator_frame.size.height = |
| 253 [OmniboxPopupTopSeparatorView preferredHeight]; | 243 [OmniboxPopupTopSeparatorView preferredHeight]; |
| 254 [top_separator_view_ setFrame:top_separator_frame]; | 244 [top_separator_view_ setFrame:top_separator_frame]; |
| 255 | 245 |
| 256 // Bottom separator. | 246 // Bottom separator. |
| 257 NSRect bottom_separator_frame = NSZeroRect; | 247 NSRect bottom_separator_frame = NSZeroRect; |
| 258 bottom_separator_frame.size.width = NSWidth(popup_frame); | 248 bottom_separator_frame.size.width = NSWidth(popup_frame); |
| 259 bottom_separator_frame.size.height = | 249 bottom_separator_frame.size.height = |
| 260 [OmniboxPopupBottomSeparatorView preferredHeight]; | 250 [OmniboxPopupBottomSeparatorView preferredHeight]; |
| 261 bottom_separator_frame.origin.y = | 251 bottom_separator_frame.origin.y = |
| 262 NSHeight(popup_frame) - NSHeight(bottom_separator_frame); | 252 NSHeight(popup_frame) - NSHeight(bottom_separator_frame); |
| 263 [bottom_separator_view_ setFrame:bottom_separator_frame]; | 253 [bottom_separator_view_ setFrame:bottom_separator_frame]; |
| 264 | 254 |
| 265 // Background view. | 255 // Background view. |
| 266 NSRect background_rect = NSZeroRect; | 256 NSRect background_rect = NSZeroRect; |
| 267 background_rect.size.width = NSWidth(popup_frame); | 257 background_rect.size.width = NSWidth(popup_frame); |
| 268 background_rect.size.height = NSHeight(popup_frame) - | 258 background_rect.size.height = NSHeight(popup_frame) - |
| 269 NSHeight(top_separator_frame) - NSHeight(bottom_separator_frame); | 259 NSHeight(top_separator_frame) - NSHeight(bottom_separator_frame); |
| 270 background_rect.origin.y = NSMaxY(top_separator_frame); | 260 background_rect.origin.y = NSMaxY(top_separator_frame); |
| 271 [background_view_ setFrame:background_rect]; | 261 [background_view_ setFrame:background_rect]; |
| 272 | 262 |
| 263 // Calculate the width of the table based on backing out the popup's border | |
| 264 // from the width of the field. | |
| 265 const CGFloat tableWidth = NSWidth([field_ bounds]); | |
| 266 DCHECK_GT(tableWidth, 0.0); | |
| 267 | |
| 273 // Matrix. | 268 // Matrix. |
| 274 NSPoint field_origin_base = | 269 NSPoint field_origin_base = |
| 275 [field_ convertPoint:[field_ bounds].origin toView:nil]; | 270 [field_ convertPoint:[field_ bounds].origin toView:nil]; |
| 276 NSRect matrix_frame = NSZeroRect; | 271 NSRect matrix_frame = NSZeroRect; |
| 277 matrix_frame.origin.x = field_origin_base.x - NSMinX(anchor_rect_base); | 272 matrix_frame.origin.x = field_origin_base.x - NSMinX(anchor_rect_base); |
| 278 matrix_frame.origin.y = kPopupPaddingVertical; | 273 matrix_frame.origin.y = kPopupPaddingVertical; |
| 279 matrix_frame.size.width = [matrix_ cellSize].width; | 274 matrix_frame.size.width = tableWidth; |
| 280 matrix_frame.size.height = matrixHeight; | 275 matrix_frame.size.height = matrixHeight; |
| 281 [matrix_ setFrame:matrix_frame]; | 276 [matrix_ setFrame:matrix_frame]; |
| 282 | 277 |
| 283 NSRect current_poup_frame = [popup_ frame]; | 278 NSRect current_poup_frame = [popup_ frame]; |
| 284 target_popup_frame_ = popup_frame; | 279 target_popup_frame_ = popup_frame; |
| 285 | 280 |
| 286 // Animate the frame change if the only change is that the height got smaller. | 281 // Animate the frame change if the only change is that the height got smaller. |
| 287 // Otherwise, resize immediately. | 282 // Otherwise, resize immediately. |
| 288 bool animate = (NSHeight(popup_frame) < NSHeight(current_poup_frame) && | 283 bool animate = (NSHeight(popup_frame) < NSHeight(current_poup_frame) && |
| 289 NSWidth(popup_frame) == NSWidth(current_poup_frame)); | 284 NSWidth(popup_frame) == NSWidth(current_poup_frame)); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 329 } | 324 } |
| 330 | 325 |
| 331 void OmniboxPopupViewMac::OpenURLForRow(size_t row, | 326 void OmniboxPopupViewMac::OpenURLForRow(size_t row, |
| 332 WindowOpenDisposition disposition) { | 327 WindowOpenDisposition disposition) { |
| 333 size_t start_match = model_->result().ShouldHideTopMatch() ? 1 : 0; | 328 size_t start_match = model_->result().ShouldHideTopMatch() ? 1 : 0; |
| 334 row += start_match; | 329 row += start_match; |
| 335 DCHECK_LT(row, GetResult().size()); | 330 DCHECK_LT(row, GetResult().size()); |
| 336 omnibox_view_->OpenMatch(GetResult().match_at(row), disposition, GURL(), | 331 omnibox_view_->OpenMatch(GetResult().match_at(row), disposition, GURL(), |
| 337 base::string16(), row); | 332 base::string16(), row); |
| 338 } | 333 } |
| OLD | NEW |