OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import "chrome/browser/cocoa/location_bar/star_decoration.h" |
| 6 |
| 7 #include "app/l10n_util_mac.h" |
| 8 #include "chrome/app/chrome_dll_resource.h" |
| 9 #import "chrome/browser/autocomplete/autocomplete_edit_view_mac.h" |
| 10 #include "chrome/browser/command_updater.h" |
| 11 #include "grit/generated_resources.h" |
| 12 #include "grit/theme_resources.h" |
| 13 |
| 14 namespace { |
| 15 |
| 16 // The info-bubble point should look like it points to the point |
| 17 // between the star's lower tips. Determined via Pixie.app |
| 18 // magnification. |
| 19 const CGFloat kStarPointYOffset = 4.0; |
| 20 |
| 21 } // namespace |
| 22 |
| 23 StarDecoration::StarDecoration(CommandUpdater* command_updater) |
| 24 : command_updater_(command_updater) { |
| 25 SetVisible(true); |
| 26 SetStarred(false); |
| 27 } |
| 28 |
| 29 StarDecoration::~StarDecoration() { |
| 30 } |
| 31 |
| 32 void StarDecoration::SetStarred(bool starred) { |
| 33 const int image_id = starred ? IDR_OMNIBOX_STAR_LIT : IDR_OMNIBOX_STAR; |
| 34 const int tip_id = starred ? IDS_TOOLTIP_STARRED : IDS_TOOLTIP_STAR; |
| 35 SetImage(AutocompleteEditViewMac::ImageForResource(image_id)); |
| 36 tooltip_.reset([l10n_util::GetNSStringWithFixup(tip_id) retain]); |
| 37 } |
| 38 |
| 39 NSPoint StarDecoration::GetBubblePointInFrame(NSRect frame) { |
| 40 const NSRect draw_frame = GetDrawRectInFrame(frame); |
| 41 return NSMakePoint(NSMidX(draw_frame), |
| 42 NSMaxY(draw_frame) - kStarPointYOffset); |
| 43 } |
| 44 |
| 45 bool StarDecoration::OnMousePressed(NSRect frame) { |
| 46 command_updater_->ExecuteCommand(IDC_BOOKMARK_PAGE); |
| 47 return true; |
| 48 } |
| 49 |
| 50 NSString* StarDecoration::GetToolTip() { |
| 51 return tooltip_.get(); |
| 52 } |
OLD | NEW |