Searched refs:TypedFrameNode (Results 1 – 8 of 8) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_node/src/ |
H A D | frame_node.ts | 646 class TypedFrameNode<T extends ArkComponent> extends FrameNode { 698 …return new TypedFrameNode(context, 'Text', (node: NodePtr, type: ModifierType): ArkTextComponent =… 703 …return new TypedFrameNode(context, 'Column', (node: NodePtr, type: ModifierType): ArkColumnCompone… 708 …return new TypedFrameNode(context, 'Row', (node: NodePtr, type: ModifierType): ArkRowComponent => { 713 …return new TypedFrameNode(context, 'Stack', (node: NodePtr, type: ModifierType): ArkStackComponent… 737 …return new TypedFrameNode(context, 'Blank', (node: NodePtr, type: ModifierType): ArkBlankComponent… 742 …return new TypedFrameNode(context, 'Image', (node: NodePtr, type: ModifierType): ArkImageComponent… 747 …return new TypedFrameNode(context, 'Flex', (node: NodePtr, type: ModifierType): ArkFlexComponent =… 772 …return new TypedFrameNode(context, 'List', (node: NodePtr, type: ModifierType): ArkListComponent =… 842 …return new TypedFrameNode(context, 'Badge', (node: NodePtr, type: ModifierType): ArkBadgeComponent… [all …]
|
H A D | node_adapter.ts | 188 let frameeNode = node as TypedFrameNode<ArkComponent>;
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/ |
H A D | js-apis-arkui-frameNode.md | 1365 ## TypedFrameNode<sup>12+</sup> 1367 TypedFrameNode继承自[FrameNode](#framenode),用于声明具体类型的FrameNode。 1391 type Text = TypedFrameNode<TextInterface, TextAttribute> 1476 type Row = TypedFrameNode<RowInterface, RowAttribute> 1486 …TypedFrameNode<RowInterface, RowAttribute> | 提供Row类型FrameNode节点。<br/>**说明:**<br/> RowInterfa… 1518 type Stack = TypedFrameNode<StackInterface, StackAttribute> 1644 type Flex = TypedFrameNode<FlexInterface, FlexAttribute> 1976 type Blank = TypedFrameNode<BlankInterface, BlankAttribute> 2018 type Image = TypedFrameNode<ImageInterface, ImageAttribute> 2060 type List = TypedFrameNode<ListInterface, ListAttribute> [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | jsXNode.js | 1283 class TypedFrameNode extends FrameNode { class 1325 return new TypedFrameNode(context, 'Text', (node, type) => { 1330 return new TypedFrameNode(context, 'Column', (node, type) => { 1335 return new TypedFrameNode(context, 'Row', (node, type) => { 1340 return new TypedFrameNode(context, 'Stack', (node, type) => { 1364 return new TypedFrameNode(context, 'Blank', (node, type) => { 1369 return new TypedFrameNode(context, 'Image', (node, type) => { 1374 return new TypedFrameNode(context, 'Flex', (node, type) => { 1399 return new TypedFrameNode(context, 'List', (node, type) => { 1469 return new TypedFrameNode(context, 'Badge', (node, type) => { [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/ |
H A D | js-apis-arkui-frameNode.md | 1333 ## TypedFrameNode<sup>12+</sup> 1366 type Text = TypedFrameNode<TextInterface, TextAttribute> 1407 type Column = TypedFrameNode<ColumnInterface, ColumnAttribute> 1447 type Row = TypedFrameNode<RowInterface, RowAttribute> 1487 type Stack = TypedFrameNode<StackInterface, StackAttribute> 1613 type Flex = TypedFrameNode<FlexInterface, FlexAttribute> 1655 type Swiper = TypedFrameNode<SwiperInterface, SwiperAttribute> 1737 type Scroll = TypedFrameNode<ScrollInterface, ScrollAttribute> 1945 type Blank = TypedFrameNode<BlankInterface, BlankAttribute> 1987 type Image = TypedFrameNode<ImageInterface, ImageAttribute> [all …]
|
/ohos5.0/foundation/window/window_manager/resources/abc/pip/source/ |
H A D | PiPContent.ets | 17 import { NodeController, FrameNode, TypedFrameNode, UIContext } from '@kit.ArkUI'; 23 private mXComponent: TypedFrameNode<XComponentInterface, XComponentAttribute>; 26 constructor(xComponent: TypedFrameNode<XComponentInterface, XComponentAttribute>) { 49 private xComponent: TypedFrameNode<XComponentInterface, XComponentAttribute> | null = null;
|
/ohos5.0/docs/zh-cn/application-dev/ui/ |
H A D | arkts-user-defined.md | 24 …整个组件树,并通过节点访问组件的信息或者注册额外的事件监听回调。适用于结合无感监听的接口实现打点、广告SDK、中台DFX等业务。<br>[TypedFrameNode](../reference/…
|
/ohos5.0/docs/en/application-dev/ui/ |
H A D | arkts-user-defined.md | 24 …ervices such as tracking, advertising SDKs, and mid-end DFX.<br>Use [TypedFrameNode](../reference/…
|