blob: 4b8ed1dc146c4a3b52be4dde5c41f10644917c7a [file] [log] [blame]
// Copyright 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.
#ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_DELEGATE_H_
#define CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_DELEGATE_H_
#include <string>
#include "ui/gfx/native_widget_types.h"
class Profile;
namespace base {
class FilePath;
}
namespace extensions {
class Extension;
}
namespace gfx {
class ImageSkia;
}
// Interface to allow the view delegate to call out to whatever is controlling
// the app list. This will have different implementations for different
// platforms.
class AppListControllerDelegate {
public:
// Indicates the source of an app list activation, for tracking purposes.
enum AppListSource {
LAUNCH_FROM_UNKNOWN,
LAUNCH_FROM_APP_LIST,
LAUNCH_FROM_APP_LIST_SEARCH
};
// Whether apps can be pinned, and whether pinned apps are editable or fixed.
enum Pinnable {
NO_PIN,
PIN_EDITABLE,
PIN_FIXED
};
virtual ~AppListControllerDelegate();
// Dismisses the view.
virtual void DismissView() = 0;
// Handle the view being closed.
virtual void ViewClosing();
// Get app list window.
virtual gfx::NativeWindow GetAppListWindow() = 0;
// Get the application icon to be used, if any, for the app list.
virtual gfx::ImageSkia GetWindowIcon();
// Control of pinning apps.
virtual bool IsAppPinned(const std::string& extension_id);
virtual void PinApp(const std::string& extension_id);
virtual void UnpinApp(const std::string& extension_id);
virtual Pinnable GetPinnable() = 0;
// Be aware of the extension prompt (either uninstalling flow or enable flow).
virtual void OnShowExtensionPrompt() {}
virtual void OnCloseExtensionPrompt() {}
// Whether the controller supports a Create Shortcuts flow.
virtual bool CanDoCreateShortcutsFlow(bool is_platform_app) = 0;
virtual void DoCreateShortcutsFlow(Profile* profile,
const std::string& extension_id);
// Handle the "create window" context menu items of Chrome App.
// |incognito| is true to create an incognito window.
virtual void CreateNewWindow(Profile* profile, bool incognito);
// Show the app's most recent window, or launch it if it is not running.
virtual void ActivateApp(Profile* profile,
const extensions::Extension* extension,
AppListSource source,
int event_flags) = 0;
// Launch the app.
virtual void LaunchApp(Profile* profile,
const extensions::Extension* extension,
AppListSource source,
int event_flags) = 0;
// Show the app list for the profile specified by |profile_path|.
virtual void ShowForProfileByPath(const base::FilePath& profile_path) = 0;
// Whether or not the icon indicating which user is logged in should be
// visible.
virtual bool ShouldShowUserIcon();
static std::string AppListSourceToString(AppListSource source);
};
#endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_DELEGATE_H_