blob: 5fa4931b3b3532424b53fa92072b89428d44b2c6 (
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
|
// Copyright 2015 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 "mash/wm/property_util.h"
#include <stdint.h>
#include "components/mus/public/cpp/property_type_converters.h"
#include "components/mus/public/cpp/window_property.h"
#include "mash/wm/shadow.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/size.h"
namespace mash {
namespace wm {
namespace {
MUS_DEFINE_LOCAL_WINDOW_PROPERTY_KEY(Shadow*, kLocalShadowProperty, nullptr);
} // namespace
mus::mojom::ShowState GetWindowShowState(const mus::Window* window) {
if (window->HasSharedProperty(
mus::mojom::WindowManager::kShowState_Property)) {
return static_cast<mus::mojom::ShowState>(
window->GetSharedProperty<int32_t>(
mus::mojom::WindowManager::kShowState_Property));
}
return mus::mojom::ShowState::RESTORED;
}
void SetWindowUserSetBounds(mus::Window* window, const gfx::Rect& bounds) {
if (bounds.IsEmpty()) {
window->ClearSharedProperty(
mus::mojom::WindowManager::kUserSetBounds_Property);
} else {
window->SetSharedProperty<gfx::Rect>(
mus::mojom::WindowManager::kUserSetBounds_Property, bounds);
}
}
gfx::Rect GetWindowUserSetBounds(const mus::Window* window) {
if (window->HasSharedProperty(
mus::mojom::WindowManager::kUserSetBounds_Property)) {
return window->GetSharedProperty<gfx::Rect>(
mus::mojom::WindowManager::kUserSetBounds_Property);
}
return gfx::Rect();
}
void SetWindowPreferredSize(mus::Window* window, const gfx::Size& size) {
window->SetSharedProperty<gfx::Size>(
mus::mojom::WindowManager::kPreferredSize_Property, size);
}
gfx::Size GetWindowPreferredSize(const mus::Window* window) {
if (window->HasSharedProperty(
mus::mojom::WindowManager::kPreferredSize_Property)) {
return window->GetSharedProperty<gfx::Size>(
mus::mojom::WindowManager::kPreferredSize_Property);
}
return gfx::Size();
}
mojom::Container GetRequestedContainer(const mus::Window* window) {
if (window->HasSharedProperty(mojom::kWindowContainer_Property)) {
return static_cast<mojom::Container>(
window->GetSharedProperty<int32_t>(mojom::kWindowContainer_Property));
}
return mojom::Container::USER_WINDOWS;
}
int32_t GetResizeBehavior(const mus::Window* window) {
if (window->HasSharedProperty(
mus::mojom::WindowManager::kResizeBehavior_Property)) {
return window->GetSharedProperty<int32_t>(
mus::mojom::WindowManager::kResizeBehavior_Property);
}
return mus::mojom::kResizeBehaviorNone;
}
void SetRestoreBounds(mus::Window* window, const gfx::Rect& bounds) {
window->SetSharedProperty<gfx::Rect>(
mus::mojom::WindowManager::kRestoreBounds_Property, bounds);
}
gfx::Rect GetRestoreBounds(const mus::Window* window) {
if (window->HasSharedProperty(
mus::mojom::WindowManager::kRestoreBounds_Property)) {
return window->GetSharedProperty<gfx::Rect>(
mus::mojom::WindowManager::kRestoreBounds_Property);
}
return gfx::Rect();
}
void SetShadow(mus::Window* window, Shadow* shadow) {
window->SetLocalProperty(kLocalShadowProperty, shadow);
}
Shadow* GetShadow(mus::Window* window) {
return window->GetLocalProperty(kLocalShadowProperty);
}
mus::mojom::WindowType GetWindowType(mus::Window* window) {
return GetWindowType(window->shared_properties());
}
mus::mojom::WindowType GetWindowType(
const mus::Window::SharedProperties& properties) {
const auto iter =
properties.find(mus::mojom::WindowManager::kWindowType_Property);
if (iter != properties.end()) {
return static_cast<mus::mojom::WindowType>(
mojo::TypeConverter<int32_t, const std::vector<uint8_t>>::Convert(
iter->second));
}
return mus::mojom::WindowType::POPUP;
}
} // namespace wm
} // namespace mash
|