blob: f54fbc8bf582fe12e1fee6facaef79913562115f (
plain)
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
|
// Copyright (c) 2009 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/uninstall_dialog.h"
#include "app/l10n_util.h"
#include "app/message_box_flags.h"
#include "base/message_loop.h"
#include "chrome/common/result_codes.h"
#include "grit/chromium_strings.h"
#include "views/controls/message_box_view.h"
#include "views/window/window.h"
// static
void UninstallDialog::ShowUninstallDialog(int& user_selection) {
// When the window closes, it will delete itself.
new UninstallDialog(user_selection);
}
bool UninstallDialog::Accept() {
user_selection_ = ResultCodes::NORMAL_EXIT;
if (message_box_view_->IsCheckBoxSelected())
user_selection_ = ResultCodes::UNINSTALL_DELETE_PROFILE;
return true;
}
bool UninstallDialog::Cancel() {
user_selection_ = ResultCodes::UNINSTALL_USER_CANCEL;
return true;
}
std::wstring UninstallDialog::GetWindowTitle() const {
return l10n_util::GetString(IDS_UNINSTALL_CHROME);
}
void UninstallDialog::DeleteDelegate() {
delete this;
}
views::View* UninstallDialog::GetContentsView() {
return message_box_view_;
}
UninstallDialog::UninstallDialog(int& user_selection)
: user_selection_(user_selection) {
// Also deleted when the window closes.
message_box_view_ = new MessageBoxView(
MessageBoxFlags::kIsConfirmMessageBox |
MessageBoxFlags::kAutoDetectAlignment,
l10n_util::GetString(IDS_UNINSTALL_VERIFY).c_str(),
std::wstring());
message_box_view_->SetCheckBoxLabel(
l10n_util::GetString(IDS_UNINSTALL_DELETE_PROFILE));
message_box_view_->SetCheckBoxSelected(false);
views::Window::CreateChromeWindow(NULL, gfx::Rect(), this)->Show();
}
UninstallDialog::~UninstallDialog() {
MessageLoop::current()->Quit();
}
|