Move policy and rationale permission handling to public Window class.
[chromium-blink-merge.git] / ash / shelf / shelf_util.h
blob799e59f082c3dcdd9919d201b7e4820b8500118a
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.
5 #ifndef ASH_SHELF_SHELF_UTIL_H_
6 #define ASH_SHELF_SHELF_UTIL_H_
8 #include "ash/ash_export.h"
9 #include "ash/shelf/shelf_item_types.h"
10 #include "base/strings/string16.h"
11 #include "ui/aura/window.h"
13 namespace aura {
14 class Window;
17 namespace ash {
19 // A property key to store the id of the ShelfItem associated with the window.
20 extern const aura::WindowProperty<ShelfID>* const kShelfID;
22 // A property key to store the resource id and title of the item shown on the
23 // shelf for this window.
24 extern const aura::WindowProperty<ShelfItemDetails*>* const
25 kShelfItemDetailsKey;
27 // Associates ShelfItem of |id| with specified |window|.
28 ASH_EXPORT void SetShelfIDForWindow(ShelfID id, aura::Window* window);
30 // Returns the id of the ShelfItem associated with the specified |window|,
31 // or 0 if there isn't one.
32 // Note: Window of a tabbed browser will return the |ShelfID| of the
33 // currently active tab.
34 ASH_EXPORT ShelfID GetShelfIDForWindow(const aura::Window* window);
36 // Creates a new ShelfItemDetails instance from |details| and sets it for
37 // |window|.
38 ASH_EXPORT void SetShelfItemDetailsForWindow(aura::Window* window,
39 const ShelfItemDetails& details);
41 // Creates a new ShelfItemDetails instance with type DIALOG, image id
42 // |image_resource_id|, and title |title|, and sets it for |window|.
43 ASH_EXPORT void SetShelfItemDetailsForDialogWindow(aura::Window* window,
44 int image_resource_id,
45 const base::string16& title);
47 // Clears ShelfItemDetails for |window|.
48 // If |window| has a ShelfItem by SetShelfItemDetailsForWindow(), it will
49 // be removed.
50 ASH_EXPORT void ClearShelfItemDetailsForWindow(aura::Window* window);
52 // Returns ShelfItemDetails for |window| or NULL if it doesn't have.
53 // Returned ShelfItemDetails object is owned by the |window|.
54 ASH_EXPORT const ShelfItemDetails* GetShelfItemDetailsForWindow(
55 aura::Window* window);
57 } // namespace ash
59 #endif // ASH_SHELF_SHELF_UTIL_H_