Home
last modified time | relevance | path

Searched refs:WindowProperty (Results 1 - 25 of 91) sorted by relevance

1234

/foundation/window/window_manager/utils/src/
H A Dwindow_property.cpp26 WindowProperty::WindowProperty(const sptr<WindowProperty>& property) in WindowProperty() function in OHOS::Rosen::WindowProperty
31 void WindowProperty::SetWindowName(const std::string& name) in SetWindowName()
36 void WindowProperty::SetAbilityInfo(const AbilityInfo& info) in SetAbilityInfo()
41 void WindowProperty::SetWindowRect(const struct Rect& rect) in SetWindowRect()
47 void WindowProperty::SetDecoStatus(bool decoStatus) in SetDecoStatus()
52 void WindowProperty::SetRequestRect(const Rect& requestRect) in SetRequestRect()
57 void WindowProperty::SetWindowType(WindowType type) in SetWindowType()
62 void WindowProperty
[all...]
/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_pair_test.cpp71 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
94 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
125 sptr<WindowProperty> property1 = new WindowProperty(); in HWTEST_F()
127 sptr<WindowProperty> property2 = new WindowProperty(); in HWTEST_F()
146 sptr<WindowProperty> property1 = new WindowProperty(); in HWTEST_F()
[all...]
H A Dwindow_controller_test.cpp255 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
258 sptr<WindowProperty> property2 = new WindowProperty(); in HWTEST_F()
262 sptr<WindowProperty> property3 = new WindowProperty(); in HWTEST_F()
339 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
614 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
[all...]
H A Dwindow_node_container_test.cpp77 sptr<WindowProperty> CreateWindowProperty(uint32_t windowId, const std::string& windowName, in CreateWindowProperty()
80 sptr<WindowProperty> property = new WindowProperty(); in CreateWindowProperty()
106 sptr<WindowProperty> parentProperty = CreateWindowProperty(110u, "test1", in HWTEST_F()
111 sptr<WindowProperty> subProperty = CreateWindowProperty(111u, "test2", in HWTEST_F()
126 sptr<WindowProperty> parentProperty = CreateWindowProperty(110u, "test1", in HWTEST_F()
130 sptr<WindowProperty> subProperty = CreateWindowProperty(111u, "test2", in HWTEST_F()
144 sptr<WindowProperty> subProperty = CreateWindowProperty(110u, "test1", in HWTEST_F()
162 sptr<WindowProperty> property1 = CreateWindowProperty(110u, "test1", in HWTEST_F()
166 sptr<WindowProperty> property in HWTEST_F()
[all...]
H A Dwindow_system_effect_test.cpp35 sptr<WindowProperty> CreateWindowProperty();
89 sptr<WindowProperty> WindowSystemEffectTest::CreateWindowProperty() in CreateWindowProperty()
91 sptr<WindowProperty> property = new WindowProperty(); in CreateWindowProperty()
H A Davoid_area_controller_test.cpp113 sptr<WindowProperty> GetWindowProperty() override
175 sptr<WindowProperty> statusbarProperty = new WindowProperty(); in SetUpTestCase()
184 sptr<WindowProperty> navigationBarProperty = new WindowProperty(); in SetUpTestCase()
193 sptr<WindowProperty> keyboardProperty = new WindowProperty(); in SetUpTestCase()
222 sptr<WindowProperty> createWindowProperty(uint32_t windowId, const std::string& windowName, in createWindowProperty()
225 sptr<WindowProperty> property = new WindowProperty(); in createWindowProperty()
[all...]
H A Dstarting_window_test.cpp39 sptr<WindowProperty> CreateWindowProperty();
105 sptr<WindowProperty> StartingWindowTest::CreateWindowProperty() in CreateWindowProperty()
107 sptr<WindowProperty> property = new WindowProperty(); in CreateWindowProperty()
301 sptr<WindowProperty> windowProperty = new WindowProperty(); in HWTEST_F()
325 sptr<WindowProperty> windowProperty = new WindowProperty(); in HWTEST_F()
342 sptr<WindowProperty> windowProperty = new WindowProperty(); in HWTEST_F()
[all...]
H A Dwindow_manager_stub_impl.h25 WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property, in CreateWindow()
31 WMError AddWindow(sptr<WindowProperty>& property) in AddWindow()
56 void NotifyServerReadyToMoveOrDrag(uint32_t windowId, sptr<WindowProperty>& windowProperty, in NotifyServerReadyToMoveOrDrag()
72 WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action, in UpdateProperty()
H A Dwindow_manager_service_test.cpp220 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
232 sptr<WindowProperty> property = nullptr; in HWTEST_F()
278 sptr<WindowProperty> windowProperty = nullptr; in HWTEST_F()
305 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
699 sptr<WindowProperty> windowProperty; in HWTEST_F()
1085 sptr<WindowProperty> property = new WindowProperty(); in HWTEST_F()
1111 sptr<WindowProperty> propert in HWTEST_F()
[all...]
/foundation/window/window_manager/utils/test/unittest/
H A Dwindow_property_test.cpp58 WindowProperty winPropSrc; in HWTEST_F()
65 WindowProperty* winPropDst = winPropSrc.Unmarshalling(parcel); in HWTEST_F()
80 const sptr<WindowProperty> winPropSrc = new(std::nothrow) WindowProperty(); in HWTEST_F()
85 WindowProperty winPropDst(winPropSrc); // winPropDst.CopyFrom(winPropSrc); in HWTEST_F()
99 WindowProperty winPropSrc; in HWTEST_F()
106 WindowProperty winPropDst; in HWTEST_F()
137 WindowProperty winPropDst; in HWTEST_F()
162 WindowProperty winPropDst; in HWTEST_F()
178 WindowProperty winPropDs in HWTEST_F()
[all...]
/foundation/window/window_manager/utils/include/
H A Dwindow_property.h32 class WindowProperty : public Parcelable { class
34 WindowProperty() = default;
35 explicit WindowProperty(const sptr<WindowProperty>& property);
36 ~WindowProperty() = default;
38 void CopyFrom(const sptr<WindowProperty>& property);
145 static WindowProperty* Unmarshalling(Parcel& parcel);
158 static void MapUnmarshalling(Parcel& parcel, WindowProperty* property);
160 static void UnmarshallingTouchHotAreas(Parcel& parcel, WindowProperty* property);
162 static void UnmarshallingTransform(Parcel& parcel, WindowProperty* propert
[all...]
/foundation/window/window_manager/wmserver/include/
H A Dwindow_node.h35 WindowNode(const sptr<WindowProperty>& property, const sptr<IWindow>& window, in WindowNode()
43 WindowNode(const sptr<WindowProperty>& property, const sptr<IWindow>& window, in WindowNode()
52 WindowNode() : property_(new WindowProperty()) in WindowNode()
55 explicit WindowNode(const sptr<WindowProperty>& property) : property_(property) in WindowNode()
67 void SetWindowProperty(const sptr<WindowProperty>& property);
117 const sptr<WindowProperty>& GetWindowProperty() const;
172 sptr<WindowProperty> property_ = nullptr;
H A Ddrag_controller.h66 MoveDragController() : windowProperty_(new WindowProperty()), moveDragProperty_(new MoveDragProperty()) in MoveDragController()
75 void HandleReadyToMoveOrDrag(uint32_t windowId, sptr<WindowProperty>& windowProperty,
87 void SetWindowProperty(const sptr<WindowProperty>& windowProperty);
90 const sptr<WindowProperty>& GetWindowProperty() const;
104 sptr<WindowProperty> windowProperty_;
H A Dstarting_window.h38 uint32_t& windowId, const std::shared_ptr<RSSurfaceNode>& surfaceNode, sptr<WindowProperty>& property,
53 const Orientation orientation, sptr<WindowProperty>& property);
58 static sptr<WindowProperty> InitializeWindowProperty(const sptr<WindowTransitionInfo>& info, uint32_t winId);
/foundation/window/window_manager/test/common/mock/
H A Dmock_window_adapter.h26 MOCK_METHOD5(CreateWindow, WMError(sptr<IWindow>& window, sptr<WindowProperty>& windowProperty,
28 MOCK_METHOD1(AddWindow, WMError(sptr<WindowProperty>& windowProperty));
32 MOCK_METHOD2(UpdateProperty, WMError(sptr<WindowProperty>& windowProperty, PropertyChangeAction action));
44 MOCK_METHOD3(NotifyServerReadyToMoveOrDrag, void(uint32_t windowId, sptr<WindowProperty>& windowProperty,
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/2.0/include/
H A Dscreenregion.h52 std::shared_ptr<WindowProperty> GetWindowProperty();
63 const int32_t &windowId, std::shared_ptr<WindowProperty> windowProperty);
76 std::shared_ptr<WindowProperty> windowProperty_ = nullptr;
/foundation/window/window_manager/wmserver/include/zidl/
H A Dwindow_manager_proxy.h32 WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property,
35 WMError AddWindow(sptr<WindowProperty>& property) override;
43 void NotifyServerReadyToMoveOrDrag(uint32_t windowId, sptr<WindowProperty>& windowProperty,
50 WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action,
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/include/
H A Drtsp_param_info.h90 const WindowProperty &GetWindowProperty();
91 void SetWindowProperty(WindowProperty &windowProperty);
125 WindowProperty windowProperty_{};
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/include/
H A Drtsp_param_info.h90 const WindowProperty &GetWindowProperty();
91 void SetWindowProperty(WindowProperty &windowProperty);
125 WindowProperty windowProperty_{};
/foundation/window/window_manager/window_scene/test/unittest/
H A Dsub_session_lifecycle_test.cpp203 sptr<WindowProperty> winPropSrc = new (std::nothrow) WindowProperty(); in HWTEST_F()
246 sptr<WindowProperty> winPropSrc = new (std::nothrow) WindowProperty(); in HWTEST_F()
268 sptr<WindowProperty> winPropSrc = new (std::nothrow) WindowProperty(); in HWTEST_F()
/foundation/CastEngine/castengine_cast_plus_stream/src/rtsp/src/
H A Drtsp_param_info.cpp84 const WindowProperty &ParamInfo::GetWindowProperty() in GetWindowProperty()
89 void ParamInfo::SetWindowProperty(WindowProperty &windowProperty) in SetWindowProperty()
/foundation/CastEngine/castengine_cast_framework/service/src/session/src/rtsp/src/
H A Drtsp_param_info.cpp84 const WindowProperty &ParamInfo::GetWindowProperty() in GetWindowProperty()
89 void ParamInfo::SetWindowProperty(WindowProperty &windowProperty) in SetWindowProperty()
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/1.0/include/
H A Dscreenregion.h58 std::shared_ptr<WindowProperty> GetWindowProperty();
71 std::shared_ptr<WindowProperty> windowProperty_ = nullptr;
/foundation/distributedhardware/distributed_screen/services/screenservice/sinkservice/screenregionmgr/1.0/src/
H A Dscreenregion.cpp88 std::shared_ptr<WindowProperty> ScreenRegion::GetWindowProperty() in GetWindowProperty()
96 std::shared_ptr<WindowProperty> windowProperty = std::make_shared<WindowProperty>(); in SetUpWindow()
/foundation/distributedhardware/distributed_screen/services/screenclient/include/
H A Dscreen_client_common.h21 struct WindowProperty { struct

Completed in 16 milliseconds

1234