Home
last modified time | relevance | path

Searched refs:touchHotAreas_ (Results 1 - 21 of 21) sorted by relevance

/foundation/barrierfree/accessibility/frameworks/common/src/
H A Daccessibility_window_info.cpp235 touchHotAreas_ = touchHotAreas; in SetTouchHotAreas()
236 HILOG_DEBUG("set touchHotAreas_ size(%{public}zu)", touchHotAreas_.size()); in SetTouchHotAreas()
241 HILOG_DEBUG("get touchHotAreas_size(%{public}zu)", touchHotAreas_.size()); in GetTouchHotAreas()
242 return touchHotAreas_; in GetTouchHotAreas()
/foundation/window/window_manager/utils/src/
H A Daccessibility_window_info.cpp27 auto touchHotAreas = touchHotAreas_; in Marshalling()
74 info->touchHotAreas_.push_back({.posX_ = parcel.ReadInt32(), .posY_ = parcel.ReadInt32(), in Unmarshalling()
H A Dwindow_property.cpp566 touchHotAreas_ = rects; in SetTouchHotAreas()
571 rects = touchHotAreas_; in GetTouchHotAreas()
646 auto size = touchHotAreas_.size(); in MarshallingTouchHotAreas()
650 for (const auto& rect : touchHotAreas_) { in MarshallingTouchHotAreas()
666 property->touchHotAreas_.emplace_back( in UnmarshallingTouchHotAreas()
998 touchHotAreas_ = property->touchHotAreas_; in CopyFrom()
/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/
H A Daccessibility_window_info.h287 * @param touchHotAreas_ WMS touch hot areas
331 std::vector<Rect> touchHotAreas_ = {}; member in OHOS::Accessibility::AccessibilityWindowInfo
/foundation/barrierfree/accessibility/frameworks/common/test/mock/include/
H A Dmock_accessibility_window_info.h284 * @param touchHotAreas_ WMS touch hot areas
314 std::vector<Rect> touchHotAreas_ = {}; member in OHOS::Accessibility::MockAccessibilityWindowInfo
/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_test.cpp1177 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.size(), sceneSessionList.at(0)->GetTouchHotAreas().size()); in HWTEST_F()
1178 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.size(), 0); in HWTEST_F()
1208 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.size(), sceneSessionList.at(0)->GetTouchHotAreas().size()); in HWTEST_F()
1209 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.size(), 1); in HWTEST_F()
1216 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.at(0).posX_, rect.posX_); in HWTEST_F()
1217 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.at(0).posY_, rect.posY_); in HWTEST_F()
1218 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.at(0).width_, rect.width_); in HWTEST_F()
1219 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.at(0).height_, rect.height_); in HWTEST_F()
1252 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_.size(), sceneSessionList.at(0)->GetTouchHotAreas().size()); in HWTEST_F()
1253 ASSERT_EQ(accessibilityInfo.at(0)->touchHotAreas_ in HWTEST_F()
[all...]
H A Dsession_test.cpp1566 touchHotAreas = session_->property_->touchHotAreas_; in HWTEST_F()
1568 ASSERT_EQ(touchHotAreas, session_->property_->touchHotAreas_); in HWTEST_F()
H A Dwindow_session_property_test.cpp1054 property->touchHotAreas_.push_back(rect[i]); in HWTEST_F()
/foundation/window/window_manager/wmserver/src/
H A Dwindow_node.cpp180 touchHotAreas_ = rects; in SetTouchHotAreas()
382 rects = touchHotAreas_; in GetTouchHotAreas()
/foundation/window/window_manager/window_scene/common/src/
H A Dwindow_session_property.cpp576 if (GetPersistentId() != 0 && rects != touchHotAreas_) { in SetTouchHotAreas()
584 touchHotAreas_ = rects; in SetTouchHotAreas()
594 rects = touchHotAreas_; in GetTouchHotAreas()
697 auto size = touchHotAreas_.size(); in MarshallingTouchHotAreas()
704 for (const auto& rect : touchHotAreas_) { in MarshallingTouchHotAreas()
720 property->touchHotAreas_.emplace_back( in UnmarshallingTouchHotAreas()
1175 touchHotAreas_ = property->touchHotAreas_; in CopyFrom()
/foundation/window/window_manager/wmserver/include/
H A Dwindow_node.h176 std::vector<Rect> touchHotAreas_; // coordinates relative to display. member in OHOS::Rosen::WindowNode
/foundation/barrierfree/accessibility/services/aams/src/
H A Daccessibility_window_manager.cpp293 windowInfo->bundleName_.c_str(), windowInfo->touchHotAreas_.size()); in UpdateAccessibilityWindowInfo()
298 for (auto &rect : windowInfo->touchHotAreas_) { in UpdateAccessibilityWindowInfo()
594 windowInfo->touchHotAreas_.size() != accWindowInfo.GetTouchHotAreas().size()) { in EqualProperty()
599 if (CompareRect(accWindowInfo.GetTouchHotAreas()[i], windowInfo->touchHotAreas_[i])) { in EqualProperty()
/foundation/window/window_manager/utils/include/
H A Dwindow_property.h206 std::vector<Rect> touchHotAreas_; // coordinates relative to window. member in OHOS::Rosen::WindowProperty
/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h255 std::vector<Rect> touchHotAreas_; member in OHOS::Rosen::AccessibilityWindowInfo
/foundation/window/window_manager/utils/test/unittest/
H A Dwindow_property_test.cpp536 ASSERT_EQ(rects, winPropSrc.touchHotAreas_); in HWTEST_F()
/foundation/window/window_manager/window_scene/common/include/
H A Dwindow_session_property.h326 std::vector<Rect> touchHotAreas_; // coordinates relative to window. member in OHOS::Rosen::WindowSessionProperty
/foundation/barrierfree/accessibility/services/test/moduletest/aamstest/aams_accessibility_window_manager_test/
H A Daams_accessibility_window_manager_test.cpp929 rosen_winInfo_first->touchHotAreas_ = {Rosen::Rect{0, 0, 2, 2}, Rosen::Rect{2, 2, 4, 4}}; in HWTEST_F()
933 rosen_winInfo_second->touchHotAreas_ = {Rosen::Rect{0, 0, 3, 3}, Rosen::Rect{3, 3, 6, 6}}; in HWTEST_F()
/foundation/barrierfree/accessibility/services/aams/test/unittest/
H A Daccessibility_window_manager_test.cpp929 rosen_winInfo_first->touchHotAreas_ = {Rosen::Rect{0, 0, 2, 2}, Rosen::Rect{2, 2, 4, 4}}; in HWTEST_F()
933 rosen_winInfo_second->touchHotAreas_ = {Rosen::Rect{0, 0, 3, 3}, Rosen::Rect{3, 3, 6, 6}}; in HWTEST_F()
/foundation/window/window_manager/wm/src/
H A Dwindow_manager_lite.cpp215 for (const auto& rect : info->touchHotAreas_) { in NotifyAccessibilityWindowInfo()
H A Dwindow_manager.cpp210 for (const auto& rect : info->touchHotAreas_) { in NotifyAccessibilityWindowInfo()
/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscene_session_manager.cpp7374 info->touchHotAreas_ = sceneSession->GetTouchHotAreas(); in FillWindowInfo()
10339 for (const auto& rect : item->touchHotAreas_) { in NotifyAllAccessibilityInfo()

Completed in 47 milliseconds