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

Side by Side Diff: ui/views/cocoa/tooltip_manager_mac.mm

Issue 1137653005: MacViews: Implement Tooltips (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: respond to comments Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « ui/views/cocoa/tooltip_manager_mac.h ('k') | ui/views/test/event_generator_delegate_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 #include "ui/views/cocoa/tooltip_manager_mac.h"
6
7 #include "ui/gfx/font_list.h"
8 #import "ui/gfx/mac/coordinate_conversion.h"
9 #import "ui/views/cocoa/bridged_content_view.h"
10 #import "ui/views/cocoa/bridged_native_widget.h"
11
12 namespace {
13
14 // Max visual tooltip width in DIPs. Beyond this, Cocoa will wrap text.
15 const int kTooltipMaxWidthPixels = 250;
16
17 } // namespace
18
19 namespace views {
20
21 TooltipManagerMac::TooltipManagerMac(BridgedNativeWidget* widget)
22 : widget_(widget) {
23 }
24
25 TooltipManagerMac::~TooltipManagerMac() {
26 }
27
28 int TooltipManagerMac::GetMaxWidth(const gfx::Point& location,
29 gfx::NativeView context) const {
30 return kTooltipMaxWidthPixels;
31 }
32
33 const gfx::FontList& TooltipManagerMac::GetFontList() const {
34 CR_DEFINE_STATIC_LOCAL(gfx::FontList, font_list,
35 (gfx::Font([NSFont toolTipsFontOfSize:0])));
36 return font_list;
37 }
38
39 void TooltipManagerMac::UpdateTooltip() {
40 NSWindow* window = widget_->ns_window();
41 BridgedContentView* view = widget_->ns_view();
42
43 NSPoint nspoint = [window convertScreenToBase:[NSEvent mouseLocation]];
44 // Note: flip in the view's frame, which matches the window's contentRect.
45 gfx::Point point(nspoint.x, NSHeight([view frame]) - nspoint.y);
46 [view updateTooltipIfRequiredAt:point];
47 }
48
49 void TooltipManagerMac::TooltipTextChanged(View* view) {
50 // The intensive part is View::GetTooltipHandlerForPoint(), which will be done
51 // in [BridgedContentView updateTooltipIfRequiredAt:]. Don't do it here as
52 // well.
53 UpdateTooltip();
54 }
55
56 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/cocoa/tooltip_manager_mac.h ('k') | ui/views/test/event_generator_delegate_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698