/* * Copyright (c) 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. */ #ifndef FOUNDATION_ACE_FRAMEWORKS_BRIDGE_COMMON_DOM_DOM_PANEL_H #define FOUNDATION_ACE_FRAMEWORKS_BRIDGE_COMMON_DOM_DOM_PANEL_H #include "core/components/panel/panel_component.h" #include "frameworks/bridge/common/dom/dom_node.h" namespace OHOS::Ace::Framework { class DOMPanel : public DOMNode { DECLARE_ACE_TYPE(DOMPanel, DOMNode); public: DOMPanel(NodeId nodeId, const std::string& nodeName); ~DOMPanel() override = default; RefPtr GetSpecializedComponent() override { return panelChild_; } void CallSpecializedMethod(const std::string& method, const std::string& args) override; protected: void PrepareSpecializedComponent() override; bool AddSpecializedEvent(int32_t pageId, const std::string& event) override; void OnChildNodeAdded(const RefPtr& child, int32_t slot) override; void OnChildNodeRemoved(const RefPtr& child) override; bool SetSpecializedAttr(const std::pair& attr) override; RefPtr CompositeSpecializedComponent(const std::vector>& components) override; private: RefPtr panelChild_; RefPtr display_; PanelMode mode_ = PanelMode::FULL; PanelType type_ = PanelType::FOLDABLE_BAR; bool hasDragBar_ = true; std::pair miniHeight_ = { 0.0_vp, false }; std::pair halfHeight_ = { 0.0_vp, false }; std::pair fullHeight_ = { 0.0_vp, false }; Dimension marginLeft_ = 0.0_vp; Dimension marginRight_ = 0.0_vp; Dimension marginTop_ = 0.0_vp; Dimension marginBottom_ = 0.0_vp; bool isShow_ = true; }; } // namespace OHOS::Ace::Framework #endif // FOUNDATION_ACE_FRAMEWORKS_BRIDGE_COMMON_DOM_DOM_PANEL_H