@gtkx/react 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -27
- package/dist/errors.js +3 -0
- package/dist/factory.d.ts +3 -2
- package/dist/factory.js +1 -1
- package/dist/generated/internal.d.ts +28 -1
- package/dist/generated/internal.js +93 -18
- package/dist/generated/jsx.d.ts +1712 -1516
- package/dist/generated/jsx.js +475 -0
- package/dist/host-config.d.ts +3 -1
- package/dist/host-config.js +31 -11
- package/dist/jsx.d.ts +147 -97
- package/dist/jsx.js +89 -21
- package/dist/node.d.ts +3 -1
- package/dist/node.js +5 -3
- package/dist/nodes/abstract/positional-child.d.ts +9 -0
- package/dist/nodes/abstract/positional-child.js +29 -0
- package/dist/nodes/abstract/positional-parent.d.ts +18 -0
- package/dist/nodes/abstract/positional-parent.js +48 -0
- package/dist/nodes/abstract/virtual-container.d.ts +17 -0
- package/dist/nodes/abstract/virtual-container.js +59 -0
- package/dist/nodes/abstract/virtual-single-child.d.ts +18 -0
- package/dist/nodes/abstract/virtual-single-child.js +54 -0
- package/dist/nodes/action-row-child.d.ts +0 -13
- package/dist/nodes/action-row-child.js +14 -12
- package/dist/nodes/action-row.d.ts +6 -1
- package/dist/nodes/action-row.js +4 -37
- package/dist/nodes/adjustable.d.ts +23 -0
- package/dist/nodes/adjustable.js +62 -0
- package/dist/nodes/alert-dialog-response.d.ts +1 -0
- package/dist/nodes/alert-dialog-response.js +86 -0
- package/dist/nodes/animation/animation-controller.d.ts +17 -0
- package/dist/nodes/animation/animation-controller.js +107 -0
- package/dist/nodes/animation/animation-factory.d.ts +15 -0
- package/dist/nodes/animation/animation-factory.js +25 -0
- package/dist/nodes/animation/animation-node.d.ts +9 -0
- package/dist/nodes/animation/animation-node.js +126 -0
- package/dist/nodes/animation/animation-style-sheet.d.ts +16 -0
- package/dist/nodes/animation/animation-style-sheet.js +74 -0
- package/dist/nodes/animation/index.d.ts +4 -0
- package/dist/nodes/animation/index.js +1 -0
- package/dist/nodes/animation/property-mapper.d.ts +11 -0
- package/dist/nodes/animation/property-mapper.js +36 -0
- package/dist/nodes/animation/transform-state.d.ts +11 -0
- package/dist/nodes/animation/transform-state.js +57 -0
- package/dist/nodes/animation/widget-registry.d.ts +5 -0
- package/dist/nodes/animation/widget-registry.js +42 -0
- package/dist/nodes/application.js +17 -7
- package/dist/nodes/autowrapped.js +37 -43
- package/dist/nodes/calendar.js +16 -55
- package/dist/nodes/color-dialog-button.d.ts +1 -0
- package/dist/nodes/color-dialog-button.js +70 -0
- package/dist/nodes/column-view-column.d.ts +4 -3
- package/dist/nodes/column-view-column.js +5 -1
- package/dist/nodes/column-view.js +40 -43
- package/dist/nodes/dialog.d.ts +11 -0
- package/dist/nodes/dialog.js +20 -0
- package/dist/nodes/drawing-area.d.ts +1 -0
- package/dist/nodes/drawing-area.js +36 -0
- package/dist/nodes/event-controller.d.ts +1 -0
- package/dist/nodes/event-controller.js +96 -0
- package/dist/nodes/expander-row-child.d.ts +0 -14
- package/dist/nodes/expander-row-child.js +14 -12
- package/dist/nodes/expander-row.d.ts +6 -1
- package/dist/nodes/expander-row.js +11 -47
- package/dist/nodes/fixed-child.js +48 -36
- package/dist/nodes/font-dialog-button.d.ts +1 -0
- package/dist/nodes/font-dialog-button.js +90 -0
- package/dist/nodes/grid-child.js +39 -45
- package/dist/nodes/grid.d.ts +1 -0
- package/dist/nodes/grid.js +41 -0
- package/dist/nodes/index.d.ts +22 -6
- package/dist/nodes/index.js +22 -6
- package/dist/nodes/internal/base-item-renderer.d.ts +29 -0
- package/dist/nodes/internal/base-item-renderer.js +88 -0
- package/dist/nodes/internal/base-store.d.ts +9 -0
- package/dist/nodes/internal/base-store.js +20 -0
- package/dist/nodes/internal/child-attachment.d.ts +26 -0
- package/dist/nodes/internal/child-attachment.js +48 -0
- package/dist/nodes/internal/deferred-action.d.ts +8 -0
- package/dist/nodes/internal/deferred-action.js +19 -0
- package/dist/nodes/internal/list-item-renderer.d.ts +14 -14
- package/dist/nodes/internal/list-item-renderer.js +49 -70
- package/dist/nodes/internal/list-store.d.ts +7 -6
- package/dist/nodes/internal/list-store.js +20 -24
- package/dist/nodes/internal/predicates.d.ts +28 -1
- package/dist/nodes/internal/predicates.js +53 -38
- package/dist/nodes/internal/selection-model.d.ts +30 -0
- package/dist/nodes/internal/selection-model.js +91 -0
- package/dist/nodes/internal/signal-store.d.ts +5 -3
- package/dist/nodes/internal/signal-store.js +30 -21
- package/dist/nodes/internal/simple-list-store.js +6 -9
- package/dist/nodes/internal/text-buffer-controller.d.ts +43 -0
- package/dist/nodes/internal/text-buffer-controller.js +287 -0
- package/dist/nodes/internal/text-tag-styles.d.ts +43 -0
- package/dist/nodes/internal/text-tag-styles.js +52 -0
- package/dist/nodes/internal/tree-list-item-renderer.d.ts +16 -14
- package/dist/nodes/internal/tree-list-item-renderer.js +88 -91
- package/dist/nodes/internal/tree-store.d.ts +10 -9
- package/dist/nodes/internal/tree-store.js +31 -35
- package/dist/nodes/internal/utils.d.ts +7 -4
- package/dist/nodes/internal/utils.js +50 -5
- package/dist/nodes/level-bar.js +18 -66
- package/dist/nodes/list-item.d.ts +6 -3
- package/dist/nodes/list-item.js +7 -4
- package/dist/nodes/list-view.js +19 -11
- package/dist/nodes/menu.d.ts +3 -3
- package/dist/nodes/menu.js +3 -3
- package/dist/nodes/models/list.d.ts +11 -13
- package/dist/nodes/models/list.js +16 -73
- package/dist/nodes/models/menu.d.ts +8 -7
- package/dist/nodes/models/menu.js +43 -50
- package/dist/nodes/models/tree-list.d.ts +6 -12
- package/dist/nodes/models/tree-list.js +30 -93
- package/dist/nodes/navigation-page.d.ts +1 -0
- package/dist/nodes/navigation-page.js +7 -3
- package/dist/nodes/navigation-view.js +17 -28
- package/dist/nodes/notebook-page-tab.d.ts +4 -3
- package/dist/nodes/notebook-page-tab.js +5 -2
- package/dist/nodes/notebook-page.d.ts +7 -5
- package/dist/nodes/notebook-page.js +39 -16
- package/dist/nodes/notebook.js +2 -2
- package/dist/nodes/overlay-child.js +90 -30
- package/dist/nodes/pack-child.d.ts +0 -13
- package/dist/nodes/pack-child.js +14 -12
- package/dist/nodes/pack.d.ts +6 -1
- package/dist/nodes/pack.js +4 -37
- package/dist/nodes/popover-menu.js +2 -2
- package/dist/nodes/scale.js +15 -58
- package/dist/nodes/scrolled-window.js +7 -5
- package/dist/nodes/search-bar.d.ts +1 -0
- package/dist/nodes/search-bar.js +40 -0
- package/dist/nodes/shortcut-controller.d.ts +1 -0
- package/dist/nodes/shortcut-controller.js +90 -0
- package/dist/nodes/shortcut.d.ts +39 -0
- package/dist/nodes/shortcut.js +52 -0
- package/dist/nodes/simple-list-view.js +2 -3
- package/dist/nodes/slot.d.ts +6 -9
- package/dist/nodes/slot.js +27 -42
- package/dist/nodes/source-view.d.ts +1 -0
- package/dist/nodes/source-view.js +93 -0
- package/dist/nodes/stack-page.js +17 -13
- package/dist/nodes/stack.js +19 -5
- package/dist/nodes/text-anchor.d.ts +41 -0
- package/dist/nodes/text-anchor.js +59 -0
- package/dist/nodes/text-content.d.ts +10 -0
- package/dist/nodes/text-content.js +1 -0
- package/dist/nodes/text-paintable.d.ts +17 -0
- package/dist/nodes/text-paintable.js +34 -0
- package/dist/nodes/text-segment.d.ts +15 -0
- package/dist/nodes/text-segment.js +29 -0
- package/dist/nodes/text-tag.d.ts +136 -0
- package/dist/nodes/text-tag.js +202 -0
- package/dist/nodes/text-view.d.ts +31 -0
- package/dist/nodes/text-view.js +73 -0
- package/dist/nodes/toggle-group.js +24 -32
- package/dist/nodes/toggle.d.ts +1 -15
- package/dist/nodes/toggle.js +40 -32
- package/dist/nodes/toolbar-child.js +14 -16
- package/dist/nodes/tree-list-item.d.ts +7 -5
- package/dist/nodes/tree-list-item.js +24 -36
- package/dist/nodes/tree-list-view.js +9 -4
- package/dist/nodes/virtual.d.ts +1 -1
- package/dist/nodes/widget.d.ts +3 -13
- package/dist/nodes/widget.js +117 -231
- package/dist/nodes/window.d.ts +9 -3
- package/dist/nodes/window.js +35 -19
- package/dist/registry.d.ts +1 -1
- package/dist/render.js +8 -6
- package/dist/scheduler.d.ts +11 -1
- package/dist/scheduler.js +16 -4
- package/dist/types.d.ts +2 -110
- package/package.json +3 -3
- package/dist/nodes/calendar-mark.d.ts +0 -15
- package/dist/nodes/calendar-mark.js +0 -29
- package/dist/nodes/internal/constants.d.ts +0 -1
- package/dist/nodes/internal/constants.js +0 -21
- package/dist/nodes/level-bar-offset.d.ts +0 -13
- package/dist/nodes/level-bar-offset.js +0 -35
- package/dist/nodes/scale-mark.d.ts +0 -17
- package/dist/nodes/scale-mark.js +0 -38
- package/dist/nodes/virtual-child.d.ts +0 -18
- package/dist/nodes/virtual-child.js +0 -62
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { isObjectEqual } from "@gtkx/ffi";
|
|
2
2
|
import { registerNodeClass } from "../registry.js";
|
|
3
3
|
import { SlotNode } from "./slot.js";
|
|
4
4
|
class ToolbarChildNode extends SlotNode {
|
|
@@ -17,23 +17,21 @@ class ToolbarChildNode extends SlotNode {
|
|
|
17
17
|
}
|
|
18
18
|
onChildChange(oldChild) {
|
|
19
19
|
const toolbar = this.getToolbar();
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
toolbar.remove(oldChild);
|
|
25
|
-
}
|
|
20
|
+
if (oldChild) {
|
|
21
|
+
const parent = oldChild.getParent();
|
|
22
|
+
if (parent && isObjectEqual(parent, toolbar)) {
|
|
23
|
+
toolbar.remove(oldChild);
|
|
26
24
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
}
|
|
26
|
+
if (this.child) {
|
|
27
|
+
const position = this.getPosition();
|
|
28
|
+
if (position === "top") {
|
|
29
|
+
toolbar.addTopBar(this.child);
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
toolbar.addBottomBar(this.child);
|
|
35
33
|
}
|
|
36
|
-
}
|
|
34
|
+
}
|
|
37
35
|
}
|
|
38
36
|
}
|
|
39
37
|
registerNodeClass(ToolbarChildNode);
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import type { TreeListItemProps } from "../jsx.js";
|
|
2
2
|
import type { Node } from "../node.js";
|
|
3
|
-
import type { TreeStore } from "./internal/tree-store.js";
|
|
3
|
+
import type { TreeItemData, TreeStore } from "./internal/tree-store.js";
|
|
4
4
|
import { VirtualNode } from "./virtual.js";
|
|
5
5
|
type Props = Partial<TreeListItemProps>;
|
|
6
|
+
export declare const createTreeItemData: (props: Props) => TreeItemData;
|
|
6
7
|
export declare class TreeListItemNode extends VirtualNode<Props> {
|
|
7
8
|
static priority: number;
|
|
8
|
-
private store
|
|
9
|
-
private parentItemId
|
|
9
|
+
private store;
|
|
10
|
+
private parentItemId;
|
|
10
11
|
private childNodes;
|
|
11
12
|
static matches(type: string): boolean;
|
|
12
|
-
setStore(store
|
|
13
|
-
|
|
13
|
+
setStore(store: TreeStore | null): void;
|
|
14
|
+
getChildNodes(): readonly TreeListItemNode[];
|
|
15
|
+
setParentItemId(parentId: string | null): void;
|
|
14
16
|
getParentItemId(): string | null;
|
|
15
17
|
appendChild(child: Node): void;
|
|
16
18
|
insertBefore(child: Node, before: Node): void;
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { registerNodeClass } from "../registry.js";
|
|
2
|
-
import { scheduleAfterCommit } from "../scheduler.js";
|
|
3
2
|
import { VirtualNode } from "./virtual.js";
|
|
3
|
+
export const createTreeItemData = (props) => ({
|
|
4
|
+
value: props.value,
|
|
5
|
+
indentForDepth: props.indentForDepth,
|
|
6
|
+
indentForIcon: props.indentForIcon,
|
|
7
|
+
hideExpander: props.hideExpander,
|
|
8
|
+
});
|
|
4
9
|
export class TreeListItemNode extends VirtualNode {
|
|
5
10
|
static priority = 1;
|
|
6
|
-
store;
|
|
7
|
-
parentItemId;
|
|
11
|
+
store = null;
|
|
12
|
+
parentItemId = null;
|
|
8
13
|
childNodes = [];
|
|
9
14
|
static matches(type) {
|
|
10
15
|
return type === "TreeListItem";
|
|
@@ -15,36 +20,32 @@ export class TreeListItemNode extends VirtualNode {
|
|
|
15
20
|
child.setStore(store);
|
|
16
21
|
}
|
|
17
22
|
}
|
|
23
|
+
getChildNodes() {
|
|
24
|
+
return this.childNodes;
|
|
25
|
+
}
|
|
18
26
|
setParentItemId(parentId) {
|
|
19
27
|
this.parentItemId = parentId;
|
|
20
28
|
}
|
|
21
29
|
getParentItemId() {
|
|
22
|
-
return this.parentItemId
|
|
30
|
+
return this.parentItemId;
|
|
23
31
|
}
|
|
24
32
|
appendChild(child) {
|
|
25
33
|
if (!(child instanceof TreeListItemNode)) {
|
|
26
34
|
return;
|
|
27
35
|
}
|
|
28
36
|
child.setStore(this.store);
|
|
29
|
-
child.setParentItemId(this.props.id);
|
|
37
|
+
child.setParentItemId(this.props.id ?? null);
|
|
30
38
|
this.childNodes.push(child);
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
value: child.props.value,
|
|
35
|
-
indentForDepth: child.props.indentForDepth,
|
|
36
|
-
indentForIcon: child.props.indentForIcon,
|
|
37
|
-
hideExpander: child.props.hideExpander,
|
|
38
|
-
}, this.props.id);
|
|
39
|
-
}
|
|
40
|
-
});
|
|
39
|
+
if (this.store && child.props.id !== undefined) {
|
|
40
|
+
this.store.addItem(child.props.id, createTreeItemData(child.props), this.props.id);
|
|
41
|
+
}
|
|
41
42
|
}
|
|
42
43
|
insertBefore(child, before) {
|
|
43
44
|
if (!(child instanceof TreeListItemNode) || !(before instanceof TreeListItemNode)) {
|
|
44
45
|
return;
|
|
45
46
|
}
|
|
46
47
|
child.setStore(this.store);
|
|
47
|
-
child.setParentItemId(this.props.id);
|
|
48
|
+
child.setParentItemId(this.props.id ?? null);
|
|
48
49
|
const beforeIndex = this.childNodes.indexOf(before);
|
|
49
50
|
if (beforeIndex === -1) {
|
|
50
51
|
this.childNodes.push(child);
|
|
@@ -52,16 +53,9 @@ export class TreeListItemNode extends VirtualNode {
|
|
|
52
53
|
else {
|
|
53
54
|
this.childNodes.splice(beforeIndex, 0, child);
|
|
54
55
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
value: child.props.value,
|
|
59
|
-
indentForDepth: child.props.indentForDepth,
|
|
60
|
-
indentForIcon: child.props.indentForIcon,
|
|
61
|
-
hideExpander: child.props.hideExpander,
|
|
62
|
-
}, this.props.id);
|
|
63
|
-
}
|
|
64
|
-
});
|
|
56
|
+
if (this.store && child.props.id !== undefined && before.props.id !== undefined) {
|
|
57
|
+
this.store.insertItemBefore(child.props.id, before.props.id, createTreeItemData(child.props), this.props.id);
|
|
58
|
+
}
|
|
65
59
|
}
|
|
66
60
|
removeChild(child) {
|
|
67
61
|
if (!(child instanceof TreeListItemNode)) {
|
|
@@ -82,20 +76,14 @@ export class TreeListItemNode extends VirtualNode {
|
|
|
82
76
|
if (!this.store) {
|
|
83
77
|
return;
|
|
84
78
|
}
|
|
85
|
-
|
|
79
|
+
const propsChanged = !oldProps ||
|
|
86
80
|
oldProps.id !== newProps.id ||
|
|
87
81
|
oldProps.value !== newProps.value ||
|
|
88
82
|
oldProps.indentForDepth !== newProps.indentForDepth ||
|
|
89
83
|
oldProps.indentForIcon !== newProps.indentForIcon ||
|
|
90
|
-
oldProps.hideExpander !== newProps.hideExpander
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
value: newProps.value,
|
|
94
|
-
indentForDepth: newProps.indentForDepth,
|
|
95
|
-
indentForIcon: newProps.indentForIcon,
|
|
96
|
-
hideExpander: newProps.hideExpander,
|
|
97
|
-
});
|
|
98
|
-
}
|
|
84
|
+
oldProps.hideExpander !== newProps.hideExpander;
|
|
85
|
+
if (propsChanged && newProps.id !== undefined) {
|
|
86
|
+
this.store.updateItem(newProps.id, createTreeItemData(newProps));
|
|
99
87
|
}
|
|
100
88
|
}
|
|
101
89
|
}
|
|
@@ -25,15 +25,20 @@ class TreeListViewNode extends WidgetNode {
|
|
|
25
25
|
selectionMode: props.selectionMode,
|
|
26
26
|
selected: props.selected,
|
|
27
27
|
onSelectionChanged: props.onSelectionChanged,
|
|
28
|
-
});
|
|
29
|
-
this.itemRenderer = new TreeListItemRenderer();
|
|
28
|
+
}, rootContainer);
|
|
29
|
+
this.itemRenderer = new TreeListItemRenderer(this.signalStore);
|
|
30
30
|
this.itemRenderer.setStore(this.treeList.getStore());
|
|
31
|
+
this.treeList.getStore().setOnItemUpdated((id) => this.itemRenderer.rebindItem(id));
|
|
31
32
|
this.container.setFactory(this.itemRenderer.getFactory());
|
|
32
33
|
}
|
|
33
34
|
mount() {
|
|
34
35
|
super.mount();
|
|
35
36
|
this.container.setModel(this.treeList.getSelectionModel());
|
|
36
37
|
}
|
|
38
|
+
unmount() {
|
|
39
|
+
this.itemRenderer.dispose();
|
|
40
|
+
super.unmount();
|
|
41
|
+
}
|
|
37
42
|
appendChild(child) {
|
|
38
43
|
if (!(child instanceof TreeListItemNode)) {
|
|
39
44
|
throw new Error(`Cannot append '${child.typeName}' to 'TreeListView': expected x.TreeListItem`);
|
|
@@ -54,10 +59,10 @@ class TreeListViewNode extends WidgetNode {
|
|
|
54
59
|
}
|
|
55
60
|
updateProps(oldProps, newProps) {
|
|
56
61
|
if (!oldProps || oldProps.renderItem !== newProps.renderItem) {
|
|
57
|
-
this.itemRenderer.setRenderFn(newProps.renderItem);
|
|
62
|
+
this.itemRenderer.setRenderFn(newProps.renderItem ?? null);
|
|
58
63
|
}
|
|
59
64
|
if (!oldProps || oldProps.estimatedItemHeight !== newProps.estimatedItemHeight) {
|
|
60
|
-
this.itemRenderer.setEstimatedItemHeight(newProps.estimatedItemHeight);
|
|
65
|
+
this.itemRenderer.setEstimatedItemHeight(newProps.estimatedItemHeight ?? null);
|
|
61
66
|
}
|
|
62
67
|
const previousModel = this.treeList.getSelectionModel();
|
|
63
68
|
this.treeList.updateProps(oldProps ? filterProps(oldProps, RENDERER_PROP_NAMES) : null, filterProps(newProps, RENDERER_PROP_NAMES));
|
package/dist/nodes/virtual.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare class VirtualNode<P = Props> extends Node<undefined, P> {
|
|
|
5
5
|
static matches(_type: string): boolean;
|
|
6
6
|
static createContainer(): void;
|
|
7
7
|
props: P;
|
|
8
|
-
constructor(typeName: string, props: P | undefined, container: undefined, rootContainer
|
|
8
|
+
constructor(typeName: string, props: P | undefined, container: undefined, rootContainer: Container);
|
|
9
9
|
appendChild(_child: Node): void;
|
|
10
10
|
removeChild(_child: Node): void;
|
|
11
11
|
insertBefore(_child: Node, _before: Node): void;
|
package/dist/nodes/widget.d.ts
CHANGED
|
@@ -3,14 +3,8 @@ import { Node } from "../node.js";
|
|
|
3
3
|
import type { Container, ContainerClass, Props } from "../types.js";
|
|
4
4
|
export declare class WidgetNode<T extends Gtk.Widget = Gtk.Widget, P extends Props = Props> extends Node<T, P> {
|
|
5
5
|
static priority: number;
|
|
6
|
-
private motionController?;
|
|
7
|
-
private clickController?;
|
|
8
|
-
private keyController?;
|
|
9
|
-
private scrollController?;
|
|
10
|
-
private dragSourceController?;
|
|
11
|
-
private dropTargetController?;
|
|
12
6
|
static matches(_type: string, containerOrClass?: Container | ContainerClass | null): boolean;
|
|
13
|
-
static createContainer(props: Props, containerClass: typeof Gtk.Widget): Container | null;
|
|
7
|
+
static createContainer(props: Props, containerClass: typeof Gtk.Widget, _rootContainer?: Container): Container | null;
|
|
14
8
|
appendChild(child: Node): void;
|
|
15
9
|
removeChild(child: Node): void;
|
|
16
10
|
insertBefore(child: Node, before: Node): void;
|
|
@@ -18,12 +12,8 @@ export declare class WidgetNode<T extends Gtk.Widget = Gtk.Widget, P extends Pro
|
|
|
18
12
|
private insertBeforeInsertable;
|
|
19
13
|
updateProps(oldProps: P | null, newProps: P): void;
|
|
20
14
|
private updateSizeRequest;
|
|
21
|
-
private
|
|
22
|
-
private
|
|
23
|
-
private ensureDropTarget;
|
|
24
|
-
private updateNotifyHandler;
|
|
25
|
-
private propNameToSignalName;
|
|
26
|
-
private getProperty;
|
|
15
|
+
private updateGrabFocus;
|
|
16
|
+
private getPropertyDefaultValue;
|
|
27
17
|
private setProperty;
|
|
28
18
|
private detachChildFromParent;
|
|
29
19
|
private attachChild;
|