/* * Copyright (c) 2022 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 "text_label_adapter.h" #include "language/language_ui.h" #include "log/log.h" #include "updater_ui_const.h" #include "view_api.h" namespace Updater { TextLabelAdapter::TextLabelAdapter(const UxViewInfo &info) { const UxLabelInfo &spec = std::get(info.specificInfo); SetViewCommonInfo(info.commonInfo); this->SetAlign(GetAlign(spec.align), OHOS::TEXT_ALIGNMENT_CENTER); this->SetText(TranslateText(spec.text).c_str()); this->SetFont(DEFAULT_FONT_FILENAME, spec.fontSize); this->SetStyle(OHOS::STYLE_LINE_HEIGHT, UPDATER_UI_FONT_HEIGHT_RATIO * spec.fontSize); auto fontColor = StrToColor(spec.fontColor); this->SetStyle(OHOS::STYLE_TEXT_COLOR, fontColor.full); this->SetStyle(OHOS::STYLE_TEXT_OPA, fontColor.alpha); auto bgColor = StrToColor(spec.bgColor); this->SetStyle(OHOS::STYLE_BACKGROUND_COLOR, bgColor.full); this->SetStyle(OHOS::STYLE_BACKGROUND_OPA, bgColor.alpha); } bool TextLabelAdapter::IsValid(const UxLabelInfo &info) { if (info.fontSize > MAX_FONT_SIZE) { LOG(ERROR) << "label viewinfo check failed, fontSize: " << info.fontSize; return false; } if (!CheckColor(info.bgColor) || !CheckColor(info.fontColor)) { LOG(ERROR) << "label viewinfo check failed, bgColor:" << info.bgColor << " fontColor:" << info.fontColor; return false; } return true; } void TextLabelAdapter::SetText(const std::string &txt) { // usage of "*" is same as label button's SetText if (txt == "*") { return; } OHOS::UILabel::SetText(txt.c_str()); } } // namespace Updater