1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_DECLARATION_TEXTAREA_TEXTAREA_DECLARATION_H 17 #define FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_DECLARATION_TEXTAREA_TEXTAREA_DECLARATION_H 18 19 #include "core/components/declaration/common/declaration.h" 20 #include "core/components/declaration/textfield/textfield_declaration.h" 21 #include "frameworks/bridge/common/dom/dom_type.h" 22 #include "frameworks/core/components/text_field/text_field_controller.h" 23 24 namespace OHOS::Ace { 25 26 class TextareaDeclaration : public Declaration { 27 DECLARE_ACE_TYPE(TextareaDeclaration, Declaration); 28 29 public: 30 TextareaDeclaration(); 31 ~TextareaDeclaration() override = default; 32 33 void InitializeStyle() override; 34 HasBoxRadius()35 bool HasBoxRadius() const 36 { 37 return textFieldDeclaration_->HasBoxRadius(); 38 } 39 GetTextFieldDeclaration()40 const RefPtr<TextFieldDeclaration>& GetTextFieldDeclaration() const 41 { 42 return textFieldDeclaration_; 43 } 44 45 protected: 46 bool SetSpecializedAttr(const std::pair<std::string, std::string>& attr) override; 47 bool SetSpecializedStyle(const std::pair<std::string, std::string>& style) override; 48 bool SetSpecializedEvent(int32_t pageId, const std::string& eventId, const std::string& event) override; 49 void CallSpecializedMethod(const std::string& method, const std::string& args) override; 50 void OnRequestFocus(bool shouldFocus) override; 51 52 private: 53 RefPtr<TextFieldDeclaration> textFieldDeclaration_; 54 }; 55 56 } // namespace OHOS::Ace 57 58 #endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_DECLARATION_TEXTAREA_TEXTAREA_DECLARATION_H 59