blob: 9af34bbdd6eaba592820ebaeecf36a15f3332bb6 (
plain)
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
|
// Copyright (c) 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 ASH_LAUNCHER_LAUNCHER_H_
#define ASH_LAUNCHER_LAUNCHER_H_
#pragma once
#include "ash/ash_export.h"
#include "ash/launcher/background_animator.h"
#include "ash/launcher/launcher_types.h"
#include "ash/wm/shelf_auto_hide_behavior.h"
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "ui/gfx/size.h"
namespace aura {
class Window;
}
namespace gfx {
class Rect;
}
namespace views {
class View;
class Widget;
}
namespace ash {
namespace internal {
class FocusCycler;
class LauncherView;
}
class LauncherIconObserver;
class LauncherDelegate;
class LauncherModel;
class ASH_EXPORT Launcher : public internal::BackgroundAnimatorDelegate {
public:
explicit Launcher(aura::Window* window_container);
virtual ~Launcher();
// Sets the focus cycler. Also adds the launcher to the cycle.
void SetFocusCycler(internal::FocusCycler* focus_cycler);
internal::FocusCycler* GetFocusCycler();
void SetAlignment(ShelfAlignment alignment);
ShelfAlignment alignment() const { return alignment_; }
// Sets whether the launcher paints a background. Default is false, but is set
// to true if a window overlaps the shelf.
void SetPaintsBackground(
bool value,
internal::BackgroundAnimator::ChangeType change_type);
// Sets the size of the status area.
void SetStatusSize(const gfx::Size& size);
const gfx::Size& status_size() const { return status_size_; }
// Returns the screen bounds of the item for the specified window. If there is
// no item for the specified window an empty rect is returned.
gfx::Rect GetScreenBoundsOfItemIconForWindow(aura::Window* window);
// Activates the the launcher item specified by the index in the list
// of launcher items.
void ActivateLauncherItem(int index);
// Cycles the window focus linearly over the current launcher items.
void CycleWindowLinear(CycleDirection direction);
void AddIconObserver(LauncherIconObserver* observer);
void RemoveIconObserver(LauncherIconObserver* observer);
// Returns true if the Launcher is showing a context menu.
bool IsShowingMenu() const;
views::View* GetAppListButtonView() const;
// Only to be called for testing. Retrieves the LauncherView.
// TODO(sky): remove this!
internal::LauncherView* GetLauncherViewForTest();
LauncherDelegate* delegate() { return delegate_.get(); }
LauncherModel* model() { return model_.get(); }
views::Widget* widget() { return widget_.get(); }
aura::Window* window_container() { return window_container_; }
// BackgroundAnimatorDelegate overrides:
virtual void UpdateBackground(int alpha) OVERRIDE;
private:
class DelegateView;
scoped_ptr<LauncherModel> model_;
// Widget hosting the view.
scoped_ptr<views::Widget> widget_;
aura::Window* window_container_;
// Contents view of the widget. Houses the LauncherView.
DelegateView* delegate_view_;
// LauncherView used to display icons.
internal::LauncherView* launcher_view_;
ShelfAlignment alignment_;
scoped_ptr<LauncherDelegate> delegate_;
// Size reserved for the status area.
gfx::Size status_size_;
// Used to animate the background.
internal::BackgroundAnimator background_animator_;
DISALLOW_COPY_AND_ASSIGN(Launcher);
};
} // namespace ash
#endif // ASH_LAUNCHER_LAUNCHER_H_
|