ui_checkbox.cpp 10.2 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 24 25 26 27 28 29 30 31 32 33 34 35
namespace {
    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;
#if DEFAULT_ANIMATION
    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;
#endif
}
M
mamingshuai 已提交
36
UICheckBox::UICheckBox()
37
    : state_(UNSELECTED), onStateChangeListener_(nullptr), width_(DEFAULT_HOT_WIDTH), height_(DEFAULT_HOT_HEIGHT),
W
wangtiantian 已提交
38
      borderWidth_(DEFAULT_BORDER_WIDTH), backgroundOpacity_(0)
M
mamingshuai 已提交
39 40 41 42 43 44 45 46
{
    touchable_ = true;
    style_ = &(StyleDefault::GetBackgroundTransparentStyle());
    image_[UNSELECTED].SetSrc(GetCheckBoxOffInfo());
    image_[SELECTED].SetSrc(GetCheckBoxOnInfo());
    ImageHeader header = { 0 };
    image_[UNSELECTED].GetHeader(header);
    Resize(header.width, header.height);
W
wangtiantian 已提交
47 48 49 50
#if DEFAULT_ANIMATION
    runTime_ = 0;
    checkBoxAnimator_ = Animator(this, this, DEFAULT_ANIMATOR_TIME, false);
#endif
M
mamingshuai 已提交
51 52 53 54
}

UICheckBox::~UICheckBox()
{
W
wangtiantian 已提交
55 56 57
#if DEFAULT_ANIMATION
    checkBoxAnimator_.Stop();
#endif
M
mamingshuai 已提交
58 59 60 61
}

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

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

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);
}

108 109 110 111 112 113 114 115 116 117 118 119 120
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_;
    borderWidth_ =  DEFAULT_BORDER_WIDTH * minValue / DEFAULT_HOT_WIDTH;
}

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

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

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

W
wangtiantian 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
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 已提交
209
void UICheckBox::OnDraw(BufferInfo& gfxDstBuffer, const Rect& invalidatedArea)
210
{
M
mamingshuai 已提交
211
    Rect trunc = invalidatedArea;
212 213 214 215 216 217 218 219
    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 已提交
220
        BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, GetRect(), invalidatedArea, *style_, opaScale_);
221 222 223 224 225
        int16_t offsetLeft = (GetWidth() - imgWidth) / 2; // 2 : half
        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 已提交
226
            image_[state_].DrawImage(gfxDstBuffer, coords, trunc, *style_, opaScale_);
227 228
        }
    } else {
W
wangtiantian 已提交
229 230 231 232 233
        Rect contentRect = GetContentRect();
        bool isIntersect = trunc.Intersect(trunc, contentRect);
        if (!isIntersect) {
            return;
        }
234 235
        CalculateSize();
        int16_t rectLineWidth = borderWidth_ / DEFAULT_BORDER_WIDTH;
W
wangtiantian 已提交
236
        int16_t borderRadius  = rectLineWidth * DEFAULT_RATIO_BORDER_RADIUS_LINE_WIDTH;
N
niulihua 已提交
237
        BaseGfxEngine::GetInstance()->DrawRect(gfxDstBuffer, GetRect(), invalidatedArea, *style_, opaScale_);
238 239 240
        int16_t x = contentRect.GetX() + (width_ - borderWidth_) / 2; // 2: half
        int16_t y = contentRect.GetY() + (height_ - borderWidth_) / 2; // 2: half
        Rect rect(x, y, x + borderWidth_,  y + borderWidth_);
W
wangtiantian 已提交
241
#if DEFAULT_ANIMATION
242 243
        UnSelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
        SelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
W
wangtiantian 已提交
244 245
#else
        if (state_ == SELECTED) {
246
            SelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
W
wangtiantian 已提交
247
        } else {
248
            UnSelectedStateSoftwareDrawing(gfxDstBuffer, rect, trunc, borderRadius, rectLineWidth);
249
        }
W
wangtiantian 已提交
250
#endif
M
mamingshuai 已提交
251 252 253
    }
}
} // namespace OHOS