Lines Matching refs:moveDragProperty_

118     moveDragProperty_ = new (std::nothrow) MoveDragProperty();
119 if (moveDragProperty_ == nullptr) {
2953 const auto& startRectExceptCorner = moveDragProperty_->startRectExceptCorner_;
2957 moveDragProperty_->dragType_ = DragType::DRAG_BOTTOM_OR_TOP;
2961 moveDragProperty_->dragType_ = DragType::DRAG_LEFT_OR_RIGHT;
2965 moveDragProperty_->dragType_ = DragType::DRAG_LEFT_TOP_CORNER;
2967 moveDragProperty_->dragType_ = DragType::DRAG_RIGHT_TOP_CORNER;
2980 auto& startRectExceptFrame = moveDragProperty_->startRectExceptFrame_;
2990 auto& startRectExceptCorner = moveDragProperty_->startRectExceptCorner_;
3014 startPointPosY, moveDragProperty_->startRectExceptFrame_)) ||
3016 startPointPosY, moveDragProperty_->startRectExceptCorner_))) {
3028 if (!moveDragProperty_->pointEventStarted_ || moveDragProperty_->startDragFlag_) {
3032 moveDragProperty_->startMoveFlag_ = true;
3034 property_, moveDragProperty_);
3043 moveDragProperty_->pointEventStarted_ = false;
3044 moveDragProperty_->startDragFlag_ = false;
3045 moveDragProperty_->startMoveFlag_ = false;
3052 if (moveDragProperty_->pointEventStarted_) {
3056 moveDragProperty_->startPointRect_ = GetRect();
3057 moveDragProperty_->startPointPosX_ = pointerItem.GetDisplayX();
3058 moveDragProperty_->startPointPosY_ = pointerItem.GetDisplayY();
3059 moveDragProperty_->startPointerId_ = pointerEvent->GetPointerId();
3060 moveDragProperty_->targetDisplayId_ = pointerEvent->GetTargetDisplayId();
3061 moveDragProperty_->sourceType_ = pointerEvent->GetSourceType();
3062 moveDragProperty_->pointEventStarted_ = true;
3066 SingletonContainer::Get<DisplayManager>().GetDisplayById(moveDragProperty_->targetDisplayId_);
3069 moveDragProperty_->targetDisplayId_, property_->GetWindowId());
3075 moveDragProperty_->targetDisplayId_, property_->GetWindowId());
3079 int32_t startPointPosX = moveDragProperty_->startPointPosX_ + displayInfo->GetOffsetX();
3080 int32_t startPointPosY = moveDragProperty_->startPointPosY_ + displayInfo->GetOffsetY();
3085 moveDragProperty_->startMoveFlag_ = true;
3087 property_, moveDragProperty_);
3088 } else if (IsPointInDragHotZone(startPointPosX, startPointPosY, moveDragProperty_->sourceType_)
3090 moveDragProperty_->startDragFlag_ = true;
3093 property_, moveDragProperty_);
3100 if (pointId != moveDragProperty_->startPointerId_ || sourceType != moveDragProperty_->sourceType_) {
3104 if (moveDragProperty_->startDragFlag_) {
3106 moveDragProperty_->startDragFlag_ = false;
3109 if (moveDragProperty_->startMoveFlag_) {
3111 moveDragProperty_->startMoveFlag_ = false;
3114 moveDragProperty_->pointEventStarted_ = false;
3145 "%{public}u]", GetWindowId(), pointId, sourceType, moveDragProperty_->pointEventStarted_,
3146 moveDragProperty_->startMoveFlag_, moveDragProperty_->startDragFlag_, targetDisplayId,
3157 moveDragProperty_->startMoveFlag_, moveDragProperty_->startDragFlag_);
3167 return moveDragProperty_->startDragFlag_ || moveDragProperty_->startMoveFlag_;
3205 return STYLEID_MAP.at(moveDragProperty_->dragType_);