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

Side by Side Diff: views/widget/tooltip_window_gtk.h

Issue 1708015: Use customized RGBA-enabled tooltip window for tooltip on ChroemOS (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix the nit Created 10 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 | « views/widget/tooltip_manager_gtk.cc ('k') | views/widget/tooltip_window_gtk.cc » ('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 (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 #ifndef VIEWS_WIDGET_TOOLTIP_WINDOW_GTK_H_
6 #define VIEWS_WIDGET_TOOLTIP_WINDOW_GTK_H_
7
8 #include <gtk/gtk.h>
9 #include <string>
10
11 #include "app/gtk_signal.h"
12
13 namespace views {
14
15 // TooltipWindowGtk provides a customized tooltip window and gives us a
16 // chance to apply RGBA colormap on it. This enables the GTK theme engine to
17 // draw tooltip with nice shadow and rounded corner on ChromeOS.
18 class TooltipWindowGtk {
19 public:
20 explicit TooltipWindowGtk(GtkWidget* widget);
21 ~TooltipWindowGtk();
22
23 // Sets tooltip text to display.
24 void SetTooltipText(const std::wstring& text);
25
26 GtkLabel* label() {
27 return GTK_LABEL(label_);
28 }
29
30 protected:
31 CHROMEGTK_CALLBACK_1(TooltipWindowGtk, gboolean, OnPaint, GdkEventExpose*);
32 CHROMEGTK_CALLBACK_1(TooltipWindowGtk, void, OnStyleSet, GtkStyle*);
33
34 private:
35 void Init();
36
37 // Underlying widget of this tooltip window.
38 GtkWidget* host_;
39
40 // GtkWindow of this tooltip window.
41 GtkWidget* window_;
42
43 // The alignment and label widgets contained of the tooltip window.
44 GtkWidget* alignment_;
45 GtkWidget* label_;
46
47 DISALLOW_COPY_AND_ASSIGN(TooltipWindowGtk);
48 };
49
50 } // namespace views
51
52 #endif // VIEWS_WIDGET_TOOLTIP_WINDOW_GTK_H_
OLDNEW
« no previous file with comments | « views/widget/tooltip_manager_gtk.cc ('k') | views/widget/tooltip_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698