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
|
// 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/extensions/extension_uninstall_dialog.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/app_list/app_list_service.h"
#include "chrome/grit/generated_resources.h"
#include "components/constrained_window/constrained_window_views.h"
#include "extensions/common/extension.h"
#include "ui/aura/window_tracker.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/compositor/compositor.h"
#include "ui/compositor/layer.h"
#include "ui/views/controls/image_view.h"
#include "ui/views/controls/label.h"
#include "ui/views/layout/layout_constants.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
#include "ui/views/window/dialog_delegate.h"
namespace {
const int kRightColumnWidth = 210;
const int kIconSize = 64;
class ExtensionUninstallDialogDelegateView;
// Views implementation of the uninstall dialog.
class ExtensionUninstallDialogViews
: public extensions::ExtensionUninstallDialog {
public:
ExtensionUninstallDialogViews(
Profile* profile,
aura::Window* parent,
extensions::ExtensionUninstallDialog::Delegate* delegate);
~ExtensionUninstallDialogViews() override;
// Called when the ExtensionUninstallDialogDelegate has been destroyed to make
// sure we invalidate pointers.
void DialogDelegateDestroyed() { view_ = NULL; }
// Forwards the accept and cancels to the delegate.
void ExtensionUninstallAccepted();
void ExtensionUninstallCanceled();
private:
void Show() override;
ExtensionUninstallDialogDelegateView* view_;
// The dialog's parent window.
aura::Window* parent_;
// Tracks whether |parent_| got destroyed.
aura::WindowTracker parent_window_tracker_;
DISALLOW_COPY_AND_ASSIGN(ExtensionUninstallDialogViews);
};
// The dialog's view, owned by the views framework.
class ExtensionUninstallDialogDelegateView : public views::DialogDelegateView {
public:
ExtensionUninstallDialogDelegateView(
ExtensionUninstallDialogViews* dialog_view,
const extensions::Extension* extension,
const extensions::Extension* triggering_extension,
gfx::ImageSkia* image);
~ExtensionUninstallDialogDelegateView() override;
// Called when the ExtensionUninstallDialog has been destroyed to make sure
// we invalidate pointers.
void DialogDestroyed() { dialog_ = NULL; }
private:
// views::DialogDelegate:
base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
int GetDefaultDialogButton() const override {
// Default to accept when triggered via chrome://extensions page.
return triggered_by_extension_ ?
ui::DIALOG_BUTTON_CANCEL : ui::DIALOG_BUTTON_OK;
}
bool Accept() override;
bool Cancel() override;
// views::WidgetDelegate:
ui::ModalType GetModalType() const override { return ui::MODAL_TYPE_WINDOW; }
base::string16 GetWindowTitle() const override;
// views::View:
gfx::Size GetPreferredSize() const override;
void Layout() override;
ExtensionUninstallDialogViews* dialog_;
views::ImageView* icon_;
views::Label* heading_;
bool triggered_by_extension_;
DISALLOW_COPY_AND_ASSIGN(ExtensionUninstallDialogDelegateView);
};
ExtensionUninstallDialogViews::ExtensionUninstallDialogViews(
Profile* profile,
aura::Window* parent,
extensions::ExtensionUninstallDialog::Delegate* delegate)
: extensions::ExtensionUninstallDialog(profile, delegate),
view_(NULL),
parent_(parent) {
if (parent_)
parent_window_tracker_.Add(parent_);
}
ExtensionUninstallDialogViews::~ExtensionUninstallDialogViews() {
// Close the widget (the views framework will delete view_).
if (view_) {
view_->DialogDestroyed();
view_->GetWidget()->CloseNow();
}
}
void ExtensionUninstallDialogViews::Show() {
if (parent_ && !parent_window_tracker_.Contains(parent_)) {
delegate_->ExtensionUninstallCanceled();
return;
}
view_ = new ExtensionUninstallDialogDelegateView(
this, extension_, triggering_extension_, &icon_);
constrained_window::CreateBrowserModalDialogViews(view_, parent_)->Show();
}
void ExtensionUninstallDialogViews::ExtensionUninstallAccepted() {
// The widget gets destroyed when the dialog is accepted.
view_->DialogDestroyed();
view_ = NULL;
delegate_->ExtensionUninstallAccepted();
}
void ExtensionUninstallDialogViews::ExtensionUninstallCanceled() {
// The widget gets destroyed when the dialog is canceled.
view_->DialogDestroyed();
view_ = NULL;
delegate_->ExtensionUninstallCanceled();
}
ExtensionUninstallDialogDelegateView::ExtensionUninstallDialogDelegateView(
ExtensionUninstallDialogViews* dialog_view,
const extensions::Extension* extension,
const extensions::Extension* triggering_extension,
gfx::ImageSkia* image)
: dialog_(dialog_view),
triggered_by_extension_(triggering_extension != NULL) {
// Scale down to icon size, but allow smaller icons (don't scale up).
gfx::Size size(image->width(), image->height());
if (size.width() > kIconSize || size.height() > kIconSize)
size = gfx::Size(kIconSize, kIconSize);
icon_ = new views::ImageView();
icon_->SetImageSize(size);
icon_->SetImage(*image);
AddChildView(icon_);
heading_ = new views::Label(base::UTF8ToUTF16(dialog_->GetHeadingText()));
heading_->SetMultiLine(true);
heading_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
AddChildView(heading_);
}
ExtensionUninstallDialogDelegateView::~ExtensionUninstallDialogDelegateView() {
// If we're here, 2 things could have happened. Either the user closed the
// dialog nicely and one of ExtensionUninstallAccepted or
// ExtensionUninstallCanceled has been called (in which case dialog_ will be
// NULL), *or* neither of them have been called and we are being forced closed
// by our parent widget. In this case, we need to make sure to notify dialog_
// not to call us again, since we're about to be freed by the Widget
// framework.
if (dialog_)
dialog_->DialogDelegateDestroyed();
}
base::string16 ExtensionUninstallDialogDelegateView::GetDialogButtonLabel(
ui::DialogButton button) const {
return l10n_util::GetStringUTF16((button == ui::DIALOG_BUTTON_OK) ?
IDS_EXTENSION_PROMPT_UNINSTALL_BUTTON : IDS_CANCEL);
}
bool ExtensionUninstallDialogDelegateView::Accept() {
if (dialog_)
dialog_->ExtensionUninstallAccepted();
return true;
}
bool ExtensionUninstallDialogDelegateView::Cancel() {
if (dialog_)
dialog_->ExtensionUninstallCanceled();
return true;
}
base::string16 ExtensionUninstallDialogDelegateView::GetWindowTitle() const {
return l10n_util::GetStringUTF16(IDS_EXTENSION_UNINSTALL_PROMPT_TITLE);
}
gfx::Size ExtensionUninstallDialogDelegateView::GetPreferredSize() const {
int width = kRightColumnWidth;
width += kIconSize;
width += views::kButtonHEdgeMarginNew * 2;
width += views::kRelatedControlHorizontalSpacing;
int height = views::kPanelVertMargin * 2;
height += heading_->GetHeightForWidth(kRightColumnWidth);
return gfx::Size(width,
std::max(height, kIconSize + views::kPanelVertMargin * 2));
}
void ExtensionUninstallDialogDelegateView::Layout() {
int x = views::kButtonHEdgeMarginNew;
int y = views::kPanelVertMargin;
heading_->SizeToFit(kRightColumnWidth);
if (heading_->height() <= kIconSize) {
icon_->SetBounds(x, y, kIconSize, kIconSize);
x += kIconSize;
x += views::kRelatedControlHorizontalSpacing;
heading_->SetX(x);
heading_->SetY(y + (kIconSize - heading_->height()) / 2);
} else {
icon_->SetBounds(x,
y + (heading_->height() - kIconSize) / 2,
kIconSize,
kIconSize);
x += kIconSize;
x += views::kRelatedControlHorizontalSpacing;
heading_->SetX(x);
heading_->SetY(y);
}
}
} // namespace
// static
extensions::ExtensionUninstallDialog*
extensions::ExtensionUninstallDialog::Create(Profile* profile,
gfx::NativeWindow parent,
Delegate* delegate) {
return new ExtensionUninstallDialogViews(profile, parent, delegate);
}
|