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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
// Copyright (c) 2009 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.
#include "chrome/browser/gtk/find_bar_gtk.h"
#include <gdk/gdkkeysyms.h>
#include "base/gfx/gtk_util.h"
#include "base/string_util.h"
#include "chrome/browser/find_bar_controller.h"
#include "chrome/browser/gtk/browser_window_gtk.h"
#include "chrome/browser/gtk/custom_button.h"
#include "chrome/browser/gtk/tab_contents_container_gtk.h"
#include "chrome/browser/tab_contents/web_contents.h"
#include "chrome/common/gtk_util.h"
#include "chrome/common/l10n_util.h"
#include "grit/generated_resources.h"
namespace {
const GdkColor kBackgroundColor = GDK_COLOR_RGB(0xe6, 0xed, 0xf4);
const GdkColor kBorderColor = GDK_COLOR_RGB(0xbe, 0xc8, 0xd4);
// Padding around the container.
const int kBarPadding = 4;
// The vertical positioning of |container_| in |fixed_|.
const int kVerticalOffset = -1;
gboolean EntryContentsChanged(GtkWindow* window, FindBarGtk* find_bar) {
find_bar->ContentsChanged();
return FALSE;
}
gboolean KeyPressEvent(GtkWindow* window, GdkEventKey* event,
FindBarGtk* find_bar) {
if (GDK_Escape == event->keyval) {
find_bar->EscapePressed();
return TRUE;
}
return FALSE;
}
}
FindBarGtk::FindBarGtk(BrowserWindowGtk* browser) {
InitWidgets();
// Insert the widget into the browser gtk hierarchy.
browser->AddFindBar(this);
// Hook up signals after the widget has been added to the hierarchy so the
// widget will be realized.
g_signal_connect(find_text_, "changed",
G_CALLBACK(EntryContentsChanged), this);
g_signal_connect(find_text_, "key-press-event",
G_CALLBACK(KeyPressEvent), this);
g_signal_connect(widget(), "size-allocate",
G_CALLBACK(OnSizeAllocate), this);
}
FindBarGtk::~FindBarGtk() {
fixed_.Destroy();
}
void FindBarGtk::InitWidgets() {
// The find bar is basically an hbox with a gtkentry (text box) followed by 3
// buttons (previous result, next result, close). We wrap the hbox in a gtk
// alignment and a gtk event box to get the padding and light blue
// background. We put that event box in a fixed in order to control its
// position.
GtkWidget* hbox = gtk_hbox_new(false, 0);
container_ = gfx::CreateGtkBorderBin(hbox, &kBackgroundColor,
kBarPadding, kBarPadding, kBarPadding, kBarPadding);
fixed_.Own(gtk_fixed_new());
// |fixed_| has to be at least one pixel tall. We color this pixel the same
// color as the border that separates the toolbar from the web contents.
// TODO(estade): find a better solution. (Ideally the tool bar shouldn't draw
// its own border, but the border is part of the background bitmap, so
// changing that would affect all platforms.)
border_ = gtk_event_box_new();
gtk_widget_set_size_request(border_, 1, 1);
gtk_widget_modify_bg(border_, GTK_STATE_NORMAL, &kBorderColor);
gtk_fixed_put(GTK_FIXED(widget()), border_, 0, 0);
gtk_fixed_put(GTK_FIXED(widget()), container_, 0, kVerticalOffset);
gtk_widget_set_size_request(widget(), -1, 0);
close_button_.reset(CustomDrawButton::AddBarCloseButton(hbox));
g_signal_connect(G_OBJECT(close_button_->widget()), "clicked",
G_CALLBACK(OnButtonPressed), this);
gtk_widget_set_tooltip_text(close_button_->widget(),
l10n_util::GetStringUTF8(IDS_FIND_IN_PAGE_CLOSE_TOOLTIP).c_str());
find_next_button_.reset(new CustomDrawButton(IDR_FINDINPAGE_NEXT,
IDR_FINDINPAGE_NEXT_H, IDR_FINDINPAGE_NEXT_H, IDR_FINDINPAGE_NEXT_P));
g_signal_connect(G_OBJECT(find_next_button_->widget()), "clicked",
G_CALLBACK(OnButtonPressed), this);
gtk_widget_set_tooltip_text(find_next_button_->widget(),
l10n_util::GetStringUTF8(IDS_FIND_IN_PAGE_NEXT_TOOLTIP).c_str());
gtk_box_pack_end(GTK_BOX(hbox), find_next_button_->widget(),
FALSE, FALSE, 0);
find_previous_button_.reset(new CustomDrawButton(IDR_FINDINPAGE_PREV,
IDR_FINDINPAGE_PREV_H, IDR_FINDINPAGE_PREV_H, IDR_FINDINPAGE_PREV_P));
g_signal_connect(G_OBJECT(find_previous_button_->widget()), "clicked",
G_CALLBACK(OnButtonPressed), this);
gtk_widget_set_tooltip_text(find_previous_button_->widget(),
l10n_util::GetStringUTF8(IDS_FIND_IN_PAGE_PREVIOUS_TOOLTIP).c_str());
gtk_box_pack_end(GTK_BOX(hbox), find_previous_button_->widget(),
FALSE, FALSE, 0);
find_text_ = gtk_entry_new();
// Force the text widget height so it lines up with the buttons regardless of
// font size.
gtk_widget_set_size_request(find_text_, -1, 20);
gtk_entry_set_has_frame(GTK_ENTRY(find_text_), FALSE);
GtkWidget* border_bin = gfx::CreateGtkBorderBin(find_text_, &kBorderColor,
1, 1, 1, 0);
GtkWidget* centering_vbox = gtk_vbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(centering_vbox), border_bin, TRUE, FALSE, 0);
gtk_box_pack_end(GTK_BOX(hbox), centering_vbox, FALSE, FALSE, 0);
// We show just the GtkFixed and |border_| (not |container_|).
gtk_widget_show(widget());
gtk_widget_show(border_);
}
void FindBarGtk::Show() {
// TODO(tc): This should be an animated slide in.
gtk_widget_show_all(widget());
gtk_widget_grab_focus(find_text_);
}
void FindBarGtk::Hide(bool animate) {
// TODO(tc): Animated slide away.
gtk_widget_hide(container_);
}
void FindBarGtk::SetFocusAndSelection() {
gtk_widget_grab_focus(find_text_);
// Select all the text.
gtk_entry_select_region(GTK_ENTRY(find_text_), 0, -1);
}
void FindBarGtk::ClearResults(const FindNotificationDetails& results) {
}
void FindBarGtk::StopAnimation() {
// No animation yet, so do nothing.
}
void FindBarGtk::MoveWindowIfNecessary(const gfx::Rect& selection_rect,
bool no_redraw) {
// Not moving the window on demand, so do nothing.
}
void FindBarGtk::SetFindText(const string16& find_text) {
std::string find_text_utf8 = UTF16ToUTF8(find_text);
gtk_entry_set_text(GTK_ENTRY(find_text_), find_text_utf8.c_str());
}
void FindBarGtk::UpdateUIForFindResult(const FindNotificationDetails& result,
const string16& find_text) {
}
gfx::Rect FindBarGtk::GetDialogPosition(gfx::Rect avoid_overlapping_rect) {
// TODO(estade): Logic for the positioning of the find bar should be factored
// out of here and browser/views/* and into FindBarController.
int xposition = widget()->allocation.width - container_->allocation.width -
50;
return gfx::Rect(xposition, 0, 1, 1);
}
void FindBarGtk::SetDialogPosition(const gfx::Rect& new_pos, bool no_redraw) {
gtk_fixed_move(GTK_FIXED(widget()), container_, new_pos.x(), kVerticalOffset);
}
bool FindBarGtk::IsFindBarVisible() {
return GTK_WIDGET_VISIBLE(widget());
}
void FindBarGtk::RestoreSavedFocus() {
}
FindBarTesting* FindBarGtk::GetFindBarTesting() {
return this;
}
bool FindBarGtk::GetFindBarWindowInfo(gfx::Point* position,
bool* fully_visible) {
NOTIMPLEMENTED();
return false;
}
void FindBarGtk::AssureOnTop() {
gtk_widget_hide(container_);
gtk_widget_show_all(container_);
}
void FindBarGtk::ContentsChanged() {
WebContents* web_contents = find_bar_controller_->web_contents();
if (!web_contents)
return;
std::string new_contents(gtk_entry_get_text(GTK_ENTRY(find_text_)));
if (new_contents.length() > 0) {
web_contents->StartFinding(UTF8ToUTF16(new_contents), true);
} else {
// The textbox is empty so we reset.
web_contents->StopFinding(true); // true = clear selection on page.
}
}
void FindBarGtk::EscapePressed() {
find_bar_controller_->EndFindSession();
}
// static
void FindBarGtk::OnButtonPressed(GtkWidget* button, FindBarGtk* find_bar) {
if (button == find_bar->close_button_->widget()) {
find_bar->find_bar_controller_->EndFindSession();
} else if (button == find_bar->find_previous_button_->widget() ||
button == find_bar->find_next_button_->widget()) {
std::string find_text_utf8(
gtk_entry_get_text(GTK_ENTRY(find_bar->find_text_)));
find_bar->find_bar_controller_->web_contents()->StartFinding(
UTF8ToUTF16(find_text_utf8),
button == find_bar->find_next_button_->widget());
} else {
NOTREACHED();
}
}
// static
void FindBarGtk::OnSizeAllocate(GtkWidget* fixed,
GtkAllocation* allocation,
FindBarGtk* findbar) {
// Set the background widget to the size of |fixed|.
if (findbar->border_->allocation.width != allocation->width) {
gtk_widget_set_size_request(findbar->border_, allocation->width, 1);
}
// Reposition |container_|.
GtkWidget* container = findbar->container_;
DCHECK(container);
if (!GTK_WIDGET_VISIBLE(container))
return;
int xposition = findbar->GetDialogPosition(gfx::Rect()).x();
if (xposition == container->allocation.x) {
return;
} else {
gtk_fixed_move(GTK_FIXED(fixed), container, xposition, kVerticalOffset);
}
}
|