Home
last modified time | relevance | path

Searched refs:SwitchComposedElement (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dswitch_composed_element.cpp28 { "isOn", [](const SwitchComposedElement& inspector) { return inspector.GetChecked(); } }, in __anon4fbb838e0202()
31 { "type", [](const SwitchComposedElement& inspector) { return inspector.GetToggleType(); } } in __anon4fbb838e0502()
36 void SwitchComposedElement::Dump() in Dump()
45 std::unique_ptr<JsonValue> SwitchComposedElement::ToJsonObject() const in ToJsonObject()
54 std::string SwitchComposedElement::GetChecked() const in GetChecked()
61 std::string SwitchComposedElement::GetToggleType() const in GetToggleType()
66 std::string SwitchComposedElement::GetSelectedColor() const in GetSelectedColor()
75 std::string SwitchComposedElement::GetPointColor() const in GetPointColor()
84 std::string SwitchComposedElement::GetWidth() const in GetWidth()
96 std::string SwitchComposedElement::GetHeight() const in GetHeight()
[all …]
H A Dswitch_composed_element.h26 class ACE_EXPORT SwitchComposedElement : public InspectorComposedElement {
27 DECLARE_ACE_TYPE(SwitchComposedElement, InspectorComposedElement) in DECLARE_ACE_TYPE() argument
30 explicit SwitchComposedElement(const ComposeId& id) : InspectorComposedElement(id) {} in DECLARE_ACE_TYPE()
31 ~SwitchComposedElement() override = default;
H A Dinspector_composed_component.cpp160 …NT_TAG, [](const std::string& id) { return AceType::MakeRefPtr<V2::SwitchComposedElement>(id); } }, in __anona4bda69c2402()