blob: fbcdb1798cac02dff0dfc4106520bf07ad00be2b (
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
|
// Copyright (c) 2011 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.
#include "ui/aura_shell/desktop_layout_manager.h"
#include "ui/aura_shell/shelf_layout_controller.h"
#include "ui/aura/window.h"
#include "views/widget/widget.h"
namespace aura_shell {
namespace internal {
////////////////////////////////////////////////////////////////////////////////
// DesktopLayoutManager, public:
DesktopLayoutManager::DesktopLayoutManager(aura::Window* owner)
: owner_(owner),
background_widget_(NULL),
shelf_(NULL) {
}
DesktopLayoutManager::~DesktopLayoutManager() {
}
////////////////////////////////////////////////////////////////////////////////
// DesktopLayoutManager, aura::LayoutManager implementation:
void DesktopLayoutManager::OnWindowResized() {
gfx::Rect fullscreen_bounds =
gfx::Rect(owner_->bounds().width(), owner_->bounds().height());
aura::Window::Windows::const_iterator i;
for (i = owner_->children().begin(); i != owner_->children().end(); ++i)
(*i)->SetBounds(fullscreen_bounds);
background_widget_->SetBounds(fullscreen_bounds);
if (shelf_)
shelf_->LayoutShelf();
}
void DesktopLayoutManager::OnWindowAdded(aura::Window* child) {
}
void DesktopLayoutManager::OnWillRemoveWindow(aura::Window* child) {
}
void DesktopLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child,
bool visibile) {
}
void DesktopLayoutManager::SetChildBounds(aura::Window* child,
const gfx::Rect& requested_bounds) {
SetChildBoundsDirect(child, requested_bounds);
}
} // namespace internal
} // namespace aura_shell
|