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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
// Copyright (c) 2011 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 CHROME_BROWSER_UI_GTK_INFOBARS_INFOBAR_GTK_H_
#define CHROME_BROWSER_UI_GTK_INFOBARS_INFOBAR_GTK_H_
#pragma once
#include <gtk/gtk.h>
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/tab_contents/infobar_delegate.h"
#include "chrome/browser/tab_contents/infobar.h"
#include "chrome/browser/ui/gtk/owned_widget_gtk.h"
#include "content/common/notification_observer.h"
#include "content/common/notification_registrar.h"
#include "third_party/skia/include/core/SkPaint.h"
#include "ui/base/gtk/gtk_signal.h"
class CustomDrawButton;
class GtkThemeService;
class InfoBarDelegate;
class InfoBarGtk : public InfoBar,
public NotificationObserver {
public:
InfoBarGtk(TabContentsWrapper* owner, InfoBarDelegate* delegate);
virtual ~InfoBarGtk();
// Get the top level native GTK widget for this infobar.
GtkWidget* widget();
GdkColor GetBorderColor() const;
// Returns the target height of the infobar if the bar is animating,
// otherwise 0. We care about this number since we want to prevent
// unnecessary renderer repaints while animating.
int AnimatingHeight() const;
// Conversion from cairo colors to SkColor.
typedef void (InfoBarGtk::*ColorGetter)(InfoBarDelegate::Type,
double* r, double* g, double* b);
SkColor ConvertGetColor(ColorGetter getter);
// Retrieves the component colors for the infobar's background
// gradient. (This varies by infobars and can be animated to change).
virtual void GetTopColor(InfoBarDelegate::Type type,
double* r, double* g, double *b);
virtual void GetBottomColor(InfoBarDelegate::Type type,
double* r, double* g, double *b);
protected:
// Spacing after message (and before buttons).
static const int kEndOfLabelSpacing;
// Creates a label with the appropriate font and color for the current
// gtk-theme state. It is InfoBarGtk's responsibility to observe browser
// theme changes and update the label's state.
GtkWidget* CreateLabel(const std::string& text);
// Creates a link button with the appropriate current gtk-theme state.
GtkWidget* CreateLinkButton(const std::string& text);
// Adds |display_text| to the infobar. If |link_text| is not empty, it is
// rendered as a hyperlink and inserted into |display_text| at |link_offset|,
// or right aligned in the infobar if |link_offset| is |npos|. If a link is
// supplied, |link_callback| must not be null. It will be invoked on click.
void AddLabelWithInlineLink(const string16& display_text,
const string16& link_text,
size_t link_offset,
GCallback callback);
// InfoBar:
virtual void PlatformSpecificShow(bool animate) OVERRIDE;
virtual void PlatformSpecificOnHeightsRecalculated() OVERRIDE;
// NotificationObserver:
virtual void Observe(int type,
const NotificationSource& source,
const NotificationDetails& details) OVERRIDE;
// The second highest widget in the hierarchy (after the |widget_|).
GtkWidget* bg_box_;
// The hbox that holds infobar elements (button, text, icon, etc.).
GtkWidget* hbox_;
// The x that closes the bar.
scoped_ptr<CustomDrawButton> close_button_;
// The theme provider, used for getting border colors.
GtkThemeService* theme_service_;
NotificationRegistrar registrar_;
private:
CHROMEGTK_CALLBACK_0(InfoBarGtk, void, OnCloseButton);
CHROMEGTK_CALLBACK_1(InfoBarGtk, gboolean, OnBackgroundExpose,
GdkEventExpose*);
CHROMEGTK_CALLBACK_2(InfoBarGtk, void, OnChildSizeRequest, GtkWidget*,
GtkRequisition*);
void UpdateBorderColor();
// A GtkExpandedContainer that contains |bg_box_| so we can varry the height
// of the infobar.
OwnedWidgetGtk widget_;
DISALLOW_COPY_AND_ASSIGN(InfoBarGtk);
};
#endif // CHROME_BROWSER_UI_GTK_INFOBARS_INFOBAR_GTK_H_
|