Lines Matching refs:property

26 WindowProperty::WindowProperty(const sptr<WindowProperty>& property)  in WindowProperty()  argument
28 CopyFrom(property); in WindowProperty()
279 void WindowProperty::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() argument
282 sysBarPropMap_[type] = property; in SetSystemBarProperty()
631 void WindowProperty::MapUnmarshalling(Parcel& parcel, WindowProperty* property) in MapUnmarshalling() argument
640 property->SetSystemBarProperty(type, prop); in MapUnmarshalling()
659 void WindowProperty::UnmarshallingTouchHotAreas(Parcel& parcel, WindowProperty* property) in UnmarshallingTouchHotAreas() argument
666 property->touchHotAreas_.emplace_back( in UnmarshallingTouchHotAreas()
680 void WindowProperty::UnmarshallingTransform(Parcel& parcel, WindowProperty* property) in UnmarshallingTransform() argument
693 property->SetTransform(trans); in UnmarshallingTransform()
707 void WindowProperty::UnmarshallingWindowSizeLimits(Parcel& parcel, WindowProperty* property) in UnmarshallingWindowSizeLimits() argument
711 property->SetSizeLimits(sizeLimits); in UnmarshallingWindowSizeLimits()
745 WindowProperty* property = new(std::nothrow) WindowProperty(); in Unmarshalling() local
746 if (property == nullptr) { in Unmarshalling()
749 property->SetWindowName(parcel.ReadString()); in Unmarshalling()
751 property->SetWindowRect(rect); in Unmarshalling()
753 property->SetRequestRect(reqRect); in Unmarshalling()
754 property->SetDecoStatus(parcel.ReadBool()); in Unmarshalling()
755 property->SetWindowType(static_cast<WindowType>(parcel.ReadUint32())); in Unmarshalling()
756 property->SetWindowMode(static_cast<WindowMode>(parcel.ReadUint32())); in Unmarshalling()
757 property->SetLastWindowMode(static_cast<WindowMode>(parcel.ReadUint32())); in Unmarshalling()
758 property->SetWindowFlags(parcel.ReadUint32()); in Unmarshalling()
759 property->SetFullScreen(parcel.ReadBool()); in Unmarshalling()
760 property->SetFocusable(parcel.ReadBool()); in Unmarshalling()
761 property->SetTouchable(parcel.ReadBool()); in Unmarshalling()
762 property->SetPrivacyMode(parcel.ReadBool()); in Unmarshalling()
763 property->SetTransparent(parcel.ReadBool()); in Unmarshalling()
764 property->SetAlpha(parcel.ReadFloat()); in Unmarshalling()
765 property->SetBrightness(parcel.ReadFloat()); in Unmarshalling()
766 property->SetDisplayId(parcel.ReadUint64()); in Unmarshalling()
767 property->SetWindowId(parcel.ReadUint32()); in Unmarshalling()
768 property->SetParentId(parcel.ReadUint32()); in Unmarshalling()
769 MapUnmarshalling(parcel, property); in Unmarshalling()
770 property->SetDecorEnable(parcel.ReadBool()); in Unmarshalling()
772 property->SetHitOffset(offset); in Unmarshalling()
773 property->SetAnimationFlag(parcel.ReadUint32()); in Unmarshalling()
774 property->SetWindowSizeChangeReason(static_cast<WindowSizeChangeReason>(parcel.ReadUint32())); in Unmarshalling()
775 property->SetTokenState(parcel.ReadBool()); in Unmarshalling()
776 property->SetCallingWindow(parcel.ReadUint32()); in Unmarshalling()
777 property->SetRequestedOrientation(static_cast<Orientation>(parcel.ReadUint32())); in Unmarshalling()
778 property->SetTurnScreenOn(parcel.ReadBool()); in Unmarshalling()
779 property->SetKeepScreenOn(parcel.ReadBool()); in Unmarshalling()
780 property->SetWindowModeSupportType(parcel.ReadUint32()); in Unmarshalling()
781 property->SetRequestWindowModeSupportType(parcel.ReadUint32()); in Unmarshalling()
782 property->SetDragType(static_cast<DragType>(parcel.ReadUint32())); in Unmarshalling()
785 property->SetOriginRect(Rect { 0, 0, w, h }); in Unmarshalling()
786 property->SetStretchable(parcel.ReadBool()); in Unmarshalling()
787 UnmarshallingTouchHotAreas(parcel, property); in Unmarshalling()
788 property->SetAccessTokenId(parcel.ReadUint32()); in Unmarshalling()
789 UnmarshallingTransform(parcel, property); in Unmarshalling()
790 UnmarshallingWindowSizeLimits(parcel, property); in Unmarshalling()
793 property->SetZoomTransform(zoomTrans); in Unmarshalling()
794 property->SetDisplayZoomState(parcel.ReadBool()); in Unmarshalling()
796 property->SetAbilityInfo(info); in Unmarshalling()
797 property->SetSnapshotSkip(parcel.ReadBool()); in Unmarshalling()
798 property->SetTextFieldPositionY(parcel.ReadDouble()); in Unmarshalling()
799 property->SetTextFieldHeight(parcel.ReadDouble()); in Unmarshalling()
800 return property; in Unmarshalling()
963 void WindowProperty::CopyFrom(const sptr<WindowProperty>& property) in CopyFrom() argument
965 windowName_ = property->windowName_; in CopyFrom()
966 windowRect_ = property->windowRect_; in CopyFrom()
967 requestRect_ = property->requestRect_; in CopyFrom()
968 decoStatus_ = property->decoStatus_; in CopyFrom()
969 type_ = property->type_; in CopyFrom()
970 mode_ = property->mode_; in CopyFrom()
971 lastMode_ = property->lastMode_; in CopyFrom()
972 flags_ = property->flags_; in CopyFrom()
973 isFullScreen_ = property->isFullScreen_; in CopyFrom()
974 focusable_ = property->focusable_; in CopyFrom()
975 touchable_ = property->touchable_; in CopyFrom()
976 isPrivacyMode_ = property->isPrivacyMode_; in CopyFrom()
977 isTransparent_ = property->isTransparent_; in CopyFrom()
978 alpha_ = property->alpha_; in CopyFrom()
979 brightness_ = property->brightness_; in CopyFrom()
980 displayId_ = property->displayId_; in CopyFrom()
981 windowId_ = property->windowId_; in CopyFrom()
982 parentId_ = property->parentId_; in CopyFrom()
983 hitOffset_ = property->hitOffset_; in CopyFrom()
984 animationFlag_ = property->animationFlag_; in CopyFrom()
985 windowSizeChangeReason_ = property->windowSizeChangeReason_; in CopyFrom()
986 sysBarPropMap_ = property->sysBarPropMap_; in CopyFrom()
987 isDecorEnable_ = property->isDecorEnable_; in CopyFrom()
988 tokenState_ = property->tokenState_; in CopyFrom()
989 callingWindow_ = property->callingWindow_; in CopyFrom()
990 requestedOrientation_ = property->requestedOrientation_; in CopyFrom()
991 turnScreenOn_ = property->turnScreenOn_; in CopyFrom()
992 keepScreenOn_ = property->keepScreenOn_; in CopyFrom()
993 windowModeSupportType_ = property->windowModeSupportType_; in CopyFrom()
994 requestWindowModeSupportType_ = property->requestWindowModeSupportType_; in CopyFrom()
995 dragType_ = property->dragType_; in CopyFrom()
996 originRect_ = property->originRect_; in CopyFrom()
997 isStretchable_ = property->isStretchable_; in CopyFrom()
998 touchHotAreas_ = property->touchHotAreas_; in CopyFrom()
999 accessTokenId_ = property->accessTokenId_; in CopyFrom()
1000 trans_ = property->trans_; in CopyFrom()
1001 sizeLimits_ = property->sizeLimits_; in CopyFrom()
1002 zoomTrans_ = property->zoomTrans_; in CopyFrom()
1003 isDisplayZoomOn_ = property->isDisplayZoomOn_; in CopyFrom()
1005 abilityInfo_ = property->abilityInfo_; in CopyFrom()
1006 isSnapshotSkip_ = property->isSnapshotSkip_; in CopyFrom()
1007 textFieldPositionY_ = property->textFieldPositionY_; in CopyFrom()
1008 textFieldHeight_ = property->textFieldHeight_; in CopyFrom()