| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_SHELF_SHELF_DELEGATE_H_ | |
| 6 #define ASH_SHELF_SHELF_DELEGATE_H_ | |
| 7 | |
| 8 #include "ash/ash_export.h" | |
| 9 #include "ash/common/shelf/shelf_item_types.h" | |
| 10 | |
| 11 namespace ash { | |
| 12 class Shelf; | |
| 13 | |
| 14 // Delegate for the Shelf. | |
| 15 class ASH_EXPORT ShelfDelegate { | |
| 16 public: | |
| 17 // Shelf owns the delegate. | |
| 18 virtual ~ShelfDelegate() {} | |
| 19 | |
| 20 // Callback used to allow delegate to perform initialization actions that | |
| 21 // depend on the Shelf being in a known state. | |
| 22 virtual void OnShelfCreated(Shelf* shelf) = 0; | |
| 23 | |
| 24 // Callback used to inform the delegate that a specific shelf no longer | |
| 25 // exists. | |
| 26 virtual void OnShelfDestroyed(Shelf* shelf) = 0; | |
| 27 | |
| 28 // Called when |shelf|'s alignment changes. | |
| 29 virtual void OnShelfAlignmentChanged(Shelf* shelf) = 0; | |
| 30 | |
| 31 // Called when |shelf|'s auto-hide behavior changes. | |
| 32 virtual void OnShelfAutoHideBehaviorChanged(Shelf* shelf) = 0; | |
| 33 | |
| 34 // Called when |shelf|'s auto-hide state changes. | |
| 35 virtual void OnShelfAutoHideStateChanged(Shelf* shelf) = 0; | |
| 36 | |
| 37 // Called when |shelf|'s visibility state is committed. | |
| 38 virtual void OnShelfVisibilityStateChanged(Shelf* shelf) = 0; | |
| 39 | |
| 40 // Get the shelf ID from an application ID. | |
| 41 virtual ShelfID GetShelfIDForAppID(const std::string& app_id) = 0; | |
| 42 | |
| 43 // Checks whether a mapping exists from the ShelfID |id| to an app id. | |
| 44 virtual bool HasShelfIDToAppIDMapping(ShelfID id) const = 0; | |
| 45 | |
| 46 // Get the application ID for a given shelf ID. | |
| 47 // |HasShelfIDToAppIDMapping(ShelfID)| should be called first to ensure the | |
| 48 // ShelfID can be successfully mapped to an app id. | |
| 49 virtual const std::string& GetAppIDForShelfID(ShelfID id) = 0; | |
| 50 | |
| 51 // Pins an app with |app_id| to shelf. A running instance will get pinned. | |
| 52 // In case there is no running instance a new shelf item is created and | |
| 53 // pinned. | |
| 54 virtual void PinAppWithID(const std::string& app_id) = 0; | |
| 55 | |
| 56 // Check if the app with |app_id_| is pinned to the shelf. | |
| 57 virtual bool IsAppPinned(const std::string& app_id) = 0; | |
| 58 | |
| 59 // Unpins app item with |app_id|. | |
| 60 virtual void UnpinAppWithID(const std::string& app_id) = 0; | |
| 61 }; | |
| 62 | |
| 63 } // namespace ash | |
| 64 | |
| 65 #endif // ASH_SHELF_SHELF_DELEGATE_H_ | |
| OLD | NEW |