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
ash / wm / wm_default_layout_manager.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_WM_DEFAULT_LAYOUT_MANAGER_H_
#define ASH_WM_WM_DEFAULT_LAYOUT_MANAGER_H_
#include "ash/ash_export.h"
#include "ui/aura/layout_manager.h"
namespace ash {
// The default window layout manager used by ash.
class ASH_EXPORT WmDefaultLayoutManager : public aura::LayoutManager {
public:
WmDefaultLayoutManager();
WmDefaultLayoutManager(const WmDefaultLayoutManager&) = delete;
WmDefaultLayoutManager& operator=(const WmDefaultLayoutManager&) = delete;
~WmDefaultLayoutManager() override;
protected:
// Overridden from aura::LayoutManager:
void OnWindowResized() override;
void OnWindowAddedToLayout(aura::Window* child) override;
void OnWillRemoveWindowFromLayout(aura::Window* child) override;
void OnWindowRemovedFromLayout(aura::Window* child) override;
void OnChildWindowVisibilityChanged(aura::Window* child,
bool visible) override;
void SetChildBounds(aura::Window* child,
const gfx::Rect& requested_bounds) override;
};
} // namespace ash
#endif // ASH_WM_WM_DEFAULT_LAYOUT_MANAGER_H_