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 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
// Copyright 2015 The Chromium Authors
// 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/task_manager_view.h"
#include <stddef.h>
#include "base/containers/adapters.h"
#include "base/functional/callback_helpers.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile_window.h"
#include "chrome/browser/task_manager/task_manager_interface.h"
#include "chrome/browser/task_manager/task_manager_observer.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_navigator_params.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/task_manager/task_manager_columns.h"
#include "chrome/browser/ui/views/chrome_layout_provider.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/grit/branded_strings.h"
#include "chrome/grit/generated_resources.h"
#include "components/prefs/pref_service.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/metadata/metadata_impl_macros.h"
#include "ui/base/models/image_model.h"
#include "ui/base/models/table_model_observer.h"
#include "ui/views/border.h"
#include "ui/views/controls/label.h"
#include "ui/views/controls/scroll_view.h"
#include "ui/views/controls/table/table_view.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "ash/public/cpp/shelf_item.h"
#include "ash/public/cpp/window_properties.h"
#include "chrome/browser/apps/icon_standardizer.h"
#include "chrome/grit/theme_resources.h"
#include "ui/aura/window.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/gfx/image/image_skia.h"
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
#if BUILDFLAG(IS_WIN)
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/shell_integration_win.h"
#include "ui/base/win/shell.h"
#include "ui/views/win/hwnd_util.h"
#endif // BUILDFLAG(IS_WIN)
namespace task_manager {
namespace {
TaskManagerView* g_task_manager_view = nullptr;
} // namespace
TaskManagerView::~TaskManagerView() {
// Delete child views now, while our table model still exists.
RemoveAllChildViews();
}
// static
task_manager::TaskManagerTableModel* TaskManagerView::Show(Browser* browser) {
if (g_task_manager_view) {
// If there's a Task manager window open already, just activate it.
g_task_manager_view->SelectTaskOfActiveTab(browser);
g_task_manager_view->GetWidget()->Activate();
return g_task_manager_view->table_model_.get();
}
g_task_manager_view = new TaskManagerView();
// On Chrome OS, pressing Search-Esc when there are no open browser windows
// will open the task manager on the root window for new windows.
gfx::NativeWindow context =
browser ? browser->window()->GetNativeWindow() : nullptr;
CreateDialogWidget(g_task_manager_view, context, nullptr);
g_task_manager_view->InitAlwaysOnTopState();
#if BUILDFLAG(IS_WIN)
// Set the app id for the task manager to the app id of its parent browser. If
// no parent is specified, the app id will default to that of the initial
// process.
if (browser) {
ui::win::SetAppIdForWindow(
shell_integration::win::GetAppUserModelIdForBrowser(
browser->profile()->GetPath()),
views::HWNDForWidget(g_task_manager_view->GetWidget()));
}
#endif
g_task_manager_view->SelectTaskOfActiveTab(browser);
g_task_manager_view->GetWidget()->Show();
#if BUILDFLAG(IS_CHROMEOS_ASH)
aura::Window* window = g_task_manager_view->GetWidget()->GetNativeWindow();
// An app id for task manager windows, also used to identify the shelf item.
// Generated as crx_file::id_util::GenerateId("org.chromium.taskmanager")
static constexpr char kTaskManagerId[] = "ijaigheoohcacdnplfbdimmcfldnnhdi";
const ash::ShelfID shelf_id(kTaskManagerId);
window->SetProperty(ash::kShelfIDKey, shelf_id.Serialize());
window->SetProperty(ash::kAppIDKey, shelf_id.app_id);
window->SetProperty<int>(ash::kShelfItemTypeKey, ash::TYPE_DIALOG);
window->SetTitle(l10n_util::GetStringUTF16(IDS_TASK_MANAGER_TITLE));
#endif
return g_task_manager_view->table_model_.get();
}
// static
void TaskManagerView::Hide() {
if (g_task_manager_view)
g_task_manager_view->GetWidget()->Close();
}
bool TaskManagerView::IsColumnVisible(int column_id) const {
return tab_table_->IsColumnVisible(column_id);
}
bool TaskManagerView::SetColumnVisibility(int column_id, bool new_visibility) {
// Check if there is at least 1 visible column before changing the visibility.
// If this column would be the last column to be visible and its hiding, then
// prevent this column visibility change. see crbug.com/1320307 for details.
if (!new_visibility && tab_table_->visible_columns().size() <= 1) {
return false;
}
const bool currently_visible = tab_table_->IsColumnVisible(column_id);
tab_table_->SetColumnVisibility(column_id, new_visibility);
return new_visibility != currently_visible;
}
bool TaskManagerView::IsTableSorted() const {
return tab_table_->GetIsSorted();
}
TableSortDescriptor TaskManagerView::GetSortDescriptor() const {
if (!IsTableSorted())
return TableSortDescriptor();
const auto& descriptor = tab_table_->sort_descriptors().front();
return TableSortDescriptor(descriptor.column_id, descriptor.ascending);
}
void TaskManagerView::SetSortDescriptor(const TableSortDescriptor& descriptor) {
views::TableView::SortDescriptors descriptor_list;
// If |sorted_column_id| is the default value, it means to clear the sort.
if (descriptor.sorted_column_id != TableSortDescriptor().sorted_column_id) {
descriptor_list.emplace_back(descriptor.sorted_column_id,
descriptor.is_ascending);
}
tab_table_->SetSortDescriptors(descriptor_list);
}
gfx::Size TaskManagerView::CalculatePreferredSize() const {
// The TaskManagerView's preferred size is used to size the hosting Widget
// when the Widget does not have `initial_restored_bounds_` set. The minimum
// width below ensures that there is sufficient space for the task manager's
// columns when the above restored bounds have not been set.
return gfx::Size(640, 270);
}
bool TaskManagerView::AcceleratorPressed(const ui::Accelerator& accelerator) {
const bool is_valid_modifier =
accelerator.modifiers() == ui::EF_CONTROL_DOWN ||
accelerator.modifiers() == (ui::EF_CONTROL_DOWN | ui::EF_SHIFT_DOWN);
DCHECK(is_valid_modifier);
DCHECK_EQ(ui::VKEY_W, accelerator.key_code());
GetWidget()->Close();
return true;
}
views::View* TaskManagerView::GetInitiallyFocusedView() {
// Set initial focus to |table_view_| so that screen readers can navigate the
// UI when the dialog is opened without having to manually assign focus first.
return tab_table_;
}
bool TaskManagerView::ExecuteWindowsCommand(int command_id) {
return false;
}
ui::ImageModel TaskManagerView::GetWindowIcon() {
TRACE_EVENT0("ui", "TaskManagerView::GetWindowIcon");
#if BUILDFLAG(IS_CHROMEOS_ASH)
// TODO(crbug.com/1162514): Move apps::CreateStandardIconImage to some
// where lower in the stack.
return ui::ImageModel::FromImageSkia(apps::CreateStandardIconImage(
*ui::ResourceBundle::GetSharedInstance().GetImageSkiaNamed(
IDR_ASH_SHELF_ICON_TASK_MANAGER)));
#else
return views::DialogDelegateView::GetWindowIcon();
#endif
}
std::string TaskManagerView::GetWindowName() const {
return prefs::kTaskManagerWindowPlacement;
}
bool TaskManagerView::Accept() {
using SelectedIndices = ui::ListSelectionModel::SelectedIndices;
SelectedIndices selection(tab_table_->selection_model().selected_indices());
for (int index : base::Reversed(selection)) {
table_model_->KillTask(index);
}
// Just kill the process, don't close the task manager dialog.
return false;
}
bool TaskManagerView::IsDialogButtonEnabled(ui::DialogButton button) const {
const ui::ListSelectionModel::SelectedIndices& selections(
tab_table_->selection_model().selected_indices());
for (const auto& selection : selections) {
if (!table_model_->IsTaskKillable(selection))
return false;
}
return !selections.empty() && TaskManagerInterface::IsEndProcessEnabled();
}
void TaskManagerView::WindowClosing() {
// Now that the window is closed, we can allow a new one to be opened.
// (WindowClosing comes in asynchronously from the call to Close() and we
// may have already opened a new instance).
if (g_task_manager_view == this) {
// We don't have to delete |g_task_manager_view| as we don't own it. It's
// owned by the Views hierarchy.
g_task_manager_view = nullptr;
}
table_model_->StoreColumnsSettings();
}
void TaskManagerView::GetGroupRange(size_t model_index,
views::GroupRange* range) {
table_model_->GetRowsGroupRange(model_index, &range->start, &range->length);
}
void TaskManagerView::OnSelectionChanged() {
DialogModelChanged();
}
void TaskManagerView::OnDoubleClick() {
ActivateSelectedTab();
}
void TaskManagerView::OnKeyDown(ui::KeyboardCode keycode) {
if (keycode == ui::VKEY_RETURN)
ActivateSelectedTab();
}
void TaskManagerView::ShowContextMenuForViewImpl(
views::View* source,
const gfx::Point& point,
ui::MenuSourceType source_type) {
menu_model_ = std::make_unique<ui::SimpleMenuModel>(this);
for (const auto& table_column : columns_) {
menu_model_->AddCheckItem(table_column.id,
l10n_util::GetStringUTF16(table_column.id));
}
menu_runner_ = std::make_unique<views::MenuRunner>(
menu_model_.get(), views::MenuRunner::CONTEXT_MENU);
menu_runner_->RunMenuAt(GetWidget(), nullptr, gfx::Rect(point, gfx::Size()),
views::MenuAnchorPosition::kTopLeft, source_type);
}
bool TaskManagerView::IsCommandIdChecked(int id) const {
return tab_table_->IsColumnVisible(id);
}
bool TaskManagerView::IsCommandIdEnabled(int id) const {
return true;
}
void TaskManagerView::ExecuteCommand(int id, int event_flags) {
table_model_->ToggleColumnVisibility(id);
}
void TaskManagerView::MenuClosed(ui::SimpleMenuModel* source) {
menu_model_.reset();
menu_runner_.reset();
}
TaskManagerView::TaskManagerView()
: tab_table_(nullptr),
tab_table_parent_(nullptr),
is_always_on_top_(false) {
set_use_custom_frame(false);
SetButtons(ui::DIALOG_BUTTON_OK);
SetButtonLabel(ui::DIALOG_BUTTON_OK,
l10n_util::GetStringUTF16(IDS_TASK_MANAGER_KILL));
SetHasWindowSizeControls(true);
#if !BUILDFLAG(IS_CHROMEOS_ASH)
// On Chrome OS, the widget's frame should not show the window title.
SetTitle(IDS_TASK_MANAGER_TITLE);
#endif
// Avoid calling Accept() when closing the dialog, since Accept() here means
// "kill task" (!).
// TODO(ellyjones): Remove this once the Accept() override is removed from
// this class.
SetCloseCallback(base::DoNothing());
Init();
}
// static
TaskManagerView* TaskManagerView::GetInstanceForTests() {
return g_task_manager_view;
}
void TaskManagerView::Init() {
// Create the table columns.
for (size_t i = 0; i < kColumnsSize; ++i) {
const auto& col_data = kColumns[i];
columns_.push_back(ui::TableColumn(col_data.id, col_data.align,
col_data.width, col_data.percent));
columns_.back().sortable = col_data.sortable;
columns_.back().initial_sort_is_ascending =
col_data.initial_sort_is_ascending;
}
// Create the table view.
auto tab_table = std::make_unique<views::TableView>(
nullptr, columns_, views::ICON_AND_TEXT, false);
tab_table_ = tab_table.get();
table_model_ = std::make_unique<TaskManagerTableModel>(this);
tab_table->SetModel(table_model_.get());
tab_table->SetGrouper(this);
tab_table->SetSortOnPaint(true);
tab_table->set_observer(this);
tab_table->set_context_menu_controller(this);
set_context_menu_controller(this);
tab_table_parent_ = AddChildView(
views::TableView::CreateScrollViewWithTable(std::move(tab_table)));
SetUseDefaultFillLayout(true);
const ChromeLayoutProvider* provider = ChromeLayoutProvider::Get();
const gfx::Insets dialog_insets =
provider->GetInsetsMetric(views::INSETS_DIALOG);
// We don't use ChromeLayoutProvider::GetDialogInsetsForContentType because we
// don't have a title.
const auto content_insets = gfx::Insets::TLBR(
dialog_insets.top(), dialog_insets.left(),
provider->GetDistanceMetric(
views::DISTANCE_DIALOG_CONTENT_MARGIN_BOTTOM_CONTROL),
dialog_insets.right());
SetBorder(views::CreateEmptyBorder(content_insets));
table_model_->RetrieveSavedColumnsSettingsAndUpdateTable();
AddAccelerator(ui::Accelerator(ui::VKEY_W, ui::EF_CONTROL_DOWN));
AddAccelerator(
ui::Accelerator(ui::VKEY_W, ui::EF_CONTROL_DOWN | ui::EF_SHIFT_DOWN));
}
void TaskManagerView::InitAlwaysOnTopState() {
RetrieveSavedAlwaysOnTopState();
GetWidget()->SetZOrderLevel(is_always_on_top_
? ui::ZOrderLevel::kFloatingWindow
: ui::ZOrderLevel::kNormal);
}
void TaskManagerView::ActivateSelectedTab() {
const absl::optional<size_t> active_row =
tab_table_->selection_model().active();
if (active_row.has_value())
table_model_->ActivateTask(active_row.value());
}
void TaskManagerView::SelectTaskOfActiveTab(Browser* browser) {
if (browser) {
tab_table_->Select(table_model_->GetRowForWebContents(
browser->tab_strip_model()->GetActiveWebContents()));
}
}
void TaskManagerView::RetrieveSavedAlwaysOnTopState() {
is_always_on_top_ = false;
if (!g_browser_process->local_state())
return;
const base::Value::Dict& dictionary =
g_browser_process->local_state()->GetDict(GetWindowName());
is_always_on_top_ = dictionary.FindBool("always_on_top").value_or(false);
}
BEGIN_METADATA(TaskManagerView, views::DialogDelegateView)
END_METADATA
} // namespace task_manager
namespace chrome {
#if BUILDFLAG(IS_MAC)
// These are used by the Mac versions of |ShowTaskManager| and |HideTaskManager|
// if they decide to show the Views task manager instead of the Cocoa one.
task_manager::TaskManagerTableModel* ShowTaskManagerViews(Browser* browser) {
return task_manager::TaskManagerView::Show(browser);
}
void HideTaskManagerViews() {
task_manager::TaskManagerView::Hide();
}
#endif
} // namespace chrome
|