ui_checkbox.cpp 10.5 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "components/ui_checkbox.h"
#include "default_resource/check_box_res.h"
#include "draw/draw_image.h"
N
niulihua 已提交
19
#include "engines/gfx/gfx_engine_manager.h"
N
niulihua 已提交
20
#include "imgdecode/cache_manager.h"
M
mamingshuai 已提交
21 22

namespace OHOS {
W
wangtiantian 已提交
23
namespace {
G
guyuanzhang 已提交
24 25 26 27 28 29
constexpr uint8_t DEFAULT_UNSELECT_BG_OPA = 168;     // default background opacity
constexpr float DEFAULT_COEFFICIENT_START_DX = 0.22; // start point: x-cordinate offset
constexpr float DEFAULT_COEFFICIENT_START_DY = 0.5;  // start point: y-cordinate offset
constexpr float DEFAULT_COEFFICIENT_MID_DX = 0.2;    // middle point: y-cordinate offset
constexpr float DEFAULT_COEFFICIENT_MID_DY = 0.38;   // middle point: y-cordinate offset
constexpr int16_t DEFAULT_RATIO_BORDER_RADIUS_LINE_WIDTH = 4;
W
wangtiantian 已提交
30
#if DEFAULT_ANIMATION
G
guyuanzhang 已提交
31 32 33
constexpr int16_t DEFAULT_ANIMATOR_TIME = 200;
constexpr float BEZIER_CONTROL_POINT_X_1 = 0.33;
constexpr float BEZIER_CONTROL_POINT_X_2 = 0.67;
W
wangtiantian 已提交
34
#endif
G
guyuanzhang 已提交
35
} // namespace
M
mamingshuai 已提交
36
UICheckBox::UICheckBox()
G
guyuanzhang 已提交
37 38 39 40 41 42
    : state_(UNSELECTED),
      onStateChangeListener_(nullptr),
      width_(DEFAULT_HOT_WIDTH),
      height_(DEFAULT_HOT_HEIGHT),
      borderWidth_(DEFAULT_BORDER_WIDTH),
      backgroundOpacity_(0)
M
mamingshuai 已提交
43 44 45 46 47
{
    touchable_ = true;
    style_ = &(StyleDefault::GetBackgroundTransparentStyle());
    image_[UNSELECTED].SetSrc(GetCheckBoxOffInfo());
    image_[SELECTED].SetSrc(GetCheckBoxOnInfo());
G
guyuanzhang 已提交
48
    ImageHeader header = {0};
M
mamingshuai 已提交
49 50
    image_[UNSELECTED].GetHeader(header);
    Resize(header.width, header.height);
W
wangtiantian 已提交
51 52 53 54
#if DEFAULT_ANIMATION
    runTime_ = 0;
    checkBoxAnimator_ = Animator(this, this, DEFAULT_ANIMATOR_TIME, false);
#endif
M
mamingshuai 已提交
55 56
}

G
guyuanzhang 已提交
57
void UICheckBox::SetState(UICheckBoxState state, bool needAnimater)
M
mamingshuai 已提交
58
{
W
wangtiantian 已提交
59 60 61 62 63
    if (state_ == state) {
        return;
    }
    state_ = state;
    if ((image_[SELECTED].GetSrcType() == IMG_SRC_UNKNOWN) || (image_[UNSELECTED].GetSrcType() == IMG_SRC_UNKNOWN)) {
G
guyuanzhang 已提交
64
        if (needAnimater) {
W
wangtiantian 已提交
65
#if DEFAULT_ANIMATION
G
guyuanzhang 已提交
66 67
            checkBoxAnimator_.Start();
            ResetCallback();
W
wangtiantian 已提交
68
#else
G
guyuanzhang 已提交
69
            backgroundOpacity_ = (state_ == SELECTED) ? OPA_OPAQUE : 0;
W
wangtiantian 已提交
70
#endif
G
guyuanzhang 已提交
71 72 73
        } else {
            backgroundOpacity_ = (state_ == SELECTED) ? OPA_OPAQUE : 0;
        }
M
mamingshuai 已提交
74
    }
W
wangtiantian 已提交
75 76 77 78
    if (onStateChangeListener_ != nullptr) {
        onStateChangeListener_->OnChange(state);
    }
    Invalidate();
M
mamingshuai 已提交
79 80 81 82
}

void UICheckBox::ReverseState()
{
W
wangtiantian 已提交
83
    if (state_ == SELECTED) {
G
guyuanzhang 已提交
84
        SetState(UNSELECTED, true);
W
wangtiantian 已提交
85
    } else {
G
guyuanzhang 已提交
86
        SetState(SELECTED, true);
W
wangtiantian 已提交
87
    }
M
mamingshuai 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
}

bool UICheckBox::OnClickEvent(const ClickEvent& event)
{
    ReverseState();
    Invalidate();
    return UIView::OnClickEvent(event);
}

void UICheckBox::SetImages(const char* selectedImageSrc, const char* unselectedImageSrc)
{
    image_[SELECTED].SetSrc(selectedImageSrc);
    image_[UNSELECTED].SetSrc(unselectedImageSrc);
}

void UICheckBox::SetImages(const ImageInfo* selectedImageSrc, const ImageInfo* unselectedImageSrc)
{
    image_[SELECTED].SetSrc(selectedImageSrc);
    image_[UNSELECTED].SetSrc(unselectedImageSrc);
}

109 110 111 112 113 114 115 116 117 118
void UICheckBox::CalculateSize()
{
    int16_t width = GetWidth();
    int16_t height = GetHeight();
    if ((width_ == width) && (height_ == height)) {
        return;
    }
    width_ = width;
    height_ = height;
    int16_t minValue = (width_ > height_) ? height_ : width_;
G
guyuanzhang 已提交
119
    borderWidth_ = DEFAULT_BORDER_WIDTH * minValue / DEFAULT_HOT_WIDTH;
120 121
}

N
niulihua 已提交
122 123 124 125 126
void UICheckBox::SelectedStateSoftwareDrawing(BufferInfo& gfxDstBuffer,
                                              Rect rect,
                                              Rect trunc,
                                              int16_t borderRadius,
                                              int16_t rectLineWidth)
M
mamingshuai 已提交
127
{
W
wangtiantian 已提交
128 129 130
    if (backgroundOpacity_ == 0) {
        return;
    }
131 132
    Style styleSelect = StyleDefault::GetBackgroundTransparentStyle();
    styleSelect.borderRadius_ = borderRadius;
W
wangtiantian 已提交
133 134
    styleSelect.bgColor_ = Color::GetColorFromRGB(DEFAULT_BG_RED, DEFAULT_BG_GREEN, DEFAULT_BG_BLUE);
    styleSelect.bgOpa_ = backgroundOpacity_;
135
    BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, rect, trunc, styleSelect, opaScale_);
W
wangtiantian 已提交
136 137
    int16_t dx = borderWidth_ * DEFAULT_COEFFICIENT_START_DX;
    int16_t dy = borderWidth_ * DEFAULT_COEFFICIENT_START_DY;
G
guyuanzhang 已提交
138
    Point start = {static_cast<int16_t>(rect.GetX() + dx), static_cast<int16_t>(rect.GetY() + dy)};
W
wangtiantian 已提交
139
    dx = borderWidth_ * DEFAULT_COEFFICIENT_MID_DX;
G
guyuanzhang 已提交
140
    Point mid = {static_cast<int16_t>(start.x + dx), static_cast<int16_t>(start.y + dx)};
W
wangtiantian 已提交
141
    dx = borderWidth_ * DEFAULT_COEFFICIENT_MID_DY;
G
guyuanzhang 已提交
142
    Point end = {static_cast<int16_t>(mid.x + dx), static_cast<int16_t>(mid.y - dx)};
143
    const int16_t half = 2; // 2 :half
G
guyuanzhang 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
    ArcInfo arcInfoLeft = {start,
                           {0, 0},
                           static_cast<uint16_t>(rectLineWidth),
                           SEMICIRCLE_IN_DEGREE + QUARTER_IN_DEGREE / half,
                           QUARTER_IN_DEGREE / half,
                           nullptr};
    ArcInfo arcInfoMid = {mid,
                          {0, 0},
                          static_cast<uint16_t>(rectLineWidth),
                          SEMICIRCLE_IN_DEGREE - QUARTER_IN_DEGREE / half,
                          SEMICIRCLE_IN_DEGREE + QUARTER_IN_DEGREE / half,
                          nullptr};
    ArcInfo arcInfoRight = {end,
                            {0, 0},
                            static_cast<uint16_t>(rectLineWidth),
                            CIRCLE_IN_DEGREE - QUARTER_IN_DEGREE / half,
                            SEMICIRCLE_IN_DEGREE - QUARTER_IN_DEGREE / half,
                            nullptr};
162
    styleSelect.lineColor_ = Color::White();
W
wangtiantian 已提交
163 164
    styleSelect.lineOpa_ = backgroundOpacity_;
    uint8_t opa = DrawUtils::GetMixOpacity(opaScale_, backgroundOpacity_);
165
    BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcInfoLeft, trunc, styleSelect, opaScale_, CapType::CAP_NONE);
