// 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/ui/views/update_recommended_message_box.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/prefs/pref_service.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/views/window.h"
#include "chrome/common/pref_names.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/message_box_flags.h"
#include "views/controls/message_box_view.h"
#include "views/window/window.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/cros/cros_library.h"
#include "chrome/browser/chromeos/cros/power_library.h"
#endif
////////////////////////////////////////////////////////////////////////////////
// UpdateRecommendedMessageBox, public:
// static
void UpdateRecommendedMessageBox::ShowMessageBox(
gfx::NativeWindow parent_window) {
// When the window closes, it will delete itself.
new UpdateRecommendedMessageBox(parent_window);
}
bool UpdateRecommendedMessageBox::Accept() {
// Set the flag to restore the last session on shutdown.
PrefService* pref_service = g_browser_process->local_state();
pref_service->SetBoolean(prefs::kRestartLastSessionOnShutdown, true);
#if defined(OS_CHROMEOS)
chromeos::CrosLibrary::Get()->GetPowerLibrary()->RequestRestart();
// If running the Chrome OS build, but we're not on the device, fall through
#endif
BrowserList::CloseAllBrowsersAndExit();
return true;
}
int UpdateRecommendedMessageBox::GetDialogButtons() const {
return ui::MessageBoxFlags::DIALOGBUTTON_OK |
ui::MessageBoxFlags::DIALOGBUTTON_CANCEL;
}
std::wstring UpdateRecommendedMessageBox::GetDialogButtonLabel(
ui::MessageBoxFlags::DialogButton button) const {
DCHECK(button == ui::MessageBoxFlags::DIALOGBUTTON_OK ||
button == ui::MessageBoxFlags::DIALOGBUTTON_CANCEL);
return button == ui::MessageBoxFlags::DIALOGBUTTON_OK ?
UTF16ToWide(l10n_util::GetStringUTF16(IDS_RELAUNCH_AND_UPDATE)) :
UTF16ToWide(l10n_util::GetStringUTF16(IDS_NOT_NOW));
}
bool UpdateRecommendedMessageBox::ShouldShowWindowTitle() const {
#if defined(OS_CHROMEOS)
return false;
#else
return true;
#endif
}
std::wstring UpdateRecommendedMessageBox::GetWindowTitle() const {
return UTF16ToWide(l10n_util::GetStringUTF16(IDS_PRODUCT_NAME));
}
void UpdateRecommendedMessageBox::DeleteDelegate() {
delete this;
}
bool UpdateRecommendedMessageBox::IsModal() const {
return true;
}
views::View* UpdateRecommendedMessageBox::GetContentsView() {
return message_box_view_;
}
////////////////////////////////////////////////////////////////////////////////
// UpdateRecommendedMessageBox, private:
UpdateRecommendedMessageBox::UpdateRecommendedMessageBox(
gfx::NativeWindow parent_window) {
const int kDialogWidth = 400;
#if defined(OS_CHROMEOS)
const int kProductNameId = IDS_PRODUCT_OS_NAME;
#else
const int kProductNameId = IDS_PRODUCT_NAME;
#endif
const string16 product_name = l10n_util::GetStringUTF16(kProductNameId);
// Also deleted when the window closes.
message_box_view_ = new views::MessageBoxView(
ui::MessageBoxFlags::kFlagHasMessage |
ui::MessageBoxFlags::kFlagHasOKButton,
UTF16ToWide(l10n_util::GetStringFUTF16(IDS_UPDATE_RECOMMENDED,
product_name)),
std::wstring(),
kDialogWidth);
browser::CreateViewsWindow(parent_window, gfx::Rect(), this)->Show();
}
UpdateRecommendedMessageBox::~UpdateRecommendedMessageBox() {
}