ui_label.h 10.8 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
/*
 * 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.
 */

/**
 * @addtogroup UI_Components
 * @{
 *
 * @brief Defines UI components such as buttons, texts, images, lists, and progress bars.
 *
 * @since 1.0
 * @version 1.0
 */

/**
 * @file ui_label.h
 *
 * @brief Declares a <b>UILabel</b> class that represents a label.
 *
 * @since 1.0
 * @version 1.0
 */

#ifndef GRAPHIC_LITE_UI_LABEL_H
#define GRAPHIC_LITE_UI_LABEL_H

#include "animator/animator.h"
#include "common/text.h"
#include "components/ui_view.h"

namespace OHOS {
/**
 * @brief Defines the functions for presenting a label in a specified area, setting the style and background color
 *        of a label, and setting the display mode of a long label text.
 *
 * @since 1.0
 * @version 1.0
 */
class UILabel : public UIView {
public:
    /**
     * @brief Enumerates the display modes of a long text.
     */
    enum LineBreakMode : uint8_t {
        /**
         * The label size is adaptive to the text size.
         */
        LINE_BREAK_ADAPT = 0,
        /**
         * The height of this label remains unchanged, and the width is adaptive to the text size.
         */
        LINE_BREAK_STRETCH,
        /**
         * The width of this label remains unchanged, and the height is adaptive to the text size.
         * The text switches to the next line if the text exceeds the maximum label width.
         */
        LINE_BREAK_WRAP,
        /**
         * The width and height of this label remain unchanged.
         * If this text is too long, ellipsis will be used at the end.
         */
        LINE_BREAK_ELLIPSIS,
        /**
         * The width and height of this label remain unchanged.
         * If this text is too long, it will be rolled to display.
         */
        LINE_BREAK_MARQUEE,
        /**
         * The width and height of this label remain unchanged.
         * If this text is too long, it will be cropped to display.
         */
        LINE_BREAK_CLIP,
        /**
         * Maximum value of the line break mode, which is used for validity check.
         */
        LINE_BREAK_MAX,
    };

    /**
     * @brief A constructor used to create a <b>UILabel</b> instance.
     *
     * @since 1.0
     * @version 1.0
     */
    UILabel();

    /**
     * @brief A destructor used to delete the <b>UILabel</b> instance.
     *
     * @since 1.0
     * @version 1.0
     */
    virtual ~UILabel();

    /**
     * @brief Obtains the view type.
     *
     * @return Returns <b>UI_LABEL</b>, as defined in {@link UIViewType}.
     * @since 1.0
     * @version 1.0
     */
    UIViewType GetViewType() const override
    {
        return UI_LABEL;
    }

    /**
     * @brief Obtains the width of this label.
     *
     * @return Returns the label width.
     * @since 1.0
     * @version 1.0
     */
    int16_t GetWidth() override;

    /**
     * @brief Obtains the height of this label.
     *
     * @return Returns the label height.
     * @since 1.0
     * @version 1.0
     */
    int16_t GetHeight() override;

    /**
     * @brief Sets the view style.
     * @param style Indicates the view style.
     * @since 1.0
     * @version 1.0
     */
    void SetStyle(Style& style) override
    {
        UIView::SetStyle(style);
    }

    /**
     * @brief Sets a style.
     *
     * @param key Indicates the key of the style to set.
     * @param value Indicates the value matching the key.
     * @since 1.0
     * @version 1.0
     */
    void SetStyle(uint8_t key, int64_t value) override;

    /**
     * @brief Checks whether this label needs to be covered before drawing it.
     *
     * @param invalidatedArea Indicates the area to draw.
     * @return Returns <b>true</b> if this label needs to be covered; returns <b> false</b> otherwise.
     * @since 1.0
     * @version 1.0
     */
    bool OnPreDraw(Rect& invalidatedArea) const override
    {
        return false;
    }

    /**
     * @brief Draws this label.
     *
     * @param invalidatedArea Indicates the area to draw.
     * @since 1.0
     * @version 1.0
     */
    void OnDraw(const Rect& invalidatedArea) override;

    /**
     * @brief Sets the text content for this label.
     *
     * @param text Indicates the pointer to the text content.
     * @since 1.0
     * @version 1.0
     */
    void SetText(const char* text);

    /**
     * @brief Obtains the text of this label.
     *
     * @return Returns the text.
     * @since 1.0
     * @version 1.0
     */
    const char* GetText() const
    {
        return (labelText_ == nullptr) ? nullptr : labelText_->GetText();
    }

    /**
     * @brief Sets the line break mode for this text.
     *
     * @param lineBreakMode Indicates the line break mode to set.
     * @since 1.0
     * @version 1.0
     */
    void SetLineBreakMode(const uint8_t lineBreakMode);

    /**
     * @brief Obtains the line break mode of this text.
     *
     * @return Returns the line break mode.
     * @since 1.0
     * @version 1.0
     */
    uint8_t GetLineBreakMode() const
    {
        return lineBreakMode_;
    }

    /**
     * @brief Sets the color for this text.
     *
     * @param color Indicates the text color to set.
     * @since 1.0
     * @version 1.0
     */
    void SetTextColor(ColorType color)
    {
        useTextColor_ = true;
        textColor_ = color;
    }