W
wangtiantian 已提交
166
    // 2 : double
G
guyuanzhang 已提交
167
    BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, start, mid, trunc, rectLineWidth * 2, Color::White(), opa);
168
    BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcInfoMid, trunc, styleSelect, opaScale_, CapType::CAP_NONE);
W
wangtiantian 已提交
169
    // 2 : double
G
guyuanzhang 已提交
170
    BaseGfxEngine::GetInstance()->DrawLine(gfxDstBuffer, mid, end, trunc, rectLineWidth * 2, Color::White(), opa);
171
    BaseGfxEngine::GetInstance()->DrawArc(gfxDstBuffer, arcInfoRight, trunc, styleSelect, opaScale_, CapType::CAP_NONE);
W
wangtiantian 已提交
172 173
}

W
wangtiantian 已提交
174 175 176 177 178
void UICheckBox::UnSelectedStateSoftwareDrawing(BufferInfo& gfxDstBuffer,
                                                Rect rect,
                                                Rect trunc,
                                                int16_t borderRadius,
                                                int16_t rectLineWidth)
W
wangtiantian 已提交
179
{
G
guyuanzhang 已提交
180 181
    Rect contentRect = GetContentRect();
    Style styleUnSelect = StyleDefault::GetBackgroundTransparentStyle();
W
wangtiantian 已提交
182 183 184 185
    styleUnSelect.borderWidth_ = rectLineWidth;
    styleUnSelect.borderRadius_ = borderRadius;
    styleUnSelect.borderColor_ = Color::White();
    styleUnSelect.borderOpa_ = DEFAULT_UNSELECT_BG_OPA;
186
    BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, rect, trunc, styleUnSelect, opaScale_);
