Home
last modified time | relevance | path

Searched refs:WindowProperty (Results 1 – 25 of 27) sorted by relevance

12

/foundation/windowmanager/utils/src/
Dwindow_property.cpp22 WindowProperty::WindowProperty(const sptr<WindowProperty>& property) in WindowProperty() function in OHOS::Rosen::WindowProperty
27 void WindowProperty::SetWindowName(const std::string& name) in SetWindowName()
32 void WindowProperty::SetWindowRect(const struct Rect& rect) in SetWindowRect()
37 void WindowProperty::SetWindowType(WindowType type) in SetWindowType()
42 void WindowProperty::SetWindowMode(WindowMode mode) in SetWindowMode()
53 void WindowProperty::SetLastWindowMode(WindowMode mode) in SetLastWindowMode()
58 void WindowProperty::SetWindowBackgroundBlur(WindowBlurLevel level) in SetWindowBackgroundBlur()
66 void WindowProperty::SetFullScreen(bool isFullScreen) in SetFullScreen()
71 void WindowProperty::SetFocusable(bool isFocusable) in SetFocusable()
76 void WindowProperty::SetTouchable(bool isTouchable) in SetTouchable()
[all …]
/foundation/windowmanager/wm/test/unittest/
Davoid_area_controller_test.cpp96 sptr<WindowProperty> property = new WindowProperty();
114 sptr<WindowProperty> property = new WindowProperty();
131 sptr<WindowProperty> property = new WindowProperty();
159 sptr<WindowProperty> property = new WindowProperty();
179 sptr<WindowProperty> property1 = new WindowProperty();
188 sptr<WindowProperty> property2 = new WindowProperty();
207 sptr<WindowProperty> property1 = new WindowProperty();
215 sptr<WindowProperty> property2 = new WindowProperty();
245 sptr<WindowProperty> property1 = new WindowProperty();
265 sptr<WindowProperty> property = new WindowProperty();
[all …]
Dmock_window_adapter.h26 MOCK_METHOD4(CreateWindow, WMError(sptr<IWindow>& window, sptr<WindowProperty>& windowProperty,
28 MOCK_METHOD1(AddWindow, WMError(sptr<WindowProperty>& windowProperty));
35 …MOCK_METHOD2(UpdateProperty, WMError(sptr<WindowProperty>& windowProperty, PropertyChangeAction ac…
/foundation/windowmanager/utils/include/
Dwindow_property.h30 class WindowProperty : public Parcelable {
32 WindowProperty() = default;
33 WindowProperty(const sptr<WindowProperty>& property);
34 ~WindowProperty() = default;
36 void CopyFrom(const sptr<WindowProperty>& property);
94 static sptr<WindowProperty> Unmarshalling(Parcel& parcel);
97 static void MapUnmarshalling(Parcel& parcel, sptr<WindowProperty>& property);
/foundation/distributedhardware/distributedscreen/services/screenclient/test/unittest/src/
Dscreen_client_test.cpp53 std::shared_ptr<WindowProperty> windowProperty = std::make_shared<WindowProperty>();
68 std::shared_ptr<WindowProperty> windowProperty = nullptr;
81 std::shared_ptr<WindowProperty> windowProperty = std::make_shared<WindowProperty>();
164 std::shared_ptr<WindowProperty> windowProperty = std::make_shared<WindowProperty>();
Dscreen_client_window_adapter_test.cpp40 std::shared_ptr<WindowProperty> windowProperty = nullptr;
54 std::shared_ptr<WindowProperty> windowProperty = std::make_shared<WindowProperty>();
/foundation/windowmanager/wmserver/include/
Dwindow_node.h30 WindowNode(const sptr<WindowProperty>& property, const sptr<IWindow>& window, in WindowNode()
37 WindowNode() : property_(new WindowProperty()) in WindowNode()
48 void SetWindowProperty(const sptr<WindowProperty>& property);
78 const sptr<WindowProperty>& GetWindowProperty() const;
100 sptr<WindowProperty> property_;
Dwindow_manager_service.h50 WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property,
52 WMError AddWindow(sptr<WindowProperty>& property) override;
66 …WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action) override;
Dwindow_controller.h33 WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property,
35 WMError AddWindowNode(sptr<WindowProperty>& property);
50 WMError UpdateProperty(sptr<WindowProperty>& property, PropertyChangeAction action);
/foundation/windowmanager/wmserver/src/zidl/
Dwindow_manager_stub.cpp38 sptr<WindowProperty> windowProperty = data.ReadStrongParcelable<WindowProperty>(); in OnRemoteRequest()
47 sptr<WindowProperty> windowProperty = data.ReadStrongParcelable<WindowProperty>(); in OnRemoteRequest()
158 sptr<WindowProperty> windowProperty = data.ReadStrongParcelable<WindowProperty>(); in OnRemoteRequest()
Dwindow_manager_proxy.cpp27 WMError WindowManagerProxy::CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property, in CreateWindow()
61 WMError WindowManagerProxy::AddWindow(sptr<WindowProperty>& property) in AddWindow()
424 WMError WindowManagerProxy::UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeActi… in UpdateProperty()
/foundation/windowmanager/wmserver/include/zidl/
Dwindow_manager_proxy.h30 WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property,
32 WMError AddWindow(sptr<WindowProperty>& property) override;
46 …WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action) override;
Dwindow_manager_interface.h53 virtual WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property,
55 virtual WMError AddWindow(sptr<WindowProperty>& property) = 0;
69 …virtual WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action) …
/foundation/windowmanager/wm/include/
Dwindow_adapter.h38 virtual WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& windowProperty,
40 virtual WMError AddWindow(sptr<WindowProperty>& windowProperty);
54 … virtual WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action);
/foundation/distributedhardware/distributedscreen/services/screenclient/include/
Dscreen_client_common.h21 struct WindowProperty { struct
Dscreen_client.h38 int32_t AddWindow(std::shared_ptr<WindowProperty> windowProperty);
Dscreen_client_window_adapter.h38 sptr<Surface> CreateWindow(std::shared_ptr<WindowProperty> windowProperty, int32_t windowId);
/foundation/windowmanager/wm/src/
Dwindow_adapter.cpp44 WMError WindowAdapter::CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& windowProperty, in CreateWindow()
52 WMError WindowAdapter::AddWindow(sptr<WindowProperty>& windowProperty) in AddWindow()
221 WMError WindowAdapter::UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction ac… in UpdateProperty()
/foundation/distributedhardware/distributedscreen/services/screenservice/sinkservice/screenregionmgr/src/
Dscreenregion.cpp80 std::shared_ptr<WindowProperty> windowProperty = std::make_shared<WindowProperty>(); in SetUp()
/foundation/windowmanager/wmserver/src/
Dwindow_node.cpp46 void WindowNode::SetWindowProperty(const sptr<WindowProperty>& property) in SetWindowProperty()
230 const sptr<WindowProperty>& WindowNode::GetWindowProperty() const in GetWindowProperty()
Dwindow_manager_service.cpp112 WMError WindowManagerService::CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property, in CreateWindow()
128 WMError WindowManagerService::AddWindow(sptr<WindowProperty>& property) in AddWindow()
291 WMError WindowManagerService::UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAc… in UpdateProperty()
Dwindow_controller.cpp35 WMError WindowController::CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property, in CreateWindow()
44 sptr<WindowProperty> windowProperty = new WindowProperty(property); in CreateWindow()
62 WMError WindowController::AddWindowNode(sptr<WindowProperty>& property) in AddWindowNode()
578 WMError WindowController::UpdateProperty(sptr<WindowProperty>& property, PropertyChangeAction actio… in UpdateProperty()
Ddrag_controller.cpp135 sptr<WindowProperty> property = windowNode->GetWindowProperty(); in GetHitPoint()
/foundation/distributedhardware/distributedscreen/services/screenclient/src/
Dscreen_client.cpp45 int32_t ScreenClient::AddWindow(std::shared_ptr<WindowProperty> windowProperty) in AddWindow()
Dscreen_client_window_adapter.cpp51 sptr<Surface> ScreenClientWindowAdapter::CreateWindow(std::shared_ptr<WindowProperty> windowPropert… in CreateWindow()

12