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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
// 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 "chrome/browser/first_run/try_chrome_dialog_view.h"
#include <shellapi.h>
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/string16.h"
#include "chrome/browser/process_singleton.h"
#include "chrome/grit/chromium_strings.h"
#include "chrome/grit/generated_resources.h"
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/user_experiment.h"
#include "grit/theme_resources.h"
#include "ui/aura/window.h"
#include "ui/aura/window_tree_host.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/image/image.h"
#include "ui/resources/grit/ui_resources.h"
#include "ui/views/background.h"
#include "ui/views/controls/button/checkbox.h"
#include "ui/views/controls/button/image_button.h"
#include "ui/views/controls/button/label_button.h"
#include "ui/views/controls/button/radio_button.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/link.h"
#include "ui/views/controls/separator.h"
#include "ui/views/layout/grid_layout.h"
#include "ui/views/layout/layout_constants.h"
#include "ui/views/widget/widget.h"
namespace {
const wchar_t kHelpCenterUrl[] =
L"https://www.google.com/support/chrome/bin/answer.py?answer=150752";
enum ButtonTags {
BT_NONE,
BT_CLOSE_BUTTON,
BT_OK_BUTTON,
BT_TRY_IT_RADIO,
BT_DONT_BUG_RADIO
};
const int kRadioGroupID = 1;
} // namespace
// static
TryChromeDialogView::Result TryChromeDialogView::Show(
size_t flavor,
const ActiveModalDialogListener& listener) {
if (flavor > 10000) {
// This is a test value. We want to make sure we exercise
// returning this early. See TryChromeDialogBrowserTest test.
return NOT_NOW;
}
TryChromeDialogView dialog(flavor);
return dialog.ShowModal(listener);
}
TryChromeDialogView::TryChromeDialogView(size_t flavor)
: flavor_(flavor),
popup_(NULL),
try_chrome_(NULL),
kill_chrome_(NULL),
dont_try_chrome_(NULL),
make_default_(NULL),
result_(COUNT) {
}
TryChromeDialogView::~TryChromeDialogView() {
}
TryChromeDialogView::Result TryChromeDialogView::ShowModal(
const ActiveModalDialogListener& listener) {
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
views::ImageView* icon = new views::ImageView();
icon->SetImage(rb.GetNativeImageNamed(IDR_PRODUCT_LOGO_32).ToImageSkia());
gfx::Size icon_size = icon->GetPreferredSize();
// An approximate window size. After Layout() we'll get better bounds.
views::Widget::InitParams params(views::Widget::InitParams::TYPE_POPUP);
params.activatable = views::Widget::InitParams::ACTIVATABLE_YES;
params.bounds = gfx::Rect(310, 200);
popup_ = new views::Widget;
popup_->Init(params);
views::View* root_view = popup_->GetRootView();
// The window color is a tiny bit off-white.
root_view->set_background(
views::Background::CreateSolidBackground(0xfc, 0xfc, 0xfc));
views::GridLayout* layout = views::GridLayout::CreatePanel(root_view);
root_view->SetLayoutManager(layout);
views::ColumnSet* columns;
// First row: [icon][pad][text][pad][button].
columns = layout->AddColumnSet(0);
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::LEADING, 0,
views::GridLayout::FIXED, icon_size.width(),
icon_size.height());
columns->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing);
columns->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
columns->AddPaddingColumn(0, views::kUnrelatedControlHorizontalSpacing);
columns->AddColumn(views::GridLayout::TRAILING, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// Optional second row: [pad][pad][radio 1].
columns = layout->AddColumnSet(1);
columns->AddPaddingColumn(0, icon_size.width());
columns->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing);
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// Third row: [pad][pad][radio 2].
columns = layout->AddColumnSet(2);
columns->AddPaddingColumn(0, icon_size.width());
columns->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing);
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// Fourth row: [pad][pad][button][pad][button].
columns = layout->AddColumnSet(3);
columns->AddPaddingColumn(0, icon_size.width());
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL, 0,
views::GridLayout::USE_PREF, 0, 0);
columns->AddPaddingColumn(0, views::kRelatedButtonHSpacing);
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL, 0,
views::GridLayout::USE_PREF, 0, 0);
// Fifth row: [pad][pad][link].
columns = layout->AddColumnSet(4);
columns->AddPaddingColumn(0, icon_size.width());
columns->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing);
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// Optional fourth row: [button].
columns = layout->AddColumnSet(5);
columns->AddColumn(views::GridLayout::CENTER, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// Optional fourth row: [divider]
columns = layout->AddColumnSet(6);
columns->AddColumn(views::GridLayout::CENTER, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// Optional fifth row [checkbox][pad][button]
columns = layout->AddColumnSet(7);
columns->AddColumn(views::GridLayout::LEADING, views::GridLayout::FILL, 0,
views::GridLayout::USE_PREF, 0, 0);
columns->AddPaddingColumn(0, views::kUnrelatedControlHorizontalSpacing);
columns->AddColumn(views::GridLayout::TRAILING, views::GridLayout::FILL, 1,
views::GridLayout::USE_PREF, 0, 0);
// First row.
layout->StartRow(0, 0);
layout->AddView(icon);
// Find out what experiment we are conducting.
installer::ExperimentDetails experiment;
if (!BrowserDistribution::GetDistribution()->HasUserExperiments() ||
!installer::CreateExperimentDetails(flavor_, &experiment) ||
!experiment.heading) {
NOTREACHED() << "Cannot determine which headline to show.";
return DIALOG_ERROR;
}
views::Label* label = new views::Label(
l10n_util::GetStringUTF16(experiment.heading),
rb.GetFontList(ui::ResourceBundle::MediumFont));
label->SetMultiLine(true);
label->SizeToFit(200);
label->SetHorizontalAlignment(gfx::ALIGN_LEFT);
layout->AddView(label);
// The close button is custom.
views::ImageButton* close_button = new views::ImageButton(this);
close_button->SetImage(views::CustomButton::STATE_NORMAL,
rb.GetNativeImageNamed(IDR_CLOSE_2).ToImageSkia());
close_button->SetImage(views::CustomButton::STATE_HOVERED,
rb.GetNativeImageNamed(IDR_CLOSE_2_H).ToImageSkia());
close_button->SetImage(views::CustomButton::STATE_PRESSED,
rb.GetNativeImageNamed(IDR_CLOSE_2_P).ToImageSkia());
close_button->set_tag(BT_CLOSE_BUTTON);
layout->AddView(close_button);
// Second row.
layout->StartRowWithPadding(0, 1, 0, 10);
try_chrome_ = new views::RadioButton(
l10n_util::GetStringUTF16(IDS_TRY_TOAST_TRY_OPT), kRadioGroupID);
try_chrome_->SetChecked(true);
try_chrome_->set_tag(BT_TRY_IT_RADIO);
try_chrome_->set_listener(this);
layout->AddView(try_chrome_);
// Decide if the don't bug me is a button or a radio button.
bool dont_bug_me_button =
!!(experiment.flags & installer::kToastUiDontBugMeAsButton);
// Optional third and fourth row.
if (!dont_bug_me_button) {
layout->StartRow(0, 1);
dont_try_chrome_ = new views::RadioButton(
l10n_util::GetStringUTF16(IDS_TRY_TOAST_CANCEL), kRadioGroupID);
dont_try_chrome_->set_tag(BT_DONT_BUG_RADIO);
dont_try_chrome_->set_listener(this);
layout->AddView(dont_try_chrome_);
}
if (experiment.flags & installer::kToastUiUninstall) {
layout->StartRow(0, 2);
kill_chrome_ = new views::RadioButton(
l10n_util::GetStringUTF16(IDS_UNINSTALL_CHROME), kRadioGroupID);
layout->AddView(kill_chrome_);
}
views::LabelButton* accept_button = new views::LabelButton(
this, l10n_util::GetStringUTF16(IDS_OK));
accept_button->SetStyle(views::Button::STYLE_BUTTON);
accept_button->set_tag(BT_OK_BUTTON);
views::Separator* separator = NULL;
if (experiment.flags & installer::kToastUiMakeDefault) {
// In this flavor we have some veritical space, then a separator line
// and the 'make default' checkbox and the OK button on the same row.
layout->AddPaddingRow(0, views::kUnrelatedControlVerticalSpacing);
layout->StartRow(0, 6);
separator = new views::Separator(views::Separator::HORIZONTAL);
layout->AddView(separator);
layout->AddPaddingRow(0, views::kUnrelatedControlVerticalSpacing);
layout->StartRow(0, 7);
make_default_ = new views::Checkbox(
l10n_util::GetStringUTF16(IDS_TRY_TOAST_SET_DEFAULT));
make_default_->SetChecked(true);
layout->AddView(make_default_);
layout->AddView(accept_button);
} else {
// On this other flavor there is no checkbox, the OK button and possibly
// the cancel button are in the same row.
layout->StartRowWithPadding(0, dont_bug_me_button ? 3 : 5, 0, 10);
layout->AddView(accept_button);
if (dont_bug_me_button) {
// The dialog needs a "Don't bug me" as a button or as a radio button,
// this the button case.
views::LabelButton* cancel_button = new views::LabelButton(
this, l10n_util::GetStringUTF16(IDS_TRY_TOAST_CANCEL));
cancel_button->SetStyle(views::Button::STYLE_BUTTON);
cancel_button->set_tag(BT_CLOSE_BUTTON);
layout->AddView(cancel_button);
}
}
if (experiment.flags & installer::kToastUiWhyLink) {
layout->StartRowWithPadding(0, 4, 0, 10);
views::Link* link = new views::Link(
l10n_util::GetStringUTF16(IDS_TRY_TOAST_WHY));
link->set_listener(this);
layout->AddView(link);
}
// We resize the window according to the layout manager. This takes into
// account the differences between XP and Vista fonts and buttons.
layout->Layout(root_view);
gfx::Size preferred = layout->GetPreferredSize(root_view);
if (separator) {
int separator_height = separator->GetPreferredSize().height();
separator->SetSize(gfx::Size(preferred.width(), separator_height));
}
gfx::Rect pos = ComputeWindowPosition(preferred.width(), preferred.height(),
base::i18n::IsRTL());
popup_->SetBounds(pos);
// Carve the toast shape into the window.
HWND toast_window;
toast_window = popup_->GetNativeView()->GetHost()->GetAcceleratedWidget();
SetToastRegion(toast_window, preferred.width(), preferred.height());
// Time to show the window in a modal loop.
popup_->Show();
if (!listener.is_null())
listener.Run(popup_->GetNativeView());
base::MessageLoop::current()->Run();
if (!listener.is_null())
listener.Run(NULL);
return result_;
}
gfx::Rect TryChromeDialogView::ComputeWindowPosition(int width,
int height,
bool is_RTL) {
// The 'Shell_TrayWnd' is the taskbar. We like to show our window in that
// monitor if we can. This code works even if such window is not found.
HWND taskbar = ::FindWindowW(L"Shell_TrayWnd", NULL);
HMONITOR monitor = ::MonitorFromWindow(taskbar, MONITOR_DEFAULTTOPRIMARY);
MONITORINFO info = {sizeof(info)};
if (!GetMonitorInfoW(monitor, &info)) {
// Quite unexpected. Do a best guess at a visible rectangle.
return gfx::Rect(20, 20, width + 20, height + 20);
}
// The |rcWork| is the work area. It should account for the taskbars that
// are in the screen when we called the function.
int left = is_RTL ? info.rcWork.left : info.rcWork.right - width;
int top = info.rcWork.bottom - height;
return gfx::Rect(left, top, width, height);
}
void TryChromeDialogView::SetToastRegion(HWND window, int w, int h) {
static const POINT polygon[] = {
{0, 4}, {1, 2}, {2, 1}, {4, 0}, // Left side.
{w-4, 0}, {w-2, 1}, {w-1, 2}, {w, 4}, // Right side.
{w, h}, {0, h}
};
HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING);
::SetWindowRgn(window, region, FALSE);
}
void TryChromeDialogView::ButtonPressed(views::Button* sender,
const ui::Event& event) {
if (sender->tag() == BT_DONT_BUG_RADIO) {
if (make_default_) {
make_default_->SetChecked(false);
make_default_->SetVisible(false);
}
return;
} else if (sender->tag() == BT_TRY_IT_RADIO) {
if (make_default_) {
make_default_->SetVisible(true);
make_default_->SetChecked(true);
}
return;
} else if (sender->tag() == BT_CLOSE_BUTTON) {
// The user pressed cancel or the [x] button.
result_ = NOT_NOW;
} else if (!try_chrome_) {
// We don't have radio buttons, the user pressed ok.
result_ = TRY_CHROME;
} else {
// The outcome is according to the selected radio button.
if (try_chrome_->checked())
result_ = TRY_CHROME;
else if (dont_try_chrome_ && dont_try_chrome_->checked())
result_ = NOT_NOW;
else if (kill_chrome_ && kill_chrome_->checked())
result_ = UNINSTALL_CHROME;
else
NOTREACHED() << "Unknown radio button selected";
}
if (make_default_) {
if ((result_ == TRY_CHROME) && make_default_->checked())
result_ = TRY_CHROME_AS_DEFAULT;
}
popup_->Close();
base::MessageLoop::current()->Quit();
}
void TryChromeDialogView::LinkClicked(views::Link* source, int event_flags) {
::ShellExecuteW(NULL, L"open", kHelpCenterUrl, NULL, NULL, SW_SHOW);
}
|