W
wangtiantian 已提交
187 188 189 190 191 192 193
}

#if DEFAULT_ANIMATION
void UICheckBox::ResetCallback()
{
    if ((runTime_ != 0) && (checkBoxAnimator_.GetTime() != runTime_)) {
        checkBoxAnimator_.SetRunTime(checkBoxAnimator_.GetTime() - runTime_);
194 195
    }
}
M
mamingshuai 已提交
196

W
wangtiantian 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
void UICheckBox::Callback(UIView* view)
{
    runTime_ = checkBoxAnimator_.GetRunTime();
    float x = static_cast<float>(runTime_) / checkBoxAnimator_.GetTime();
    float coefficient = Interpolation::GetBezierY(x, BEZIER_CONTROL_POINT_X_1, 0, BEZIER_CONTROL_POINT_X_2, 1);
    backgroundOpacity_ = (state_ == SELECTED) ? (static_cast<uint8_t>(coefficient * OPA_OPAQUE)) :
                                                (static_cast<uint8_t>((1 - coefficient) * OPA_OPAQUE));
    Invalidate();
}

void UICheckBox::OnStop(UIView& view)
{
    backgroundOpacity_ = (state_ == SELECTED) ? OPA_OPAQUE : 0;
    Invalidate();
}
#endif

N
niulihua 已提交
214
void UICheckBox::OnDraw(BufferInfo& gfxDstBuffer, const Rect& invalidatedArea)
215
{
M
mamingshuai 已提交
216
    Rect trunc = invalidatedArea;
217 218 219 220 221 222 223 224
    if ((image_[SELECTED].GetSrcType() != IMG_SRC_UNKNOWN) && (image_[UNSELECTED].GetSrcType() != IMG_SRC_UNKNOWN)) {
        ImageHeader header = {0};
        image_[state_].GetHeader(header);
        int16_t imgWidth = header.width;
        int16_t imgHeight = header.height;
        Rect coords = GetContentRect();
        coords.SetWidth(imgWidth);
        coords.SetHeight(imgHeight);
N
niulihua 已提交
225
        BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, GetRect(), invalidatedArea, *style_, opaScale_);
G
guyuanzhang 已提交
226
        int16_t offsetLeft = (GetWidth() - imgWidth) / 2;  // 2 : half
227 228 229 230
        int16_t offsetTop = (GetHeight() - imgHeight) / 2; // 2 : half
        coords.SetX(coords.GetX() + offsetLeft);
        coords.SetY(coords.GetY() + offsetTop);
        if (trunc.Intersect(trunc, coords)) {
N
niulihua 已提交
231
            image_[state_].DrawImage(gfxDstBuffer, coords, trunc, *style_, opaScale_);
232 233
        }
    } else {
W
wangtiantian 已提交
234 235 236 237 238
        Rect contentRect = GetContentRect();
        bool isIntersect = trunc.Intersect(trunc, contentRect);
        if (!isIntersect) {
            return;
        }
239 240
        CalculateSize();
        int16_t rectLineWidth = borderWidth_ / DEFAULT_BORDER_WIDTH;
G
guyuanzhang 已提交
241
        int16_t borderRadius = rectLineWidth * DEFAULT_RATIO_BORDER_RADIUS_LINE_WIDTH;
N
niulihua 已提交
242
        BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, GetRect(), invalidatedArea, *style_, opaScale_);
G
guyuanzhang 已提交
243
        int16_t x = contentRect.GetX() + (width_ - borderWidth_) / 2;  // 2: half
244
        int16_t y = contentRect.GetY() + (height_ - borderWidth_) / 2; // 2: half
G
guyuanzhang 已提交
245
        Rect rect(x, y, x + borderWidth_, y + borderWidth_);
W
wangtiantian 已提交
246
#if DEFAULT_ANIMATION
247 248
        UnSelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
        SelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
W
wangtiantian 已提交
249 250
#else
        if (state_ == SELECTED) {
251
            SelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
W
wangtiantian 已提交
252
        } else {
253
            UnSelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
254
        }
W
wangtiantian 已提交
255
#endif
M
mamingshuai 已提交
256 257 258
    }
}
} // namespace OHOS