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
|
// Copyright 2014 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_ASH_LAUNCHER_APP_WINDOW_LAUNCHER_ITEM_CONTROLLER_H_
#define CHROME_BROWSER_UI_ASH_LAUNCHER_APP_WINDOW_LAUNCHER_ITEM_CONTROLLER_H_
#include <list>
#include <string>
#include "base/memory/scoped_ptr.h"
#include "base/scoped_observer.h"
#include "chrome/browser/ui/ash/launcher/launcher_item_controller.h"
#include "ui/aura/window_observer.h"
namespace aura {
class Window;
}
namespace extensions {
class AppWindow;
}
namespace gfx {
class Image;
}
class ChromeLauncherController;
// This is a LauncherItemController for app windows. There is one instance per
// app, per launcher id. For apps with multiple windows, each item controller
// keeps track of all windows associated with the app and their activation
// order. Instances are owned by ash::ShelfItemDelegateManager.
//
// Tests are in chrome_launcher_controller_browsertest.cc
class AppWindowLauncherItemController : public LauncherItemController,
public aura::WindowObserver {
public:
AppWindowLauncherItemController(Type type,
const std::string& app_shelf_id,
const std::string& app_id,
ChromeLauncherController* controller);
~AppWindowLauncherItemController() override;
void AddAppWindow(extensions::AppWindow* app_window,
ash::ShelfItemStatus status);
void RemoveAppWindowForWindow(aura::Window* window);
void SetActiveWindow(aura::Window* window);
const std::string& app_shelf_id() const { return app_shelf_id_; }
// LauncherItemController overrides:
bool IsOpen() const override;
bool IsVisible() const override;
void Launch(ash::LaunchSource source, int event_flags) override;
bool Activate(ash::LaunchSource source) override;
ChromeLauncherAppMenuItems GetApplicationList(int event_flags) override;
bool ItemSelected(const ui::Event& eent) override;
base::string16 GetTitle() override;
ui::MenuModel* CreateContextMenu(aura::Window* root_window) override;
ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override;
bool IsDraggable() override;
bool ShouldShowTooltip() override;
void Close() override;
// aura::WindowObserver overrides:
void OnWindowPropertyChanged(aura::Window* window,
const void* key,
intptr_t old) override;
// Get the number of running applications/incarnations of this.
size_t app_window_count() const { return app_windows_.size(); }
// Activates the window at position |index|.
void ActivateIndexedApp(size_t index);
// Install the app. Only valid for ephemeral apps, which can be promoted to
// regular installed apps.
void InstallApp();
private:
typedef std::list<extensions::AppWindow*> AppWindowList;
void ShowAndActivateOrMinimize(extensions::AppWindow* app_window);
// Activate the given |window_to_show|, or - if already selected - advance to
// the next window of similar type.
void ActivateOrAdvanceToNextAppWindow(extensions::AppWindow* window_to_show);
// List of associated app windows
AppWindowList app_windows_;
// Pointer to the most recently active app window
extensions::AppWindow* last_active_app_window_;
// The launcher id associated with this set of windows. There is one
// AppLauncherItemController for each |app_shelf_id_|.
const std::string app_shelf_id_;
// Scoped list of observed windows (for removal on destruction)
ScopedObserver<aura::Window, aura::WindowObserver> observed_windows_;
DISALLOW_COPY_AND_ASSIGN(AppWindowLauncherItemController);
};
#endif // CHROME_BROWSER_UI_ASH_LAUNCHER_APP_WINDOW_LAUNCHER_ITEM_CONTROLLER_H_
|