blob: 3ba0c20b565d4cf498c66fc8c281a36be25f19fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef VIEWS_WIDGET_TOOLTIP_WINDOW_GTK_H_
#define VIEWS_WIDGET_TOOLTIP_WINDOW_GTK_H_
#include <string>
#include "app/gtk_integers.h"
#include "app/gtk_signal.h"
#include "base/basictypes.h"
typedef struct _GdkEventExpose GdkEventExpose;
typedef struct _GtkLabel GtkLabel;
typedef struct _GtkWidget GtkWidget;
typedef struct _GtkStyle GtkStyle;
namespace views {
// TooltipWindowGtk provides a customized tooltip window and gives us a
// chance to apply RGBA colormap on it. This enables the GTK theme engine to
// draw tooltip with nice shadow and rounded corner on ChromeOS.
class TooltipWindowGtk {
public:
explicit TooltipWindowGtk(GtkWidget* widget);
~TooltipWindowGtk();
// Sets tooltip text to display.
void SetTooltipText(const std::wstring& text);
GtkLabel* label();
protected:
CHROMEGTK_CALLBACK_1(TooltipWindowGtk, gboolean, OnPaint, GdkEventExpose*);
CHROMEGTK_CALLBACK_1(TooltipWindowGtk, void, OnStyleSet, GtkStyle*);
private:
void Init();
// Underlying widget of this tooltip window.
GtkWidget* host_;
// GtkWindow of this tooltip window.
GtkWidget* window_;
// The alignment and label widgets contained of the tooltip window.
GtkWidget* alignment_;
GtkWidget* label_;
DISALLOW_COPY_AND_ASSIGN(TooltipWindowGtk);
};
} // namespace views
#endif // VIEWS_WIDGET_TOOLTIP_WINDOW_GTK_H_
|