blob: 7f53fc1b5cff24fe31c7ade04c99deb0ccd4908c (
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
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
|
// 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.
#include "chrome/browser/extensions/browser_action_test_util.h"
#include <gtk/gtk.h>
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/gtk/extensions/extension_popup_gtk.h"
#include "chrome/browser/ui/gtk/extensions/extension_view_gtk.h"
#include "chrome/browser/ui/gtk/view_id_util.h"
namespace {
GtkWidget* GetButton(Browser* browser, int index) {
GtkWidget* toolbar =
ViewIDUtil::GetWidget(GTK_WIDGET(browser->window()->GetNativeHandle()),
VIEW_ID_BROWSER_ACTION_TOOLBAR);
GtkWidget* button = NULL;
if (toolbar) {
GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar));
GtkWidget* alignment =
static_cast<GtkWidget*>(g_list_nth(children, index)->data);
button = gtk_bin_get_child(GTK_BIN(alignment));
g_list_free(children);
}
return button;
}
} // namespace
int BrowserActionTestUtil::NumberOfBrowserActions() {
int count = -1;
GtkWidget* toolbar =
ViewIDUtil::GetWidget(GTK_WIDGET(browser_->window()->GetNativeHandle()),
VIEW_ID_BROWSER_ACTION_TOOLBAR);
if (toolbar) {
GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar));
count = g_list_length(children);
g_list_free(children);
}
return count;
}
bool BrowserActionTestUtil::HasIcon(int index) {
GtkWidget* button = GetButton(browser_, index);
return gtk_button_get_image(GTK_BUTTON(button)) != NULL;
}
void BrowserActionTestUtil::Press(int index) {
GtkWidget* button = GetButton(browser_, index);
gtk_button_clicked(GTK_BUTTON(button));
}
std::string BrowserActionTestUtil::GetTooltip(int index) {
GtkWidget* button = GetButton(browser_, index);
gchar* text = gtk_widget_get_tooltip_text(button);
std::string tooltip(text);
g_free(text);
return tooltip;
}
bool BrowserActionTestUtil::HasPopup() {
return ExtensionPopupGtk::get_current_extension_popup() != NULL;
}
gfx::Rect BrowserActionTestUtil::GetPopupBounds() {
ExtensionPopupGtk* popup = ExtensionPopupGtk::get_current_extension_popup();
if (popup)
return popup->GetViewBounds();
return gfx::Rect();
}
bool BrowserActionTestUtil::HidePopup() {
ExtensionPopupGtk* popup = ExtensionPopupGtk::get_current_extension_popup();
if (popup)
return popup->DestroyPopup();
return false;
}
// static
gfx::Size BrowserActionTestUtil::GetMinPopupSize() {
// On Linux we actually just limit the size of the extension view.
return gfx::Size(ExtensionPopupGtk::kMinWidth, ExtensionPopupGtk::kMinHeight);
}
// static
gfx::Size BrowserActionTestUtil::GetMaxPopupSize() {
return gfx::Size(ExtensionPopupGtk::kMaxWidth, ExtensionPopupGtk::kMaxHeight);
}
|