// Copyright (c) 2010 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/views/instant_confirm_view.h" #include "app/l10n_util.h" #include "chrome/browser/browser.h" #include "chrome/browser/browser_list.h" #include "chrome/browser/instant/instant_confirm_dialog.h" #include "chrome/browser/prefs/pref_service.h" #include "chrome/browser/profile.h" #include "chrome/common/pref_names.h" #include "grit/generated_resources.h" #include "grit/locale_settings.h" #include "views/controls/label.h" #include "views/grid_layout.h" #include "views/layout_manager.h" #include "views/standard_layout.h" #include "views/window/window.h" InstantConfirmView::InstantConfirmView(Profile* profile) : profile_(profile) { views::Label* description_label = new views::Label( l10n_util::GetString(IDS_INSTANT_OPT_IN_MESSAGE)); description_label->SetHorizontalAlignment(views::Label::ALIGN_LEFT); description_label->SetMultiLine(true); views::Link* learn_more_link = new views::Link( l10n_util::GetString(IDS_LEARN_MORE)); learn_more_link->SetHorizontalAlignment(views::Label::ALIGN_LEFT); learn_more_link->SetController(this); views::GridLayout* layout = CreatePanelGridLayout(this); SetLayoutManager(layout); const int first_column_set = 1; views::ColumnSet* column_set = layout->AddColumnSet(first_column_set); column_set->AddColumn(views::GridLayout::FILL, views::GridLayout::FILL, 1, views::GridLayout::USE_PREF, 0, 0); layout->StartRow(0, first_column_set); layout->AddView(description_label); layout->StartRow(0, first_column_set); layout->AddView(learn_more_link); } bool InstantConfirmView::Accept(bool window_closing) { return Accept(); } bool InstantConfirmView::Accept() { PrefService* prefs = profile_->GetPrefs(); if (prefs) { prefs->SetBoolean(prefs::kInstantEnabled, true); prefs->SetBoolean(prefs::kInstantConfirmDialogShown, true); } return true; } bool InstantConfirmView::Cancel() { return true; } views::View* InstantConfirmView::GetContentsView() { return this; } std::wstring InstantConfirmView::GetWindowTitle() const { return l10n_util::GetString(IDS_INSTANT_OPT_IN_TITLE); } gfx::Size InstantConfirmView::GetPreferredSize() { DCHECK(GetLayoutManager()); int pref_width = views::Window::GetLocalizedContentsWidth( IDS_INSTANT_CONFIRM_DIALOG_WIDTH_CHARS); int pref_height = GetLayoutManager()->GetPreferredHeightForWidth(this, pref_width); return gfx::Size(pref_width, pref_height); } bool InstantConfirmView::IsModal() const { return true; } void InstantConfirmView::LinkActivated(views::Link* source, int event_flags) { Browser* browser = BrowserList::GetLastActive(); browser->OpenURL(GURL(browser::kInstantLearnMoreURL), GURL(), NEW_FOREGROUND_TAB, PageTransition::TYPED); } namespace browser { void ShowInstantConfirmDialog(gfx::NativeWindow parent, Profile* profile) { views::Window::CreateChromeWindow(parent, gfx::Rect(), new InstantConfirmView(profile))->Show(); } } // namespace browser