1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/chromeos/login/simple_web_view_dialog.h"
8 #include "ash/shell_window_ids.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/app/chrome_command_ids.h"
12 #include "chrome/browser/chromeos/login/captive_portal_window_proxy.h"
13 #include "chrome/browser/chromeos/login/helper.h"
14 #include "chrome/browser/command_updater.h"
15 #include "chrome/browser/password_manager/chrome_password_manager_client.h"
16 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/ui/autofill/tab_autofill_manager_delegate.h"
18 #include "chrome/browser/ui/browser.h"
19 #include "chrome/browser/ui/content_settings/content_setting_bubble_model_delegate.h"
20 #include "chrome/browser/ui/toolbar/toolbar_model_impl.h"
21 #include "chrome/browser/ui/view_ids.h"
22 #include "chrome/browser/ui/views/location_bar/location_icon_view.h"
23 #include "chrome/browser/ui/views/toolbar/reload_button.h"
24 #include "components/password_manager/core/browser/password_manager.h"
25 #include "content/public/browser/navigation_controller.h"
26 #include "content/public/browser/navigation_entry.h"
27 #include "content/public/browser/web_contents.h"
28 #include "grit/generated_resources.h"
29 #include "grit/theme_resources.h"
30 #include "ipc/ipc_message.h"
31 #include "ui/base/l10n/l10n_util.h"
32 #include "ui/base/theme_provider.h"
33 #include "ui/views/background.h"
34 #include "ui/views/controls/webview/webview.h"
35 #include "ui/views/layout/grid_layout.h"
36 #include "ui/views/layout/layout_constants.h"
37 #include "ui/views/view.h"
38 #include "ui/views/widget/widget.h"
40 using content::WebContents
;
41 using views::GridLayout
;
45 const int kLocationBarHeight
= 35;
47 // Margin between screen edge and SimpleWebViewDialog border.
48 const int kExternalMargin
= 60;
50 // Margin between WebView and SimpleWebViewDialog border.
51 const int kInnerMargin
= 2;
53 const SkColor kDialogColor
= SK_ColorWHITE
;
55 class ToolbarRowView
: public views::View
{
58 set_background(views::Background::CreateSolidBackground(kDialogColor
));
61 virtual ~ToolbarRowView() {}
63 void Init(views::View
* back
,
66 views::View
* location_bar
) {
67 GridLayout
* layout
= new GridLayout(this);
68 SetLayoutManager(layout
);
71 views::ColumnSet
* column_set
= layout
->AddColumnSet(0);
72 column_set
->AddColumn(GridLayout::CENTER
, GridLayout::CENTER
, 0,
73 GridLayout::USE_PREF
, 0, 0);
74 column_set
->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing
);
76 column_set
->AddColumn(GridLayout::CENTER
, GridLayout::CENTER
, 0,
77 GridLayout::USE_PREF
, 0, 0);
78 column_set
->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing
);
80 column_set
->AddColumn(GridLayout::CENTER
, GridLayout::CENTER
, 0,
81 GridLayout::USE_PREF
, 0, 0);
82 column_set
->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing
);
84 column_set
->AddColumn(GridLayout::FILL
, GridLayout::CENTER
, 1,
85 GridLayout::FIXED
, kLocationBarHeight
, 0);
86 column_set
->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing
);
88 layout
->StartRow(0, 0);
89 layout
->AddView(back
);
90 layout
->AddView(forward
);
91 layout
->AddView(reload
);
92 layout
->AddView(location_bar
);
96 DISALLOW_COPY_AND_ASSIGN(ToolbarRowView
);
103 // Stub implementation of ContentSettingBubbleModelDelegate.
104 class StubBubbleModelDelegate
: public ContentSettingBubbleModelDelegate
{
106 StubBubbleModelDelegate() {}
107 virtual ~StubBubbleModelDelegate() {}
109 // ContentSettingBubbleModelDelegate implementation:
110 virtual void ShowCollectedCookiesDialog(
111 content::WebContents
* web_contents
) OVERRIDE
{
114 virtual void ShowContentSettingsPage(ContentSettingsType type
) OVERRIDE
{
118 DISALLOW_COPY_AND_ASSIGN(StubBubbleModelDelegate
);
121 // SimpleWebViewDialog class ---------------------------------------------------
123 SimpleWebViewDialog::SimpleWebViewDialog(Profile
* profile
)
130 bubble_model_delegate_(new StubBubbleModelDelegate
) {
131 command_updater_
.reset(new CommandUpdater(this));
132 command_updater_
->UpdateCommandEnabled(IDC_BACK
, true);
133 command_updater_
->UpdateCommandEnabled(IDC_FORWARD
, true);
134 command_updater_
->UpdateCommandEnabled(IDC_STOP
, true);
135 command_updater_
->UpdateCommandEnabled(IDC_RELOAD
, true);
136 command_updater_
->UpdateCommandEnabled(IDC_RELOAD_IGNORING_CACHE
, true);
137 command_updater_
->UpdateCommandEnabled(IDC_RELOAD_CLEARING_CACHE
, true);
140 SimpleWebViewDialog::~SimpleWebViewDialog() {
141 if (web_view_
&& web_view_
->web_contents())
142 web_view_
->web_contents()->SetDelegate(NULL
);
145 void SimpleWebViewDialog::StartLoad(const GURL
& url
) {
146 if (!web_view_container_
.get())
147 web_view_container_
.reset(new views::WebView(profile_
));
148 web_view_
= web_view_container_
.get();
149 web_view_
->set_owned_by_client();
150 web_view_
->GetWebContents()->SetDelegate(this);
151 web_view_
->LoadInitialURL(url
);
153 WebContents
* web_contents
= web_view_
->GetWebContents();
154 DCHECK(web_contents
);
156 // Create the password manager that is needed for the proxy.
157 ChromePasswordManagerClient::CreateForWebContentsWithAutofillManagerDelegate(
159 autofill::TabAutofillManagerDelegate::FromWebContents(web_contents
));
162 void SimpleWebViewDialog::Init() {
163 toolbar_model_
.reset(new ToolbarModelImpl(this));
165 set_background(views::Background::CreateSolidBackground(kDialogColor
));
167 // Back/Forward buttons.
168 back_
= new views::ImageButton(this);
169 back_
->set_triggerable_event_flags(ui::EF_LEFT_MOUSE_BUTTON
|
170 ui::EF_MIDDLE_MOUSE_BUTTON
);
171 back_
->set_tag(IDC_BACK
);
172 back_
->SetImageAlignment(views::ImageButton::ALIGN_RIGHT
,
173 views::ImageButton::ALIGN_TOP
);
174 back_
->SetTooltipText(l10n_util::GetStringUTF16(IDS_TOOLTIP_BACK
));
175 back_
->SetAccessibleName(l10n_util::GetStringUTF16(IDS_ACCNAME_BACK
));
176 back_
->set_id(VIEW_ID_BACK_BUTTON
);
178 forward_
= new views::ImageButton(this);
179 forward_
->set_triggerable_event_flags(ui::EF_LEFT_MOUSE_BUTTON
|
180 ui::EF_MIDDLE_MOUSE_BUTTON
);
181 forward_
->set_tag(IDC_FORWARD
);
182 forward_
->SetTooltipText(l10n_util::GetStringUTF16(IDS_TOOLTIP_FORWARD
));
183 forward_
->SetAccessibleName(l10n_util::GetStringUTF16(IDS_ACCNAME_FORWARD
));
184 forward_
->set_id(VIEW_ID_FORWARD_BUTTON
);
187 location_bar_
= new LocationBarView(NULL
, profile_
, command_updater_
.get(),
191 reload_
= new ReloadButton(command_updater_
.get());
192 reload_
->set_triggerable_event_flags(ui::EF_LEFT_MOUSE_BUTTON
|
193 ui::EF_MIDDLE_MOUSE_BUTTON
);
194 reload_
->set_tag(IDC_RELOAD
);
195 reload_
->SetTooltipText(l10n_util::GetStringUTF16(IDS_TOOLTIP_RELOAD
));
196 reload_
->SetAccessibleName(l10n_util::GetStringUTF16(IDS_ACCNAME_RELOAD
));
197 reload_
->set_id(VIEW_ID_RELOAD_BUTTON
);
199 // Use separate view to setup custom background.
200 ToolbarRowView
* toolbar_row
= new ToolbarRowView
;
201 toolbar_row
->Init(back_
, forward_
, reload_
, location_bar_
);
204 GridLayout
* layout
= new GridLayout(this);
205 SetLayoutManager(layout
);
207 views::ColumnSet
* column_set
= layout
->AddColumnSet(0);
208 column_set
->AddColumn(GridLayout::FILL
, GridLayout::FILL
, 1,
209 GridLayout::FIXED
, 0, 0);
211 column_set
= layout
->AddColumnSet(1);
212 column_set
->AddPaddingColumn(0, kInnerMargin
);
213 column_set
->AddColumn(GridLayout::FILL
, GridLayout::FILL
, 1,
214 GridLayout::FIXED
, 0, 0);
215 column_set
->AddPaddingColumn(0, kInnerMargin
);
217 // Setup layout rows.
218 layout
->StartRow(0, 0);
219 layout
->AddView(toolbar_row
);
221 layout
->AddPaddingRow(0, kInnerMargin
);
223 layout
->StartRow(1, 1);
224 layout
->AddView(web_view_container_
.get());
225 layout
->AddPaddingRow(0, kInnerMargin
);
229 location_bar_
->Init();
230 UpdateReload(web_view_
->web_contents()->IsLoading(), true);
232 gfx::Rect
bounds(CalculateScreenBounds(gfx::Size()));
233 bounds
.Inset(kExternalMargin
, kExternalMargin
);
234 layout
->set_minimum_size(bounds
.size());
239 void SimpleWebViewDialog::Layout() {
240 views::WidgetDelegateView::Layout();
243 views::View
* SimpleWebViewDialog::GetContentsView() {
247 views::View
* SimpleWebViewDialog::GetInitiallyFocusedView() {
251 void SimpleWebViewDialog::ButtonPressed(views::Button
* sender
,
252 const ui::Event
& event
) {
253 command_updater_
->ExecuteCommand(sender
->tag());
256 content::WebContents
* SimpleWebViewDialog::OpenURL(
257 const content::OpenURLParams
& params
) {
258 // As there are no Browsers right now, this could not actually ever work.
263 void SimpleWebViewDialog::NavigationStateChanged(
264 const WebContents
* source
, unsigned changed_flags
) {
266 location_bar_
->Update(NULL
);
271 void SimpleWebViewDialog::LoadingStateChanged(WebContents
* source
,
272 bool to_different_document
) {
273 bool is_loading
= source
->IsLoading();
274 UpdateReload(is_loading
&& to_different_document
, false);
275 command_updater_
->UpdateCommandEnabled(IDC_STOP
, is_loading
);
278 WebContents
* SimpleWebViewDialog::GetWebContents() {
282 ToolbarModel
* SimpleWebViewDialog::GetToolbarModel() {
283 return toolbar_model_
.get();
286 const ToolbarModel
* SimpleWebViewDialog::GetToolbarModel() const {
287 return toolbar_model_
.get();
290 InstantController
* SimpleWebViewDialog::GetInstant() {
294 views::Widget
* SimpleWebViewDialog::CreateViewsBubble(
295 views::BubbleDelegateView
* bubble_delegate
) {
296 return views::BubbleDelegateView::CreateBubble(bubble_delegate
);
299 ContentSettingBubbleModelDelegate
*
300 SimpleWebViewDialog::GetContentSettingBubbleModelDelegate() {
301 return bubble_model_delegate_
.get();
304 void SimpleWebViewDialog::ShowWebsiteSettings(
305 content::WebContents
* web_contents
,
307 const content::SSLStatus
& ssl
) {
309 // TODO (ygorshenin@,markusheintz@): implement this
312 PageActionImageView
* SimpleWebViewDialog::CreatePageActionImageView(
313 LocationBarView
* owner
,
314 ExtensionAction
* action
) {
315 // Notreached because SimpleWebViewDialog uses a popup-mode LocationBarView,
316 // and it doesn't create PageActionImageViews.
321 content::WebContents
* SimpleWebViewDialog::GetActiveWebContents() const {
322 return web_view_
->web_contents();
325 bool SimpleWebViewDialog::InTabbedBrowser() const {
329 void SimpleWebViewDialog::ExecuteCommandWithDisposition(
331 WindowOpenDisposition
) {
332 WebContents
* web_contents
= web_view_
->web_contents();
335 if (web_contents
->GetController().CanGoBack()) {
336 location_bar_
->Revert();
337 web_contents
->GetController().GoBack();
341 if (web_contents
->GetController().CanGoForward()) {
342 location_bar_
->Revert();
343 web_contents
->GetController().GoForward();
347 web_contents
->Stop();
350 // Always reload ignoring cache.
351 case IDC_RELOAD_IGNORING_CACHE
:
352 case IDC_RELOAD_CLEARING_CACHE
:
353 location_bar_
->Revert();
354 web_contents
->GetController().ReloadIgnoringCache(true);
361 void SimpleWebViewDialog::LoadImages() {
362 ui::ThemeProvider
* tp
= GetThemeProvider();
364 back_
->SetImage(views::CustomButton::STATE_NORMAL
,
365 tp
->GetImageSkiaNamed(IDR_BACK
));
366 back_
->SetImage(views::CustomButton::STATE_HOVERED
,
367 tp
->GetImageSkiaNamed(IDR_BACK_H
));
368 back_
->SetImage(views::CustomButton::STATE_PRESSED
,
369 tp
->GetImageSkiaNamed(IDR_BACK_P
));
370 back_
->SetImage(views::CustomButton::STATE_DISABLED
,
371 tp
->GetImageSkiaNamed(IDR_BACK_D
));
373 forward_
->SetImage(views::CustomButton::STATE_NORMAL
,
374 tp
->GetImageSkiaNamed(IDR_FORWARD
));
375 forward_
->SetImage(views::CustomButton::STATE_HOVERED
,
376 tp
->GetImageSkiaNamed(IDR_FORWARD_H
));
377 forward_
->SetImage(views::CustomButton::STATE_PRESSED
,
378 tp
->GetImageSkiaNamed(IDR_FORWARD_P
));
379 forward_
->SetImage(views::CustomButton::STATE_DISABLED
,
380 tp
->GetImageSkiaNamed(IDR_FORWARD_D
));
382 reload_
->LoadImages();
385 void SimpleWebViewDialog::UpdateButtons() {
386 const content::NavigationController
& navigation_controller
=
387 web_view_
->web_contents()->GetController();
388 back_
->SetEnabled(navigation_controller
.CanGoBack());
389 forward_
->SetEnabled(navigation_controller
.CanGoForward());
392 void SimpleWebViewDialog::UpdateReload(bool is_loading
, bool force
) {
395 is_loading
? ReloadButton::MODE_STOP
: ReloadButton::MODE_RELOAD
,
400 } // namespace chromeos