Home
last modified time | relevance | path

Searched refs:LiteWindow (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/window/window_manager_lite/services/wms/
H A Dlite_wm.h69 void UpdateWindowRegion(const LiteWindow* window, const Rect& rect);
70 …void CalculateUpdateRegion(const ListNode<LiteWindow*>* winNode, int16_t x1, int16_t y1, int16_t x…
72 …void DrawRegion(const ListNode<LiteWindow *>* winNode, int16_t x1, int16_t y1, int16_t x2, int16_t…
76 LiteWindow* CreateWindow(const LiteWinConfig& config, pid_t pid);
78 LiteWindow* GetWindowById(int32_t id);
79 ListNode<LiteWindow*>* GetWindowNodeById(int32_t id);
80 LiteWindow* FindTargetWindow(const RawEvent& event);
113 void SetEventData(const LiteWindow* window, const RawEvent& event) in SetEventData()
129 List<LiteWindow*> winList_;
H A Dlite_win.cpp49 LiteWindow::LiteWindow(const LiteWinConfig& config) in LiteWindow() function in OHOS::LiteWindow
57 LiteWindow::~LiteWindow() in ~LiteWindow()
77 bool LiteWindow::CreateSurface() in CreateSurface()
97 void LiteWindow::ReleaseSurface() in ReleaseSurface()
101 void LiteWindow::ResizeSurface(int16_t width, int16_t height) in ResizeSurface()
115 void LiteWindow::Update(Rect rect) in Update()
120 void LiteWindow::UpdateBackBuf() in UpdateBackBuf()
228 void LiteWindow::Flush(const Rect& srcRect, const LiteSurfaceData* layerData, int16_t dx, int16_t d… in Flush()
259 Surface* LiteWindow::GetSurface() in GetSurface()
264 void LiteWindow::MoveTo(int16_t x, int16_t y) in MoveTo()
[all …]
H A Dlite_wm.cpp175 LiteWindow* window = GetWindowById(id); in GetSurface()
185 LiteWindow* window = GetWindowById(id); in Show()
195 LiteWindow* window = GetWindowById(id); in Hide()
290 LiteWindow* ret = nullptr; in GetWindowById()
308 ListNode<LiteWindow*>* ret = nullptr; in GetWindowNodeById()
334 LiteWindow* window = new LiteWindow(config); in CreateWindow()
354 LiteWindow* window = node->data_; in RemoveWindow()
425 LiteWindow* window = winNode->data_; in CalculateUpdateRegion()
519 LiteWindow* window = winNode->data_; in DrawRegion()
627 LiteWindow* targetWindow = nullptr; in FindTargetWindow()
[all …]
H A Dlite_win.h30 class LiteWindow {
33 explicit LiteWindow(const LiteWinConfig& config);
34 virtual ~LiteWindow();
H A Dlite_wms.cpp84 LiteWindow* window = reinterpret_cast<LiteWindow*>(option.args); in SurfaceRequestHandler()
101 LiteWindow* window = LiteWM::GetInstance()->GetWindowById(id); in GetSurface()
192 LiteWindow* window = LiteWM::GetInstance()->CreateWindow(*config, pid); in CreateWindow()