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
|
// Copyright (c) 2012 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 <gtk/gtk.h>
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/gtk/browser_window_gtk.h"
#include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
#include "chrome/browser/ui/gtk/gtk_theme_service.h"
#include "chrome/browser/ui/gtk/gtk_util.h"
#include "chrome/test/base/in_process_browser_test.h"
#include "ui/base/gtk/gtk_hig_constants.h"
class BubbleGtkTest : public InProcessBrowserTest,
public BubbleDelegateGtk {
public:
BubbleGtkTest() : browser_window_(NULL) {
}
virtual ~BubbleGtkTest() {
}
// BubbleDelegateGtk implementation.
virtual void BubbleClosing(BubbleGtk* bubble,
bool closed_by_escape) OVERRIDE {
}
Profile* GetProfile() {
return browser()->profile();
}
GtkWidget* GetNativeBrowserWindow() {
if (!browser_window_)
browser_window_ = GTK_WIDGET(browser()->window()->GetNativeHandle());
return browser_window_;
}
private:
GtkWidget* browser_window_;
};
// Tests that we can adjust a bubble arrow so we can show a bubble without being
// clipped. This test verifies the following four issues:
// 1. Shows a bubble to the top-left corner and see its arrow location always
// becomes ARROW_LOCATION_TOP_LEFT.
// 2. Shows a bubble to the top-right corner and see its arrow location always
// becomes ARROW_LOCATION_TOP_RIGHT.
// 3. Shows a bubble to the bottom-left corner and see its arrow location always
// becomes ARROW_LOCATION_BOTTOM_LEFT.
// 4. Shows a bubble to the top-left corner and see its arrow location always
// becomes ARROW_LOCATION_BOTTOM_RIGHT.
IN_PROC_BROWSER_TEST_F(BubbleGtkTest, ArrowLocation) {
int width = gdk_screen_get_width(gdk_screen_get_default());
int height = gdk_screen_get_height(gdk_screen_get_default());
struct {
int x, y;
BubbleGtk::ArrowLocationGtk expected;
} points[] = {
{0, 0, BubbleGtk::ARROW_LOCATION_TOP_LEFT},
{width - 1, 0, BubbleGtk::ARROW_LOCATION_TOP_RIGHT},
{0, height - 1, BubbleGtk::ARROW_LOCATION_BOTTOM_LEFT},
{width - 1, height - 1, BubbleGtk::ARROW_LOCATION_BOTTOM_RIGHT},
};
static const BubbleGtk::ArrowLocationGtk kPreferredLocations[] = {
BubbleGtk::ARROW_LOCATION_TOP_LEFT,
BubbleGtk::ARROW_LOCATION_TOP_RIGHT,
BubbleGtk::ARROW_LOCATION_BOTTOM_LEFT,
BubbleGtk::ARROW_LOCATION_BOTTOM_RIGHT,
};
GtkWidget* anchor = GetNativeBrowserWindow();
GtkThemeService* theme_service = GtkThemeService::GetFrom(GetProfile());
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(points); ++i) {
for (size_t j = 0; j < arraysize(kPreferredLocations); ++j) {
static const char kText[] =
"Google's mission is to organize the world's information and make it"
" universally accessible and useful.";
GtkWidget* label = theme_service->BuildLabel(kText, ui::kGdkBlack);
gfx::Rect rect(points[i].x, points[i].y, 0, 0);
BubbleGtk* bubble = BubbleGtk::Show(anchor,
&rect,
label,
kPreferredLocations[j],
true,
true,
theme_service,
this);
EXPECT_EQ(points[i].expected, bubble->current_arrow_location_);
bubble->Close();
}
}
}
IN_PROC_BROWSER_TEST_F(BubbleGtkTest, NoArrow) {
int width = gdk_screen_get_width(gdk_screen_get_default());
int height = gdk_screen_get_height(gdk_screen_get_default());
struct {
int x, y;
BubbleGtk::ArrowLocationGtk expected;
} points[] = {
{0, 0, BubbleGtk::ARROW_LOCATION_NONE},
{width - 1, 0, BubbleGtk::ARROW_LOCATION_NONE},
{0, height - 1, BubbleGtk::ARROW_LOCATION_FLOAT},
{width - 1, height - 1, BubbleGtk::ARROW_LOCATION_FLOAT},
};
static const BubbleGtk::ArrowLocationGtk kPreferredLocations[] = {
BubbleGtk::ARROW_LOCATION_NONE,
BubbleGtk::ARROW_LOCATION_FLOAT,
};
GtkWidget* anchor = GetNativeBrowserWindow();
GtkThemeService* theme_service = GtkThemeService::GetFrom(GetProfile());
for (size_t i = 0; i < ARRAYSIZE_UNSAFE(points); ++i) {
for (size_t j = 0; j < arraysize(kPreferredLocations); ++j) {
static const char kText[] =
"Google's mission is to organize the world's information and make it"
" universally accessible and useful.";
GtkWidget* label = theme_service->BuildLabel(kText, ui::kGdkBlack);
gfx::Rect rect(points[i].x, points[i].y, 0, 0);
BubbleGtk* bubble = BubbleGtk::Show(anchor,
&rect,
label,
kPreferredLocations[j],
true,
true,
theme_service,
this);
EXPECT_EQ(points[i].expected, bubble->current_arrow_location_);
bubble->Close();
}
}
}
|