blob: d8edaded2917a6bf9527c309c81680a8e531ede7 [file] [log] [blame]
// Copyright 2013 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 "ash/shelf/shelf_window_watcher_item_delegate.h"
#include <utility>
#include "ash/public/cpp/shelf_model.h"
#include "ash/public/cpp/window_properties.h"
#include "ash/shelf/shelf_context_menu_model.h"
#include "ash/shelf/shelf_controller.h"
#include "ash/shell.h"
#include "ash/wm/window_state.h"
#include "ash/wm/window_util.h"
#include "components/strings/grit/components_strings.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/events/event_constants.h"
#include "ui/wm/core/window_animations.h"
namespace ash {
namespace {
// Close command id; avoids colliding with ShelfContextMenuModel command ids.
const int kCloseCommandId = ShelfContextMenuModel::MENU_LOCAL_END + 1;
} // namespace
ShelfWindowWatcherItemDelegate::ShelfWindowWatcherItemDelegate(
const ShelfID& id,
aura::Window* window)
: ShelfItemDelegate(id), window_(window) {
DCHECK(!id.IsNull());
DCHECK(window_);
}
ShelfWindowWatcherItemDelegate::~ShelfWindowWatcherItemDelegate() = default;
void ShelfWindowWatcherItemDelegate::ItemSelected(
std::unique_ptr<ui::Event> event,
int64_t display_id,
ShelfLaunchSource source,
ItemSelectedCallback callback) {
if (wm::IsActiveWindow(window_)) {
if (event && event->type() == ui::ET_KEY_RELEASED) {
::wm::AnimateWindow(window_, ::wm::WINDOW_ANIMATION_TYPE_BOUNCE);
std::move(callback).Run(SHELF_ACTION_NONE, base::nullopt);
return;
}
window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_MINIMIZED);
std::move(callback).Run(SHELF_ACTION_WINDOW_MINIMIZED, base::nullopt);
return;
}
wm::ActivateWindow(window_);
std::move(callback).Run(SHELF_ACTION_WINDOW_ACTIVATED, base::nullopt);
}
void ShelfWindowWatcherItemDelegate::GetContextMenuItems(
int64_t display_id,
GetContextMenuItemsCallback callback) {
// Show a default context menu with just an extra close item and separator.
ash::MenuItemList items;
ash::mojom::MenuItemPtr close(ash::mojom::MenuItem::New());
close->type = ui::MenuModel::TYPE_COMMAND;
close->command_id = kCloseCommandId;
close->label = l10n_util::GetStringUTF16(IDS_CLOSE);
close->enabled = true;
items.push_back(std::move(close));
std::move(callback).Run(std::move(items));
}
void ShelfWindowWatcherItemDelegate::ExecuteCommand(bool from_context_menu,
int64_t command_id,
int32_t event_flags,
int64_t display_id) {
DCHECK_EQ(command_id, kCloseCommandId) << "Unknown ShelfItemDelegate command";
Close();
}
void ShelfWindowWatcherItemDelegate::Close() {
wm::CloseWidgetForWindow(window_);
}
} // namespace ash