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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/app_list/app_list_test_view_delegate.h"
#include <string>
#include <utility>
#include <vector>
#include "ash/app_list/model/app_list_model.h"
#include "ash/public/cpp/app_list/app_list_types.h"
#include "base/functional/callback.h"
#include "ui/base/mojom/menu_source_type.mojom-forward.h"
namespace ash {
namespace test {
AppListTestViewDelegate::AppListTestViewDelegate()
: model_(std::make_unique<AppListTestModel>()),
search_model_(std::make_unique<SearchModel>()),
quick_app_access_model_(std::make_unique<QuickAppAccessModel>()) {
model_provider_.SetActiveModel(model_.get(), search_model_.get(),
quick_app_access_model_.get());
}
AppListTestViewDelegate::~AppListTestViewDelegate() = default;
bool AppListTestViewDelegate::KeyboardTraversalEngaged() {
return true;
}
std::vector<AppListSearchControlCategory>
AppListTestViewDelegate::GetToggleableCategories() const {
return std::vector<AppListSearchControlCategory>();
}
void AppListTestViewDelegate::StartZeroStateSearch(base::OnceClosure callback,
base::TimeDelta timeout) {
std::move(callback).Run();
}
void AppListTestViewDelegate::OpenSearchResult(
const std::string& result_id,
int event_flags,
ash::AppListLaunchedFrom launched_from,
ash::AppListLaunchType launch_type,
int suggestion_index,
bool launch_as_default) {
const SearchModel::SearchResults* results = search_model_->results();
for (size_t i = 0; i < results->item_count(); ++i) {
if (results->GetItemAt(i)->id() == result_id) {
open_search_result_counts_[i]++;
break;
}
}
++open_search_result_count_;
if (launch_type == ash::AppListLaunchType::kAppSearchResult) {
switch (launched_from) {
case ash::AppListLaunchedFrom::kLaunchedFromSearchBox:
case ash::AppListLaunchedFrom::kLaunchedFromRecentApps:
case ash::AppListLaunchedFrom::kLaunchedFromAppsCollections:
RecordAppLaunched(launched_from);
return;
case ash::AppListLaunchedFrom::kLaunchedFromGrid:
case ash::AppListLaunchedFrom::kLaunchedFromShelf:
case ash::AppListLaunchedFrom::kLaunchedFromContinueTask:
case ash::AppListLaunchedFrom::kLaunchedFromQuickAppAccess:
case ash::AppListLaunchedFrom::kLaunchedFromDiscoveryChip:
case ash::AppListLaunchedFrom::kLaunchedFromSearchBoxIcon:
return;
case ash::AppListLaunchedFrom::DEPRECATED_kLaunchedFromSuggestionChip:
NOTREACHED();
}
}
}
void AppListTestViewDelegate::DismissAppList() {
++dismiss_count_;
}
void AppListTestViewDelegate::ReplaceTestModel(int item_count) {
search_model_ = std::make_unique<SearchModel>();
model_ = std::make_unique<AppListTestModel>();
model_->PopulateApps(item_count);
quick_app_access_model_ = std::make_unique<QuickAppAccessModel>();
model_provider_.SetActiveModel(model_.get(), search_model_.get(),
quick_app_access_model_.get());
}
void AppListTestViewDelegate::SetSearchEngineIsGoogle(bool is_google) {
search_model_->SetSearchEngineIsGoogle(is_google);
}
void AppListTestViewDelegate::SetIsTabletModeEnabled(bool is_tablet_mode) {
is_tablet_mode_ = is_tablet_mode;
}
void AppListTestViewDelegate::ActivateItem(
const std::string& id,
int event_flags,
ash::AppListLaunchedFrom launched_from,
bool is_app_above_the_fold) {
AppListItem* item = model_->FindItem(id);
if (!item)
return;
DCHECK(!item->is_folder());
static_cast<AppListTestModel::AppListTestItem*>(item)->Activate(event_flags);
RecordAppLaunched(launched_from);
}
void AppListTestViewDelegate::GetContextMenuModel(
const std::string& id,
AppListItemContext item_context,
GetContextMenuModelCallback callback) {
AppListItem* item = model_->FindItem(id);
// TODO(stevenjb/jennyz): Implement this for folder items
std::unique_ptr<ui::SimpleMenuModel> menu_model;
if (item && !item->is_folder()) {
menu_model = static_cast<AppListTestModel::AppListTestItem*>(item)
->CreateContextMenuModel();
}
std::move(callback).Run(std::move(menu_model));
}
void AppListTestViewDelegate::ShowWallpaperContextMenu(
const gfx::Point& onscreen_location,
ui::mojom::MenuSourceType source_type) {
++show_wallpaper_context_menu_count_;
}
bool AppListTestViewDelegate::CanProcessEventsOnApplistViews() {
return true;
}
bool AppListTestViewDelegate::ShouldDismissImmediately() {
return false;
}
bool AppListTestViewDelegate::HasValidProfile() const {
return true;
}
bool AppListTestViewDelegate::ShouldHideContinueSection() const {
return false;
}
void AppListTestViewDelegate::SetHideContinueSection(bool hide) {}
bool AppListTestViewDelegate::IsCategoryEnabled(
AppListSearchControlCategory category) {
return true;
}
ash::AssistantViewDelegate*
AppListTestViewDelegate::GetAssistantViewDelegate() {
return nullptr;
}
void AppListTestViewDelegate::OnSearchResultVisibilityChanged(
const std::string& id,
bool visibility) {}
bool AppListTestViewDelegate::IsAssistantAllowedAndEnabled() const {
return false;
}
void AppListTestViewDelegate::OnStateTransitionAnimationCompleted(
AppListViewState state,
bool was_animation_interrupted) {}
AppListState AppListTestViewDelegate::GetCurrentAppListPage() const {
return app_list_page_;
}
void AppListTestViewDelegate::OnAppListPageChanged(AppListState page) {
app_list_page_ = page;
}
AppListViewState AppListTestViewDelegate::GetAppListViewState() const {
return app_list_view_state_;
}
void AppListTestViewDelegate::OnViewStateChanged(AppListViewState state) {
app_list_view_state_ = state;
}
void AppListTestViewDelegate::GetAppLaunchedMetricParams(
AppLaunchedMetricParams* metric_params) {}
gfx::Rect AppListTestViewDelegate::SnapBoundsToDisplayEdge(
const gfx::Rect& bounds) {
return bounds;
}
int AppListTestViewDelegate::GetShelfSize() {
// TODO(mmourgos): change this to 48 once shelf-hotseat flag is enabled.
// Return the height of the shelf when clamshell mode is active.
return 56;
}
int AppListTestViewDelegate::GetSystemShelfInsetsInTabletMode() {
return GetShelfSize();
}
bool AppListTestViewDelegate::AppListTargetVisibility() const {
return true;
}
bool AppListTestViewDelegate::IsInTabletMode() const {
return is_tablet_mode_;
}
AppListNotifier* AppListTestViewDelegate::GetNotifier() {
return nullptr;
}
std::unique_ptr<ScopedIphSession>
AppListTestViewDelegate::CreateLauncherSearchIphSession() {
return nullptr;
}
void AppListTestViewDelegate::RecordAppLaunched(
ash::AppListLaunchedFrom launched_from) {
RecordAppListAppLaunched(launched_from, app_list_view_state_,
false /*tablet mode*/,
false /*home launcher shown*/);
}
bool AppListTestViewDelegate::IsCommandIdChecked(int command_id) const {
return true;
}
bool AppListTestViewDelegate::IsCommandIdEnabled(int command_id) const {
return true;
}
void AppListTestViewDelegate::ExecuteCommand(int command_id, int event_flags) {}
} // namespace test
} // namespace ash
|