    /**
     * @brief Obtains the color of this text.
     *
     * @return Returns the text color.
     * @since 1.0
     * @version 1.0
     */
    ColorType GetTextColor() const
    {
        return useTextColor_ ? textColor_ : GetStyleConst().textColor_;
    }

    /**
     * @brief Sets the alignment mode for this text.
     *
     * @param horizontalAlign Indicates the horizontal alignment mode to set,
     *                        which can be {@link TEXT_ALIGNMENT_LEFT},
     *                        {@link TEXT_ALIGNMENT_CENTER}, or {@link TEXT_ALIGNMENT_RIGHT}.
     * @param verticalAlign Indicates the vertical alignment mode to set, which can be
     *                      {@link TEXT_ALIGNMENT_TOP} (default mode), {@link TEXT_ALIGNMENT_CENTER},
     *                      or {@link TEXT_ALIGNMENT_BOTTOM}.
     * @since 1.0
     * @version 1.0
     */
    void SetAlign(UITextLanguageAlignment horizontalAlign,
        UITextLanguageAlignment verticalAlign = TEXT_ALIGNMENT_TOP);

    /**
     * @brief Obtains the horizontal alignment mode.
     *
     * @return Returns the horizontal alignment mode.
     * @since 1.0
     * @version 1.0
     */
    UITextLanguageAlignment GetHorAlign()
    {
        InitLabelText();
        return labelText_->GetHorAlign();
    }

    /**
     * @brief Obtains the vertical alignment mode.
     *
     * @return Returns the vertical alignment mode.
     * @since 1.0
     * @version 1.0
     */
    UITextLanguageAlignment GetVerAlign()
    {
        InitLabelText();
        return labelText_->GetVerAlign();
    }

    /**
     * @brief Sets the direction for this text.
     *
     * @return direct Returns the text direction, as defined in {@link UITextLanguageDirect}.
     * @since 1.0
     * @version 1.0
     */
    void SetDirect(UITextLanguageDirect direct)
    {
        InitLabelText();
        labelText_->SetDirect(direct);
    }

    /**
     * @brief Obtains the direction of this text.
     *
     * @return Returns the text direction, as defined in {@link UITextLanguageDirect}.
     * @since 1.0
     * @version 1.0
     */
    UITextLanguageDirect GetDirect()
    {
        InitLabelText();
        return labelText_->GetDirect();
    }

    /**
     * @brief Sets the font ID for this label.
     *
     * @param fontId Indicates the font ID composed of font name and size.
     * @since 1.0
     * @version 1.0
     */
    void SetFontId(uint8_t fontId);

    /**
     * @brief Obtains the font ID composed of font name and size.
     *
     * @return Returns the front ID of this label.
     * @since 1.0
     * @version 1.0
     */
    uint8_t GetFontId()
    {
        InitLabelText();
        return labelText_->GetFontId();
    }

    /**
     * @brief Sets the font for this label.
     *
     * @param name Indicates the pointer to the font name.
     * @param size Indicates the font size to set.
     * @since 1.0
     * @version 1.0
     */
    void SetFont(const char* name, uint8_t size);

    /**
     * @brief Sets the scroll speed for this text.
     *
     * @param speed Indicates the scroll speed to set.
     * @since 1.0
     * @version 1.0
     */
    void SetRollSpeed(uint16_t speed);

    /**
     * @brief Obtains the width of this text.
     *
     * @return Returns the text width.
     * @since 1.0
     * @version 1.0
     */
    uint16_t GetTextWidth();

    /**
     * @brief Obtains the height of this text.
     *
     * @return Returns the text height.
     * @since 1.0
     * @version 1.0
     */
    uint16_t GetTextHeight();

    /**
     * @brief Sets the position where this text starts to roll.
     *
     * @param pos Indicates the position to set.
     * @since 1.0
     * @version 1.0
     */
    void SetRollStartPos(int16_t pos);

    /**
     * @brief Obtains the position where this text starts to roll.
     *
     * @return Returns the position where this text starts to roll.
     * @since 1.0
     * @version 1.0
     */
    int16_t GetRollStartPos() const;

    /**
     * @brief Sets the width for this label.
     *
     * @param width Indicates the width to set.
     * @since 1.0
     * @version 1.0
     */
    void SetWidth(int16_t width) override;

    /**
     * @brief Sets the height for this label.
     *
     * @param height Indicates the height to set.
     * @since 1.0
     * @version 1.0
     */
    void SetHeight(int16_t height) override;

protected:
    Text* labelText_;
    void RefreshLabel();

    virtual void InitLabelText()
    {
        if (labelText_ == nullptr) {
            labelText_ = new Text();
        }
    }

private:
    friend class LabelAnimator;

    void ReMeasure() override;
    void RemeasureForMarquee(int16_t textWidth);

    bool needRefresh_ : 1;
    bool useTextColor_ : 1;
    bool hasAnimator_ : 1;
    uint8_t lineBreakMode_ : 4;
    uint16_t ellipsisIndex_;
    int16_t offsetX_;
    ColorType textColor_;

    static constexpr uint16_t DEFAULT_ANIMATOR_SPEED = 35;
    union {
        Animator* animator;
        struct {
            uint16_t speed;
            int16_t pos;
        };
    } animator_;
};
} // namespace OHOS
#endif // GRAPHIC_LITE_UI_LABEL_H