Chromium Code Reviews

Side by Side Diff: chrome/browser/cocoa/location_bar_view_mac.mm

Issue 264037: Refactor security-icon code to a more general form (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/browser/cocoa/location_bar_view_mac.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #import "chrome/browser/cocoa/location_bar_view_mac.h" 5 #import "chrome/browser/cocoa/location_bar_view_mac.h"
6 6
7 #include "app/l10n_util_mac.h" 7 #include "app/l10n_util_mac.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/sys_string_conversions.h" 10 #include "base/sys_string_conversions.h"
11 #include "chrome/app/chrome_dll_resource.h" 11 #include "chrome/app/chrome_dll_resource.h"
12 #include "chrome/browser/alternate_nav_url_fetcher.h" 12 #include "chrome/browser/alternate_nav_url_fetcher.h"
13 #import "chrome/browser/app_controller_mac.h" 13 #import "chrome/browser/app_controller_mac.h"
14 #import "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" 14 #import "chrome/browser/autocomplete/autocomplete_edit_view_mac.h"
15 #include "chrome/browser/browser_list.h"
15 #import "chrome/browser/cocoa/autocomplete_text_field.h" 16 #import "chrome/browser/cocoa/autocomplete_text_field.h"
16 #import "chrome/browser/cocoa/autocomplete_text_field_cell.h" 17 #import "chrome/browser/cocoa/autocomplete_text_field_cell.h"
17 #include "chrome/browser/cocoa/event_utils.h" 18 #include "chrome/browser/cocoa/event_utils.h"
18 #include "chrome/browser/command_updater.h" 19 #include "chrome/browser/command_updater.h"
19 #include "chrome/browser/profile.h" 20 #include "chrome/browser/profile.h"
20 #include "chrome/browser/search_engines/template_url.h" 21 #include "chrome/browser/search_engines/template_url.h"
21 #include "chrome/browser/search_engines/template_url_model.h" 22 #include "chrome/browser/search_engines/template_url_model.h"
23 #include "chrome/browser/tab_contents/navigation_entry.h"
24 #include "chrome/browser/tab_contents/tab_contents.h"
22 #include "grit/generated_resources.h" 25 #include "grit/generated_resources.h"
23 #include "grit/theme_resources.h" 26 #include "grit/theme_resources.h"
24 #include "skia/ext/skia_utils_mac.h" 27 #include "skia/ext/skia_utils_mac.h"
25 #include "third_party/skia/include/core/SkBitmap.h" 28 #include "third_party/skia/include/core/SkBitmap.h"
26 29
27 // TODO(shess): This code is mostly copied from the gtk 30 // TODO(shess): This code is mostly copied from the gtk
28 // implementation. Make sure it's all appropriate and flesh it out. 31 // implementation. Make sure it's all appropriate and flesh it out.
29 32
30 namespace { 33 namespace {
31 34
(...skipping 42 matching lines...)
74 AutocompleteTextField* field, 77 AutocompleteTextField* field,
75 const BubblePositioner* bubble_positioner, 78 const BubblePositioner* bubble_positioner,
76 CommandUpdater* command_updater, 79 CommandUpdater* command_updater,
77 ToolbarModel* toolbar_model, 80 ToolbarModel* toolbar_model,
78 Profile* profile) 81 Profile* profile)
79 : edit_view_(new AutocompleteEditViewMac(this, bubble_positioner, 82 : edit_view_(new AutocompleteEditViewMac(this, bubble_positioner,
80 toolbar_model, profile, command_updater, field)), 83 toolbar_model, profile, command_updater, field)),
81 command_updater_(command_updater), 84 command_updater_(command_updater),
82 field_(field), 85 field_(field),
83 disposition_(CURRENT_TAB), 86 disposition_(CURRENT_TAB),
87 security_image_view_(profile, toolbar_model),
84 profile_(profile), 88 profile_(profile),
85 toolbar_model_(toolbar_model), 89 toolbar_model_(toolbar_model),
86 transition_(PageTransition::TYPED) { 90 transition_(PageTransition::TYPED) {
91 AutocompleteTextFieldCell* cell = [field_ autocompleteTextFieldCell];
92 [cell setSecurityImageView:&security_image_view_];
87 } 93 }
88 94
89 LocationBarViewMac::~LocationBarViewMac() { 95 LocationBarViewMac::~LocationBarViewMac() {
90 // TODO(shess): Placeholder for omnibox changes. 96 // TODO(shess): Placeholder for omnibox changes.
91 } 97 }
92 98
93 std::wstring LocationBarViewMac::GetInputString() const { 99 std::wstring LocationBarViewMac::GetInputString() const {
94 return location_input_; 100 return location_input_;
95 } 101 }
96 102
(...skipping 199 matching lines...)
296 if (!tab_button_image_) { 302 if (!tab_button_image_) {
297 SkBitmap* skiaBitmap = ResourceBundle::GetSharedInstance(). 303 SkBitmap* skiaBitmap = ResourceBundle::GetSharedInstance().
298 GetBitmapNamed(IDR_LOCATION_BAR_KEYWORD_HINT_TAB); 304 GetBitmapNamed(IDR_LOCATION_BAR_KEYWORD_HINT_TAB);
299 if (skiaBitmap) { 305 if (skiaBitmap) {
300 tab_button_image_.reset([gfx::SkBitmapToNSImage(*skiaBitmap) retain]); 306 tab_button_image_.reset([gfx::SkBitmapToNSImage(*skiaBitmap) retain]);
301 } 307 }
302 } 308 }
303 return tab_button_image_; 309 return tab_button_image_;
304 } 310 }
305 311
306 void LocationBarViewMac::SetSecurityIcon(ToolbarModel::Icon security_icon) { 312 void LocationBarViewMac::SetSecurityIconLabel() {
307 std::wstring info_text, info_tooltip; 313 std::wstring info_text;
314 std::wstring info_tooltip;
308 ToolbarModel::InfoTextType info_text_type = 315 ToolbarModel::InfoTextType info_text_type =
309 toolbar_model_->GetInfoText(&info_text, &info_tooltip); 316 toolbar_model_->GetInfoText(&info_text, &info_tooltip);
310 NSColor* color = nil;
311 NSString* icon_label = nil;
312 if (info_text_type == ToolbarModel::INFO_EV_TEXT) { 317 if (info_text_type == ToolbarModel::INFO_EV_TEXT) {
313 icon_label = base::SysWideToNSString(info_text); 318 NSString* icon_label = base::SysWideToNSString(info_text);
314 color = 319 NSColor* color = [NSColor colorWithCalibratedRed:kEvTextColorRedComponent
315 [NSColor colorWithCalibratedRed:kEvTextColorRedComponent 320 green:kEvTextColorGreenComponent
316 green:kEvTextColorGreenComponent 321 blue:kEvTextColorBlueComponent
317 blue:kEvTextColorBlueComponent 322 alpha:1.0];
318 alpha:1.0]; 323 security_image_view_.SetLabel(icon_label, [field_ font], color);
324 } else {
325 security_image_view_.SetLabel(nil, nil, nil);
319 } 326 }
327 }
320 328
321 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); 329 void LocationBarViewMac::SetSecurityIcon(ToolbarModel::Icon icon) {
322 AutocompleteTextFieldCell* cell = [field_ autocompleteTextFieldCell]; 330 switch (icon) {
323 switch (security_icon) {
324 case ToolbarModel::LOCK_ICON: 331 case ToolbarModel::LOCK_ICON:
325 [cell setHintIcon:rb.GetNSImageNamed(IDR_LOCK) 332 security_image_view_.SetImageShown(SecurityImageView::LOCK);
326 label:icon_label 333 security_image_view_.SetVisible(true);
327 color:color]; 334 SetSecurityIconLabel();
328 break; 335 break;
329 case ToolbarModel::WARNING_ICON: 336 case ToolbarModel::WARNING_ICON:
330 [cell setHintIcon:rb.GetNSImageNamed(IDR_WARNING) 337 security_image_view_.SetImageShown(SecurityImageView::WARNING);
331 label:icon_label 338 security_image_view_.SetVisible(true);
332 color:color]; 339 SetSecurityIconLabel();
333 break; 340 break;
334 case ToolbarModel::NO_ICON: 341 case ToolbarModel::NO_ICON:
335 [cell setHintIcon:nil label:nil color:nil]; 342 security_image_view_.SetVisible(false);
343 break;
344 default:
345 NOTREACHED();
346 security_image_view_.SetVisible(false);
347 break;
348 }
349 [field_ resetFieldEditorFrameIfNeeded];
350 }
351
352 // LocationBarImageView---------------------------------------------------------
353
354 void LocationBarViewMac::LocationBarImageView::SetImage(NSImage* image) {
355 image_.reset([image retain]);
356 }
357
358 void LocationBarViewMac::LocationBarImageView::SetLabel(NSString* text,
359 NSFont* baseFont,
360 NSColor* color) {
361 // Create an attributed string for the label, if a label was given.
362 label_.reset();
363 if (text) {
364 DCHECK(color);
365 DCHECK(baseFont);
366 NSFont* font = [NSFont fontWithDescriptor:[baseFont fontDescriptor]
367 size:[baseFont pointSize] - 2.0];
368 NSDictionary* attributes =
369 [NSDictionary dictionaryWithObjectsAndKeys:
370 color, NSForegroundColorAttributeName,
371 font, NSFontAttributeName,
372 NULL];
373 NSAttributedString* attrStr =
374 [[NSAttributedString alloc] initWithString:text attributes:attributes];
375 label_.reset(attrStr);
376 }
377 }
378
379 void LocationBarViewMac::LocationBarImageView::SetVisible(bool visible) {
380 DCHECK(!visible || image_);
381 visible_ = visible;
382 }
383
384 // SecurityImageView------------------------------------------------------------
385
386 LocationBarViewMac::SecurityImageView::SecurityImageView(
387 Profile* profile,
388 ToolbarModel* model)
389 : lock_icon_(nil),
390 warning_icon_(nil),
391 profile_(profile),
392 model_(model) {}
393
394 LocationBarViewMac::SecurityImageView::~SecurityImageView() {}
395
396 void LocationBarViewMac::SecurityImageView::SetImageShown(Image image) {
397 switch (image) {
398 case LOCK:
399 if (!lock_icon_.get()) {
400 ResourceBundle& rb = ResourceBundle::GetSharedInstance();
401 lock_icon_.reset([rb.GetNSImageNamed(IDR_LOCK) retain]);
402 }
403 SetImage(lock_icon_);
404 break;
405 case WARNING:
406 if (!warning_icon_.get()) {
407 ResourceBundle& rb = ResourceBundle::GetSharedInstance();
408 warning_icon_.reset([rb.GetNSImageNamed(IDR_WARNING) retain]);
409 }
410 SetImage(warning_icon_);
336 break; 411 break;
337 default: 412 default:
338 NOTREACHED(); 413 NOTREACHED();
339 break; 414 break;
340 } 415 }
341 [field_ resetFieldEditorFrameIfNeeded];
342 } 416 }
417
418
419 bool LocationBarViewMac::SecurityImageView::OnMousePressed() {
420 TabContents* tab = BrowserList::GetLastActive()->GetSelectedTabContents();
421 NavigationEntry* nav_entry = tab->controller().GetActiveEntry();
422 if (!nav_entry) {
423 NOTREACHED();
424 return true;
425 }
426 tab->ShowPageInfo(nav_entry->url(), nav_entry->ssl(), true);
427 return true;
428 }
OLDNEW
« no previous file with comments | « chrome/browser/cocoa/location_bar_view_mac.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine