123b3eb3cSopenharmony_ci/*
223b3eb3cSopenharmony_ci * Copyright (c) 2021 Huawei Device Co., Ltd.
323b3eb3cSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
423b3eb3cSopenharmony_ci * you may not use this file except in compliance with the License.
523b3eb3cSopenharmony_ci * You may obtain a copy of the License at
623b3eb3cSopenharmony_ci *
723b3eb3cSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
823b3eb3cSopenharmony_ci *
923b3eb3cSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1023b3eb3cSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1123b3eb3cSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1223b3eb3cSopenharmony_ci * See the License for the specific language governing permissions and
1323b3eb3cSopenharmony_ci * limitations under the License.
1423b3eb3cSopenharmony_ci */
1523b3eb3cSopenharmony_ci
1623b3eb3cSopenharmony_ci#ifndef FOUNDATION_ACE_FRAMEWORKS_BASE_GEOMETRY_DIMENSION_RECT_H
1723b3eb3cSopenharmony_ci#define FOUNDATION_ACE_FRAMEWORKS_BASE_GEOMETRY_DIMENSION_RECT_H
1823b3eb3cSopenharmony_ci
1923b3eb3cSopenharmony_ci#include <cmath>
2023b3eb3cSopenharmony_ci#include <limits>
2123b3eb3cSopenharmony_ci
2223b3eb3cSopenharmony_ci#include "base/geometry/dimension.h"
2323b3eb3cSopenharmony_ci#include "base/geometry/dimension_offset.h"
2423b3eb3cSopenharmony_ci#include "base/geometry/dimension_size.h"
2523b3eb3cSopenharmony_ci#include "base/json/json_util.h"
2623b3eb3cSopenharmony_ci
2723b3eb3cSopenharmony_cinamespace OHOS::Ace {
2823b3eb3cSopenharmony_ci
2923b3eb3cSopenharmony_ciclass DimensionRect {
3023b3eb3cSopenharmony_cipublic:
3123b3eb3cSopenharmony_ci    DimensionRect() = default;
3223b3eb3cSopenharmony_ci    ~DimensionRect() = default;
3323b3eb3cSopenharmony_ci
3423b3eb3cSopenharmony_ci    DimensionRect(const Dimension& width, const Dimension& height, const DimensionOffset& offset)
3523b3eb3cSopenharmony_ci        : width_(width), height_(height), offset_(offset)
3623b3eb3cSopenharmony_ci    {}
3723b3eb3cSopenharmony_ci
3823b3eb3cSopenharmony_ci    DimensionRect(const Dimension& width, const Dimension& height) : width_(width), height_(height) {}
3923b3eb3cSopenharmony_ci
4023b3eb3cSopenharmony_ci    const Dimension& GetWidth() const
4123b3eb3cSopenharmony_ci    {
4223b3eb3cSopenharmony_ci        return width_;
4323b3eb3cSopenharmony_ci    }
4423b3eb3cSopenharmony_ci
4523b3eb3cSopenharmony_ci    const Dimension& GetHeight() const
4623b3eb3cSopenharmony_ci    {
4723b3eb3cSopenharmony_ci        return height_;
4823b3eb3cSopenharmony_ci    }
4923b3eb3cSopenharmony_ci
5023b3eb3cSopenharmony_ci    const DimensionOffset& GetOffset() const
5123b3eb3cSopenharmony_ci    {
5223b3eb3cSopenharmony_ci        return offset_;
5323b3eb3cSopenharmony_ci    }
5423b3eb3cSopenharmony_ci
5523b3eb3cSopenharmony_ci    void SetOffset(const DimensionOffset& offset)
5623b3eb3cSopenharmony_ci    {
5723b3eb3cSopenharmony_ci        offset_ = offset;
5823b3eb3cSopenharmony_ci    }
5923b3eb3cSopenharmony_ci
6023b3eb3cSopenharmony_ci    void SetSize(const DimensionSize& size)
6123b3eb3cSopenharmony_ci    {
6223b3eb3cSopenharmony_ci        width_ = size.Width();
6323b3eb3cSopenharmony_ci        height_ = size.Height();
6423b3eb3cSopenharmony_ci    }
6523b3eb3cSopenharmony_ci
6623b3eb3cSopenharmony_ci    void SetWidth(const Dimension& width)
6723b3eb3cSopenharmony_ci    {
6823b3eb3cSopenharmony_ci        width_ = width;
6923b3eb3cSopenharmony_ci    }
7023b3eb3cSopenharmony_ci
7123b3eb3cSopenharmony_ci    void SetHeight(const Dimension& height)
7223b3eb3cSopenharmony_ci    {
7323b3eb3cSopenharmony_ci        height_ = height;
7423b3eb3cSopenharmony_ci    }
7523b3eb3cSopenharmony_ci
7623b3eb3cSopenharmony_ci    void Reset()
7723b3eb3cSopenharmony_ci    {
7823b3eb3cSopenharmony_ci        width_ = 0.0_vp;
7923b3eb3cSopenharmony_ci        height_ = 0.0_vp;
8023b3eb3cSopenharmony_ci        offset_ = DimensionOffset();
8123b3eb3cSopenharmony_ci    }
8223b3eb3cSopenharmony_ci
8323b3eb3cSopenharmony_ci    std::string ToString() const
8423b3eb3cSopenharmony_ci    {
8523b3eb3cSopenharmony_ci        static const int32_t precision = 2;
8623b3eb3cSopenharmony_ci        std::stringstream ss;
8723b3eb3cSopenharmony_ci        ss << "Rect (" << std::fixed << std::setprecision(precision) << offset_.GetX().ToString() << ", "
8823b3eb3cSopenharmony_ci           << offset_.GetY().ToString() << ") - [";
8923b3eb3cSopenharmony_ci        ss << width_.ToString();
9023b3eb3cSopenharmony_ci        ss << " x ";
9123b3eb3cSopenharmony_ci        ss << height_.ToString();
9223b3eb3cSopenharmony_ci        ss << "]";
9323b3eb3cSopenharmony_ci        std::string output = ss.str();
9423b3eb3cSopenharmony_ci        return output;
9523b3eb3cSopenharmony_ci    }
9623b3eb3cSopenharmony_ci
9723b3eb3cSopenharmony_ci    std::string ToJsonString() const
9823b3eb3cSopenharmony_ci    {
9923b3eb3cSopenharmony_ci        auto jsonValue = JsonUtil::Create(true);
10023b3eb3cSopenharmony_ci        jsonValue->Put("x", offset_.GetX().ToString().c_str());
10123b3eb3cSopenharmony_ci        jsonValue->Put("y", offset_.GetY().ToString().c_str());
10223b3eb3cSopenharmony_ci        jsonValue->Put("width", width_.ToString().c_str());
10323b3eb3cSopenharmony_ci        jsonValue->Put("height", height_.ToString().c_str());
10423b3eb3cSopenharmony_ci        return jsonValue->ToString();
10523b3eb3cSopenharmony_ci    }
10623b3eb3cSopenharmony_ci
10723b3eb3cSopenharmony_ciprivate:
10823b3eb3cSopenharmony_ci    Dimension width_ = 0.0_vp;
10923b3eb3cSopenharmony_ci    Dimension height_ = 0.0_vp;
11023b3eb3cSopenharmony_ci    DimensionOffset offset_;
11123b3eb3cSopenharmony_ci};
11223b3eb3cSopenharmony_ci
11323b3eb3cSopenharmony_ci} // namespace OHOS::Ace
11423b3eb3cSopenharmony_ci
11523b3eb3cSopenharmony_ci#endif // FOUNDATION_ACE_FRAMEWORKS_BASE_GEOMETRY_DIMENSION_RECT_H
116