@gtkx/react 0.1.11
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/LICENSE +373 -0
- package/README.md +390 -0
- package/dist/codegen/jsx-generator.d.ts +37 -0
- package/dist/codegen/jsx-generator.js +554 -0
- package/dist/factory.d.ts +3 -0
- package/dist/factory.js +59 -0
- package/dist/generated/jsx.d.ts +1598 -0
- package/dist/generated/jsx.js +264 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +14 -0
- package/dist/node.d.ts +13 -0
- package/dist/node.js +1 -0
- package/dist/nodes/action-bar.d.ts +27 -0
- package/dist/nodes/action-bar.js +88 -0
- package/dist/nodes/dialog.d.ts +19 -0
- package/dist/nodes/dialog.js +87 -0
- package/dist/nodes/dropdown.d.ts +41 -0
- package/dist/nodes/dropdown.js +163 -0
- package/dist/nodes/grid.d.ts +41 -0
- package/dist/nodes/grid.js +140 -0
- package/dist/nodes/list.d.ts +46 -0
- package/dist/nodes/list.js +165 -0
- package/dist/nodes/notebook.d.ts +25 -0
- package/dist/nodes/notebook.js +88 -0
- package/dist/nodes/overlay.d.ts +29 -0
- package/dist/nodes/overlay.js +109 -0
- package/dist/nodes/slot.d.ts +17 -0
- package/dist/nodes/slot.js +55 -0
- package/dist/nodes/text.d.ts +16 -0
- package/dist/nodes/text.js +31 -0
- package/dist/nodes/widget.d.ts +19 -0
- package/dist/nodes/widget.js +136 -0
- package/dist/portal.d.ts +3 -0
- package/dist/portal.js +11 -0
- package/dist/reconciler.d.ts +20 -0
- package/dist/reconciler.js +111 -0
- package/dist/render.d.ts +5 -0
- package/dist/render.js +12 -0
- package/dist/signal-utils.d.ts +4 -0
- package/dist/signal-utils.js +7 -0
- package/dist/types.d.ts +13 -0
- package/dist/types.js +1 -0
- package/dist/widget-capabilities.d.ts +46 -0
- package/dist/widget-capabilities.js +32 -0
- package/package.json +52 -0
|
@@ -0,0 +1,1598 @@
|
|
|
1
|
+
import type { ReactNode, Ref } from "react";
|
|
2
|
+
import type * as Gdk from "@gtkx/ffi/gdk";
|
|
3
|
+
import type * as Gio from "@gtkx/ffi/gio";
|
|
4
|
+
import type * as Gtk from "@gtkx/ffi/gtk";
|
|
5
|
+
import type { GridChildProps, ItemProps, SlotProps } from "../types.js";
|
|
6
|
+
export { SlotProps, GridChildProps, ItemProps };
|
|
7
|
+
export interface WidgetProps {
|
|
8
|
+
canFocus?: boolean;
|
|
9
|
+
canTarget?: boolean;
|
|
10
|
+
cssClasses?: string[];
|
|
11
|
+
cssName?: string;
|
|
12
|
+
cursor?: unknown;
|
|
13
|
+
focusOnClick?: boolean;
|
|
14
|
+
focusable?: boolean;
|
|
15
|
+
halign?: Gtk.Align;
|
|
16
|
+
hasDefault?: boolean;
|
|
17
|
+
hasFocus?: boolean;
|
|
18
|
+
hasTooltip?: boolean;
|
|
19
|
+
heightRequest?: number;
|
|
20
|
+
hexpand?: boolean;
|
|
21
|
+
hexpandSet?: boolean;
|
|
22
|
+
layoutManager?: Gtk.LayoutManager;
|
|
23
|
+
limitEvents?: boolean;
|
|
24
|
+
marginBottom?: number;
|
|
25
|
+
marginEnd?: number;
|
|
26
|
+
marginStart?: number;
|
|
27
|
+
marginTop?: number;
|
|
28
|
+
name?: string;
|
|
29
|
+
opacity?: number;
|
|
30
|
+
overflow?: Gtk.Overflow;
|
|
31
|
+
parent?: Gtk.Widget;
|
|
32
|
+
receivesDefault?: boolean;
|
|
33
|
+
root?: Gtk.Root;
|
|
34
|
+
scaleFactor?: number;
|
|
35
|
+
sensitive?: boolean;
|
|
36
|
+
tooltipMarkup?: string;
|
|
37
|
+
tooltipText?: string;
|
|
38
|
+
valign?: Gtk.Align;
|
|
39
|
+
vexpand?: boolean;
|
|
40
|
+
vexpandSet?: boolean;
|
|
41
|
+
visible?: boolean;
|
|
42
|
+
widthRequest?: number;
|
|
43
|
+
onDestroy?: () => void;
|
|
44
|
+
onDirectionChanged?: (previousDirection: Gtk.TextDirection) => void;
|
|
45
|
+
onHide?: () => void;
|
|
46
|
+
onKeynavFailed?: (direction: Gtk.DirectionType) => boolean;
|
|
47
|
+
onMap?: () => void;
|
|
48
|
+
onMnemonicActivate?: (groupCycling: boolean) => boolean;
|
|
49
|
+
onMoveFocus?: (direction: Gtk.DirectionType) => void;
|
|
50
|
+
onQueryTooltip?: (x: number, y: number, keyboardMode: boolean, tooltip: Gtk.Tooltip) => boolean;
|
|
51
|
+
onRealize?: () => void;
|
|
52
|
+
onShow?: () => void;
|
|
53
|
+
onStateFlagsChanged?: (flags: Gtk.StateFlags) => void;
|
|
54
|
+
onUnmap?: () => void;
|
|
55
|
+
onUnrealize?: () => void;
|
|
56
|
+
children?: ReactNode;
|
|
57
|
+
}
|
|
58
|
+
export interface WindowProps extends WidgetProps {
|
|
59
|
+
application?: Gtk.Application;
|
|
60
|
+
decorated?: boolean;
|
|
61
|
+
defaultHeight?: number;
|
|
62
|
+
defaultWidth?: number;
|
|
63
|
+
deletable?: boolean;
|
|
64
|
+
destroyWithParent?: boolean;
|
|
65
|
+
display?: unknown;
|
|
66
|
+
focusVisible?: boolean;
|
|
67
|
+
fullscreened?: boolean;
|
|
68
|
+
gravity?: Gtk.WindowGravity;
|
|
69
|
+
handleMenubarAccel?: boolean;
|
|
70
|
+
hideOnClose?: boolean;
|
|
71
|
+
iconName?: string;
|
|
72
|
+
isActive?: boolean;
|
|
73
|
+
maximized?: boolean;
|
|
74
|
+
mnemonicsVisible?: boolean;
|
|
75
|
+
modal?: boolean;
|
|
76
|
+
resizable?: boolean;
|
|
77
|
+
startupId?: string;
|
|
78
|
+
suspended?: boolean;
|
|
79
|
+
title?: string;
|
|
80
|
+
onActivateDefault?: () => void;
|
|
81
|
+
onActivateFocus?: () => void;
|
|
82
|
+
onCloseRequest?: () => boolean;
|
|
83
|
+
onEnableDebugging?: (toggle: boolean) => boolean;
|
|
84
|
+
onKeysChanged?: () => void;
|
|
85
|
+
ref?: Ref<Gtk.Window>;
|
|
86
|
+
}
|
|
87
|
+
export interface AboutDialogProps extends WindowProps {
|
|
88
|
+
artists?: string[];
|
|
89
|
+
authors?: string[];
|
|
90
|
+
comments?: string;
|
|
91
|
+
copyright?: string;
|
|
92
|
+
documenters?: string[];
|
|
93
|
+
license?: string;
|
|
94
|
+
licenseType?: Gtk.License;
|
|
95
|
+
logo?: unknown;
|
|
96
|
+
logoIconName?: string;
|
|
97
|
+
programName?: string;
|
|
98
|
+
systemInformation?: string;
|
|
99
|
+
translatorCredits?: string;
|
|
100
|
+
version?: string;
|
|
101
|
+
website?: string;
|
|
102
|
+
websiteLabel?: string;
|
|
103
|
+
wrapLicense?: boolean;
|
|
104
|
+
onActivateLink?: (uri: string) => boolean;
|
|
105
|
+
ref?: Ref<Gtk.AboutDialog>;
|
|
106
|
+
}
|
|
107
|
+
export interface ActionBarProps extends WidgetProps {
|
|
108
|
+
revealed?: boolean;
|
|
109
|
+
ref?: Ref<Gtk.ActionBar>;
|
|
110
|
+
}
|
|
111
|
+
export interface AppChooserButtonProps extends WidgetProps {
|
|
112
|
+
heading?: string;
|
|
113
|
+
modal?: boolean;
|
|
114
|
+
showDefaultItem?: boolean;
|
|
115
|
+
showDialogItem?: boolean;
|
|
116
|
+
contentType: string;
|
|
117
|
+
onActivate?: () => void;
|
|
118
|
+
onChanged?: () => void;
|
|
119
|
+
onCustomItemActivated?: (itemName: string) => void;
|
|
120
|
+
ref?: Ref<Gtk.AppChooserButton>;
|
|
121
|
+
}
|
|
122
|
+
export interface AppChooserDialogProps extends DialogProps {
|
|
123
|
+
gfile: unknown;
|
|
124
|
+
heading?: string;
|
|
125
|
+
contentType?: string;
|
|
126
|
+
ref?: Ref<Gtk.AppChooserDialog>;
|
|
127
|
+
}
|
|
128
|
+
export interface AppChooserWidgetProps extends WidgetProps {
|
|
129
|
+
defaultText?: string;
|
|
130
|
+
showAll?: boolean;
|
|
131
|
+
showDefault?: boolean;
|
|
132
|
+
showFallback?: boolean;
|
|
133
|
+
showOther?: boolean;
|
|
134
|
+
showRecommended?: boolean;
|
|
135
|
+
contentType: string;
|
|
136
|
+
onApplicationActivated?: (application: Gio.AppInfo) => void;
|
|
137
|
+
onApplicationSelected?: (application: Gio.AppInfo) => void;
|
|
138
|
+
ref?: Ref<Gtk.AppChooserWidget>;
|
|
139
|
+
}
|
|
140
|
+
export interface ApplicationWindowProps extends WindowProps {
|
|
141
|
+
showMenubar?: boolean;
|
|
142
|
+
ref?: Ref<Gtk.ApplicationWindow>;
|
|
143
|
+
}
|
|
144
|
+
export interface AspectFrameProps extends WidgetProps {
|
|
145
|
+
obeyChild: boolean;
|
|
146
|
+
ratio: number;
|
|
147
|
+
xalign: number;
|
|
148
|
+
yalign: number;
|
|
149
|
+
ref?: Ref<Gtk.AspectFrame>;
|
|
150
|
+
}
|
|
151
|
+
export interface AssistantProps extends WindowProps {
|
|
152
|
+
pages?: unknown;
|
|
153
|
+
useHeaderBar?: number;
|
|
154
|
+
onApply?: () => void;
|
|
155
|
+
onCancel?: () => void;
|
|
156
|
+
onClose?: () => void;
|
|
157
|
+
onEscape?: () => void;
|
|
158
|
+
onPrepare?: (page: Gtk.Widget) => void;
|
|
159
|
+
ref?: Ref<Gtk.Assistant>;
|
|
160
|
+
}
|
|
161
|
+
export interface BoxProps extends WidgetProps {
|
|
162
|
+
baselineChild?: number;
|
|
163
|
+
baselinePosition?: Gtk.BaselinePosition;
|
|
164
|
+
homogeneous?: boolean;
|
|
165
|
+
spacing: number;
|
|
166
|
+
orientation: Gtk.Orientation;
|
|
167
|
+
ref?: Ref<Gtk.Box>;
|
|
168
|
+
}
|
|
169
|
+
export interface ButtonProps extends WidgetProps {
|
|
170
|
+
canShrink?: boolean;
|
|
171
|
+
hasFrame?: boolean;
|
|
172
|
+
iconName?: string;
|
|
173
|
+
label?: string;
|
|
174
|
+
useUnderline?: boolean;
|
|
175
|
+
actionName?: string;
|
|
176
|
+
actionTarget?: unknown;
|
|
177
|
+
onActivate?: () => void;
|
|
178
|
+
onClicked?: () => void;
|
|
179
|
+
ref?: Ref<Gtk.Button>;
|
|
180
|
+
}
|
|
181
|
+
export interface CalendarProps extends WidgetProps {
|
|
182
|
+
date?: unknown;
|
|
183
|
+
day?: number;
|
|
184
|
+
month?: number;
|
|
185
|
+
showDayNames?: boolean;
|
|
186
|
+
showHeading?: boolean;
|
|
187
|
+
showWeekNumbers?: boolean;
|
|
188
|
+
year?: number;
|
|
189
|
+
onDaySelected?: () => void;
|
|
190
|
+
onNextMonth?: () => void;
|
|
191
|
+
onNextYear?: () => void;
|
|
192
|
+
onPrevMonth?: () => void;
|
|
193
|
+
onPrevYear?: () => void;
|
|
194
|
+
ref?: Ref<Gtk.Calendar>;
|
|
195
|
+
}
|
|
196
|
+
export interface CellViewProps extends WidgetProps {
|
|
197
|
+
cellArea: Gtk.CellArea;
|
|
198
|
+
cellAreaContext: Gtk.CellAreaContext;
|
|
199
|
+
drawSensitive?: boolean;
|
|
200
|
+
fitModel?: boolean;
|
|
201
|
+
model?: Gtk.TreeModel;
|
|
202
|
+
orientation?: Gtk.Orientation;
|
|
203
|
+
ref?: Ref<Gtk.CellView>;
|
|
204
|
+
}
|
|
205
|
+
export interface CenterBoxProps extends WidgetProps {
|
|
206
|
+
baselinePosition?: Gtk.BaselinePosition;
|
|
207
|
+
shrinkCenterLast?: boolean;
|
|
208
|
+
orientation?: Gtk.Orientation;
|
|
209
|
+
ref?: Ref<Gtk.CenterBox>;
|
|
210
|
+
}
|
|
211
|
+
export interface CheckButtonProps extends WidgetProps {
|
|
212
|
+
active?: boolean;
|
|
213
|
+
inconsistent?: boolean;
|
|
214
|
+
label?: string;
|
|
215
|
+
useUnderline?: boolean;
|
|
216
|
+
actionName?: string;
|
|
217
|
+
actionTarget?: unknown;
|
|
218
|
+
onActivate?: () => void;
|
|
219
|
+
onToggled?: () => void;
|
|
220
|
+
ref?: Ref<Gtk.CheckButton>;
|
|
221
|
+
}
|
|
222
|
+
export interface ColorButtonProps extends WidgetProps {
|
|
223
|
+
modal?: boolean;
|
|
224
|
+
showEditor?: boolean;
|
|
225
|
+
title?: string;
|
|
226
|
+
rgba?: unknown;
|
|
227
|
+
useAlpha?: boolean;
|
|
228
|
+
onActivate?: () => void;
|
|
229
|
+
onColorSet?: () => void;
|
|
230
|
+
onColorActivated?: (color: Gdk.RGBA) => void;
|
|
231
|
+
ref?: Ref<Gtk.ColorButton>;
|
|
232
|
+
}
|
|
233
|
+
export interface ColorChooserDialogProps extends DialogProps {
|
|
234
|
+
showEditor?: boolean;
|
|
235
|
+
rgba?: unknown;
|
|
236
|
+
useAlpha?: boolean;
|
|
237
|
+
onColorActivated?: (color: Gdk.RGBA) => void;
|
|
238
|
+
ref?: Ref<Gtk.ColorChooserDialog>;
|
|
239
|
+
}
|
|
240
|
+
export interface ColorChooserWidgetProps extends WidgetProps {
|
|
241
|
+
showEditor?: boolean;
|
|
242
|
+
rgba?: unknown;
|
|
243
|
+
useAlpha?: boolean;
|
|
244
|
+
onColorActivated?: (color: Gdk.RGBA) => void;
|
|
245
|
+
ref?: Ref<Gtk.ColorChooserWidget>;
|
|
246
|
+
}
|
|
247
|
+
export interface ColorDialogButtonProps extends WidgetProps {
|
|
248
|
+
dialog?: Gtk.ColorDialog;
|
|
249
|
+
rgba?: unknown;
|
|
250
|
+
onActivate?: () => void;
|
|
251
|
+
ref?: Ref<Gtk.ColorDialogButton>;
|
|
252
|
+
}
|
|
253
|
+
export interface ColumnViewProps extends WidgetProps {
|
|
254
|
+
columns?: unknown;
|
|
255
|
+
enableRubberband?: boolean;
|
|
256
|
+
headerFactory?: Gtk.ListItemFactory;
|
|
257
|
+
model?: Gtk.SelectionModel;
|
|
258
|
+
reorderable?: boolean;
|
|
259
|
+
rowFactory?: Gtk.ListItemFactory;
|
|
260
|
+
showColumnSeparators?: boolean;
|
|
261
|
+
showRowSeparators?: boolean;
|
|
262
|
+
singleClickActivate?: boolean;
|
|
263
|
+
sorter?: Gtk.Sorter;
|
|
264
|
+
tabBehavior?: Gtk.ListTabBehavior;
|
|
265
|
+
hadjustment?: Gtk.Adjustment;
|
|
266
|
+
hscrollPolicy?: Gtk.ScrollablePolicy;
|
|
267
|
+
vadjustment?: Gtk.Adjustment;
|
|
268
|
+
vscrollPolicy?: Gtk.ScrollablePolicy;
|
|
269
|
+
onActivate?: (position: number) => void;
|
|
270
|
+
renderItem?: (item: any) => Gtk.Widget;
|
|
271
|
+
ref?: Ref<Gtk.ColumnView>;
|
|
272
|
+
}
|
|
273
|
+
export interface ComboBoxProps extends WidgetProps {
|
|
274
|
+
active?: number;
|
|
275
|
+
activeId?: string;
|
|
276
|
+
buttonSensitivity?: Gtk.SensitivityType;
|
|
277
|
+
entryTextColumn?: number;
|
|
278
|
+
hasEntry?: boolean;
|
|
279
|
+
hasFrame?: boolean;
|
|
280
|
+
idColumn?: number;
|
|
281
|
+
model?: Gtk.TreeModel;
|
|
282
|
+
popupFixedWidth?: boolean;
|
|
283
|
+
popupShown?: boolean;
|
|
284
|
+
editingCanceled?: boolean;
|
|
285
|
+
onActivate?: () => void;
|
|
286
|
+
onChanged?: () => void;
|
|
287
|
+
onFormatEntryText?: (path: string) => string;
|
|
288
|
+
onMoveActive?: (scrollType: Gtk.ScrollType) => void;
|
|
289
|
+
onPopdown?: () => boolean;
|
|
290
|
+
onPopup?: () => void;
|
|
291
|
+
onEditingDone?: () => void;
|
|
292
|
+
onRemoveWidget?: () => void;
|
|
293
|
+
ref?: Ref<Gtk.ComboBox>;
|
|
294
|
+
}
|
|
295
|
+
export interface ComboBoxTextProps extends ComboBoxProps {
|
|
296
|
+
ref?: Ref<Gtk.ComboBoxText>;
|
|
297
|
+
}
|
|
298
|
+
export interface DialogProps extends WindowProps {
|
|
299
|
+
useHeaderBar?: number;
|
|
300
|
+
onClose?: () => void;
|
|
301
|
+
onResponse?: (responseId: number) => void;
|
|
302
|
+
ref?: Ref<Gtk.Dialog>;
|
|
303
|
+
}
|
|
304
|
+
export interface DragIconProps extends WidgetProps {
|
|
305
|
+
ref?: Ref<Gtk.DragIcon>;
|
|
306
|
+
}
|
|
307
|
+
export interface DrawingAreaProps extends WidgetProps {
|
|
308
|
+
contentHeight?: number;
|
|
309
|
+
contentWidth?: number;
|
|
310
|
+
onResize?: (width: number, height: number) => void;
|
|
311
|
+
ref?: Ref<Gtk.DrawingArea>;
|
|
312
|
+
}
|
|
313
|
+
export interface DropDownProps extends WidgetProps {
|
|
314
|
+
enableSearch?: boolean;
|
|
315
|
+
expression?: Gtk.Expression;
|
|
316
|
+
factory?: Gtk.ListItemFactory;
|
|
317
|
+
headerFactory?: Gtk.ListItemFactory;
|
|
318
|
+
listFactory?: Gtk.ListItemFactory;
|
|
319
|
+
model?: unknown;
|
|
320
|
+
searchMatchMode?: Gtk.StringFilterMatchMode;
|
|
321
|
+
selected?: number;
|
|
322
|
+
selectedItem?: unknown;
|
|
323
|
+
showArrow?: boolean;
|
|
324
|
+
onActivate?: () => void;
|
|
325
|
+
itemLabel?: (item: any) => string;
|
|
326
|
+
onSelectionChanged?: (item: any, index: number) => void;
|
|
327
|
+
ref?: Ref<Gtk.DropDown>;
|
|
328
|
+
}
|
|
329
|
+
export interface EditableLabelProps extends WidgetProps {
|
|
330
|
+
editing?: boolean;
|
|
331
|
+
cursorPosition?: number;
|
|
332
|
+
editable?: boolean;
|
|
333
|
+
enableUndo?: boolean;
|
|
334
|
+
maxWidthChars?: number;
|
|
335
|
+
selectionBound?: number;
|
|
336
|
+
text?: string;
|
|
337
|
+
widthChars?: number;
|
|
338
|
+
xalign?: number;
|
|
339
|
+
onChanged?: () => void;
|
|
340
|
+
onDeleteText?: (startPos: number, endPos: number) => void;
|
|
341
|
+
onInsertText?: (text: string, length: number, position: Ref<number>) => void;
|
|
342
|
+
ref?: Ref<Gtk.EditableLabel>;
|
|
343
|
+
}
|
|
344
|
+
export interface EmojiChooserProps extends PopoverProps {
|
|
345
|
+
onEmojiPicked?: (text: string) => void;
|
|
346
|
+
ref?: Ref<Gtk.EmojiChooser>;
|
|
347
|
+
}
|
|
348
|
+
export interface EntryProps extends WidgetProps {
|
|
349
|
+
activatesDefault?: boolean;
|
|
350
|
+
attributes?: unknown;
|
|
351
|
+
buffer?: Gtk.EntryBuffer;
|
|
352
|
+
completion?: Gtk.EntryCompletion;
|
|
353
|
+
enableEmojiCompletion?: boolean;
|
|
354
|
+
extraMenu?: unknown;
|
|
355
|
+
hasFrame?: boolean;
|
|
356
|
+
imModule?: string;
|
|
357
|
+
inputHints?: Gtk.InputHints;
|
|
358
|
+
inputPurpose?: Gtk.InputPurpose;
|
|
359
|
+
invisibleChar?: number;
|
|
360
|
+
invisibleCharSet?: boolean;
|
|
361
|
+
maxLength?: number;
|
|
362
|
+
menuEntryIconPrimaryText?: string;
|
|
363
|
+
menuEntryIconSecondaryText?: string;
|
|
364
|
+
overwriteMode?: boolean;
|
|
365
|
+
placeholderText?: string;
|
|
366
|
+
primaryIconActivatable?: boolean;
|
|
367
|
+
primaryIconGicon?: unknown;
|
|
368
|
+
primaryIconName?: string;
|
|
369
|
+
primaryIconPaintable?: unknown;
|
|
370
|
+
primaryIconSensitive?: boolean;
|
|
371
|
+
primaryIconStorageType?: Gtk.ImageType;
|
|
372
|
+
primaryIconTooltipMarkup?: string;
|
|
373
|
+
primaryIconTooltipText?: string;
|
|
374
|
+
progressFraction?: number;
|
|
375
|
+
progressPulseStep?: number;
|
|
376
|
+
scrollOffset?: number;
|
|
377
|
+
secondaryIconActivatable?: boolean;
|
|
378
|
+
secondaryIconGicon?: unknown;
|
|
379
|
+
secondaryIconName?: string;
|
|
380
|
+
secondaryIconPaintable?: unknown;
|
|
381
|
+
secondaryIconSensitive?: boolean;
|
|
382
|
+
secondaryIconStorageType?: Gtk.ImageType;
|
|
383
|
+
secondaryIconTooltipMarkup?: string;
|
|
384
|
+
secondaryIconTooltipText?: string;
|
|
385
|
+
showEmojiIcon?: boolean;
|
|
386
|
+
tabs?: unknown;
|
|
387
|
+
textLength?: number;
|
|
388
|
+
truncateMultiline?: boolean;
|
|
389
|
+
visibility?: boolean;
|
|
390
|
+
editingCanceled?: boolean;
|
|
391
|
+
cursorPosition?: number;
|
|
392
|
+
editable?: boolean;
|
|
393
|
+
enableUndo?: boolean;
|
|
394
|
+
maxWidthChars?: number;
|
|
395
|
+
selectionBound?: number;
|
|
396
|
+
text?: string;
|
|
397
|
+
widthChars?: number;
|
|
398
|
+
xalign?: number;
|
|
399
|
+
onActivate?: () => void;
|
|
400
|
+
onIconPress?: (iconPos: Gtk.EntryIconPosition) => void;
|
|
401
|
+
onIconRelease?: (iconPos: Gtk.EntryIconPosition) => void;
|
|
402
|
+
onEditingDone?: () => void;
|
|
403
|
+
onRemoveWidget?: () => void;
|
|
404
|
+
onChanged?: () => void;
|
|
405
|
+
onDeleteText?: (startPos: number, endPos: number) => void;
|
|
406
|
+
onInsertText?: (text: string, length: number, position: Ref<number>) => void;
|
|
407
|
+
ref?: Ref<Gtk.Entry>;
|
|
408
|
+
}
|
|
409
|
+
export interface ExpanderProps extends WidgetProps {
|
|
410
|
+
expanded?: boolean;
|
|
411
|
+
label?: string;
|
|
412
|
+
resizeToplevel?: boolean;
|
|
413
|
+
useMarkup?: boolean;
|
|
414
|
+
useUnderline?: boolean;
|
|
415
|
+
onActivate?: () => void;
|
|
416
|
+
ref?: Ref<Gtk.Expander>;
|
|
417
|
+
}
|
|
418
|
+
export interface FileChooserDialogProps extends DialogProps {
|
|
419
|
+
action?: Gtk.FileChooserAction;
|
|
420
|
+
createFolders?: boolean;
|
|
421
|
+
filter?: Gtk.FileFilter;
|
|
422
|
+
filters?: unknown;
|
|
423
|
+
selectMultiple?: boolean;
|
|
424
|
+
shortcutFolders?: unknown;
|
|
425
|
+
ref?: Ref<Gtk.FileChooserDialog>;
|
|
426
|
+
}
|
|
427
|
+
export interface FileChooserWidgetProps extends WidgetProps {
|
|
428
|
+
searchMode?: boolean;
|
|
429
|
+
showTime?: boolean;
|
|
430
|
+
subtitle?: string;
|
|
431
|
+
action: Gtk.FileChooserAction;
|
|
432
|
+
createFolders?: boolean;
|
|
433
|
+
filter?: Gtk.FileFilter;
|
|
434
|
+
filters?: unknown;
|
|
435
|
+
selectMultiple?: boolean;
|
|
436
|
+
shortcutFolders?: unknown;
|
|
437
|
+
onDesktopFolder?: () => void;
|
|
438
|
+
onDownFolder?: () => void;
|
|
439
|
+
onHomeFolder?: () => void;
|
|
440
|
+
onLocationPopup?: (path: string) => void;
|
|
441
|
+
onLocationPopupOnPaste?: () => void;
|
|
442
|
+
onLocationTogglePopup?: () => void;
|
|
443
|
+
onPlacesShortcut?: () => void;
|
|
444
|
+
onQuickBookmark?: (bookmarkIndex: number) => void;
|
|
445
|
+
onRecentShortcut?: () => void;
|
|
446
|
+
onSearchShortcut?: () => void;
|
|
447
|
+
onShowHidden?: () => void;
|
|
448
|
+
onUpFolder?: () => void;
|
|
449
|
+
ref?: Ref<Gtk.FileChooserWidget>;
|
|
450
|
+
}
|
|
451
|
+
export interface FixedProps extends WidgetProps {
|
|
452
|
+
ref?: Ref<Gtk.Fixed>;
|
|
453
|
+
}
|
|
454
|
+
export interface FlowBoxProps extends WidgetProps {
|
|
455
|
+
acceptUnpairedRelease?: boolean;
|
|
456
|
+
activateOnSingleClick?: boolean;
|
|
457
|
+
columnSpacing?: number;
|
|
458
|
+
homogeneous?: boolean;
|
|
459
|
+
maxChildrenPerLine?: number;
|
|
460
|
+
minChildrenPerLine?: number;
|
|
461
|
+
rowSpacing?: number;
|
|
462
|
+
selectionMode?: Gtk.SelectionMode;
|
|
463
|
+
orientation?: Gtk.Orientation;
|
|
464
|
+
onActivateCursorChild?: () => void;
|
|
465
|
+
onChildActivated?: (child: Gtk.FlowBoxChild) => void;
|
|
466
|
+
onMoveCursor?: (step: Gtk.MovementStep, count: number, extend: boolean, modify: boolean) => boolean;
|
|
467
|
+
onSelectAll?: () => void;
|
|
468
|
+
onSelectedChildrenChanged?: () => void;
|
|
469
|
+
onToggleCursorChild?: () => void;
|
|
470
|
+
onUnselectAll?: () => void;
|
|
471
|
+
ref?: Ref<Gtk.FlowBox>;
|
|
472
|
+
}
|
|
473
|
+
export interface FlowBoxChildProps extends WidgetProps {
|
|
474
|
+
onActivate?: () => void;
|
|
475
|
+
ref?: Ref<Gtk.FlowBoxChild>;
|
|
476
|
+
}
|
|
477
|
+
export interface FontButtonProps extends WidgetProps {
|
|
478
|
+
modal?: boolean;
|
|
479
|
+
title?: string;
|
|
480
|
+
useFont?: boolean;
|
|
481
|
+
useSize?: boolean;
|
|
482
|
+
font?: string;
|
|
483
|
+
fontDesc?: unknown;
|
|
484
|
+
fontFeatures?: string;
|
|
485
|
+
language?: string;
|
|
486
|
+
level?: Gtk.FontChooserLevel;
|
|
487
|
+
previewText?: string;
|
|
488
|
+
showPreviewEntry?: boolean;
|
|
489
|
+
onActivate?: () => void;
|
|
490
|
+
onFontSet?: () => void;
|
|
491
|
+
onFontActivated?: (fontname: string) => void;
|
|
492
|
+
ref?: Ref<Gtk.FontButton>;
|
|
493
|
+
}
|
|
494
|
+
export interface FontChooserDialogProps extends DialogProps {
|
|
495
|
+
font?: string;
|
|
496
|
+
fontDesc?: unknown;
|
|
497
|
+
fontFeatures?: string;
|
|
498
|
+
language?: string;
|
|
499
|
+
level?: Gtk.FontChooserLevel;
|
|
500
|
+
previewText?: string;
|
|
501
|
+
showPreviewEntry?: boolean;
|
|
502
|
+
onFontActivated?: (fontname: string) => void;
|
|
503
|
+
ref?: Ref<Gtk.FontChooserDialog>;
|
|
504
|
+
}
|
|
505
|
+
export interface FontChooserWidgetProps extends WidgetProps {
|
|
506
|
+
tweakAction?: unknown;
|
|
507
|
+
font?: string;
|
|
508
|
+
fontDesc?: unknown;
|
|
509
|
+
fontFeatures?: string;
|
|
510
|
+
language?: string;
|
|
511
|
+
level?: Gtk.FontChooserLevel;
|
|
512
|
+
previewText?: string;
|
|
513
|
+
showPreviewEntry?: boolean;
|
|
514
|
+
onFontActivated?: (fontname: string) => void;
|
|
515
|
+
ref?: Ref<Gtk.FontChooserWidget>;
|
|
516
|
+
}
|
|
517
|
+
export interface FontDialogButtonProps extends WidgetProps {
|
|
518
|
+
dialog?: Gtk.FontDialog;
|
|
519
|
+
fontDesc?: unknown;
|
|
520
|
+
fontFeatures?: string;
|
|
521
|
+
language?: unknown;
|
|
522
|
+
level?: Gtk.FontLevel;
|
|
523
|
+
useFont?: boolean;
|
|
524
|
+
useSize?: boolean;
|
|
525
|
+
onActivate?: () => void;
|
|
526
|
+
ref?: Ref<Gtk.FontDialogButton>;
|
|
527
|
+
}
|
|
528
|
+
export interface FrameProps extends WidgetProps {
|
|
529
|
+
label?: string;
|
|
530
|
+
labelXalign?: number;
|
|
531
|
+
ref?: Ref<Gtk.Frame>;
|
|
532
|
+
}
|
|
533
|
+
export interface GLAreaProps extends WidgetProps {
|
|
534
|
+
allowedApis?: unknown;
|
|
535
|
+
api?: unknown;
|
|
536
|
+
autoRender?: boolean;
|
|
537
|
+
context?: unknown;
|
|
538
|
+
hasDepthBuffer?: boolean;
|
|
539
|
+
hasStencilBuffer?: boolean;
|
|
540
|
+
useEs?: boolean;
|
|
541
|
+
onCreateContext?: () => unknown;
|
|
542
|
+
onRender?: (context: Gdk.GLContext) => boolean;
|
|
543
|
+
onResize?: (width: number, height: number) => void;
|
|
544
|
+
ref?: Ref<Gtk.GLArea>;
|
|
545
|
+
}
|
|
546
|
+
export interface GraphicsOffloadProps extends WidgetProps {
|
|
547
|
+
blackBackground?: boolean;
|
|
548
|
+
enabled?: Gtk.GraphicsOffloadEnabled;
|
|
549
|
+
ref?: Ref<Gtk.GraphicsOffload>;
|
|
550
|
+
}
|
|
551
|
+
export interface GridProps extends WidgetProps {
|
|
552
|
+
baselineRow?: number;
|
|
553
|
+
columnHomogeneous?: boolean;
|
|
554
|
+
columnSpacing?: number;
|
|
555
|
+
rowHomogeneous?: boolean;
|
|
556
|
+
rowSpacing?: number;
|
|
557
|
+
orientation?: Gtk.Orientation;
|
|
558
|
+
ref?: Ref<Gtk.Grid>;
|
|
559
|
+
}
|
|
560
|
+
export interface GridViewProps extends ListBaseProps {
|
|
561
|
+
enableRubberband?: boolean;
|
|
562
|
+
factory?: Gtk.ListItemFactory;
|
|
563
|
+
maxColumns?: number;
|
|
564
|
+
minColumns?: number;
|
|
565
|
+
model?: Gtk.SelectionModel;
|
|
566
|
+
singleClickActivate?: boolean;
|
|
567
|
+
tabBehavior?: Gtk.ListTabBehavior;
|
|
568
|
+
onActivate?: (position: number) => void;
|
|
569
|
+
renderItem?: (item: any) => Gtk.Widget;
|
|
570
|
+
ref?: Ref<Gtk.GridView>;
|
|
571
|
+
}
|
|
572
|
+
export interface HeaderBarProps extends WidgetProps {
|
|
573
|
+
decorationLayout?: string;
|
|
574
|
+
showTitleButtons?: boolean;
|
|
575
|
+
useNativeControls?: boolean;
|
|
576
|
+
ref?: Ref<Gtk.HeaderBar>;
|
|
577
|
+
}
|
|
578
|
+
export interface IconViewProps extends WidgetProps {
|
|
579
|
+
activateOnSingleClick?: boolean;
|
|
580
|
+
cellArea: Gtk.CellArea;
|
|
581
|
+
columnSpacing?: number;
|
|
582
|
+
columns?: number;
|
|
583
|
+
itemOrientation?: Gtk.Orientation;
|
|
584
|
+
itemPadding?: number;
|
|
585
|
+
itemWidth?: number;
|
|
586
|
+
margin?: number;
|
|
587
|
+
markupColumn?: number;
|
|
588
|
+
model?: Gtk.TreeModel;
|
|
589
|
+
pixbufColumn?: number;
|
|
590
|
+
reorderable?: boolean;
|
|
591
|
+
rowSpacing?: number;
|
|
592
|
+
selectionMode?: Gtk.SelectionMode;
|
|
593
|
+
spacing?: number;
|
|
594
|
+
textColumn?: number;
|
|
595
|
+
tooltipColumn?: number;
|
|
596
|
+
hadjustment?: Gtk.Adjustment;
|
|
597
|
+
hscrollPolicy?: Gtk.ScrollablePolicy;
|
|
598
|
+
vadjustment?: Gtk.Adjustment;
|
|
599
|
+
vscrollPolicy?: Gtk.ScrollablePolicy;
|
|
600
|
+
onActivateCursorItem?: () => boolean;
|
|
601
|
+
onItemActivated?: (path: Gtk.TreePath) => void;
|
|
602
|
+
onMoveCursor?: (step: Gtk.MovementStep, count: number, extend: boolean, modify: boolean) => boolean;
|
|
603
|
+
onSelectAll?: () => void;
|
|
604
|
+
onSelectCursorItem?: () => void;
|
|
605
|
+
onSelectionChanged?: () => void;
|
|
606
|
+
onToggleCursorItem?: () => void;
|
|
607
|
+
onUnselectAll?: () => void;
|
|
608
|
+
ref?: Ref<Gtk.IconView>;
|
|
609
|
+
}
|
|
610
|
+
export interface ImageProps extends WidgetProps {
|
|
611
|
+
file?: string;
|
|
612
|
+
gicon?: unknown;
|
|
613
|
+
iconName?: string;
|
|
614
|
+
iconSize?: Gtk.IconSize;
|
|
615
|
+
paintable?: unknown;
|
|
616
|
+
pixelSize?: number;
|
|
617
|
+
resource?: string;
|
|
618
|
+
storageType?: Gtk.ImageType;
|
|
619
|
+
useFallback?: boolean;
|
|
620
|
+
ref?: Ref<Gtk.Image>;
|
|
621
|
+
}
|
|
622
|
+
export interface InfoBarProps extends WidgetProps {
|
|
623
|
+
messageType?: Gtk.MessageType;
|
|
624
|
+
revealed?: boolean;
|
|
625
|
+
showCloseButton?: boolean;
|
|
626
|
+
onClose?: () => void;
|
|
627
|
+
onResponse?: (responseId: number) => void;
|
|
628
|
+
ref?: Ref<Gtk.InfoBar>;
|
|
629
|
+
}
|
|
630
|
+
export interface InscriptionProps extends WidgetProps {
|
|
631
|
+
attributes?: unknown;
|
|
632
|
+
markup?: string;
|
|
633
|
+
minChars?: number;
|
|
634
|
+
minLines?: number;
|
|
635
|
+
natChars?: number;
|
|
636
|
+
natLines?: number;
|
|
637
|
+
text?: string;
|
|
638
|
+
textOverflow?: Gtk.InscriptionOverflow;
|
|
639
|
+
wrapMode?: unknown;
|
|
640
|
+
xalign?: number;
|
|
641
|
+
yalign?: number;
|
|
642
|
+
ref?: Ref<Gtk.Inscription>;
|
|
643
|
+
}
|
|
644
|
+
export interface LabelProps extends WidgetProps {
|
|
645
|
+
attributes?: unknown;
|
|
646
|
+
ellipsize?: unknown;
|
|
647
|
+
extraMenu?: unknown;
|
|
648
|
+
justify?: Gtk.Justification;
|
|
649
|
+
label?: string;
|
|
650
|
+
lines?: number;
|
|
651
|
+
maxWidthChars?: number;
|
|
652
|
+
mnemonicKeyval?: number;
|
|
653
|
+
naturalWrapMode?: Gtk.NaturalWrapMode;
|
|
654
|
+
selectable?: boolean;
|
|
655
|
+
singleLineMode?: boolean;
|
|
656
|
+
tabs?: unknown;
|
|
657
|
+
useMarkup?: boolean;
|
|
658
|
+
useUnderline?: boolean;
|
|
659
|
+
widthChars?: number;
|
|
660
|
+
wrap?: boolean;
|
|
661
|
+
wrapMode?: unknown;
|
|
662
|
+
xalign?: number;
|
|
663
|
+
yalign?: number;
|
|
664
|
+
onActivateCurrentLink?: () => void;
|
|
665
|
+
onActivateLink?: (uri: string) => boolean;
|
|
666
|
+
onCopyClipboard?: () => void;
|
|
667
|
+
onMoveCursor?: (step: Gtk.MovementStep, count: number, extendSelection: boolean) => void;
|
|
668
|
+
ref?: Ref<Gtk.Label>;
|
|
669
|
+
}
|
|
670
|
+
export interface LevelBarProps extends WidgetProps {
|
|
671
|
+
inverted?: boolean;
|
|
672
|
+
maxValue?: number;
|
|
673
|
+
minValue?: number;
|
|
674
|
+
mode?: Gtk.LevelBarMode;
|
|
675
|
+
value?: number;
|
|
676
|
+
orientation?: Gtk.Orientation;
|
|
677
|
+
onOffsetChanged?: (name: string) => void;
|
|
678
|
+
ref?: Ref<Gtk.LevelBar>;
|
|
679
|
+
}
|
|
680
|
+
export interface LinkButtonProps extends ButtonProps {
|
|
681
|
+
uri: string;
|
|
682
|
+
visited?: boolean;
|
|
683
|
+
onActivateLink?: () => boolean;
|
|
684
|
+
ref?: Ref<Gtk.LinkButton>;
|
|
685
|
+
}
|
|
686
|
+
export interface ListBaseProps extends WidgetProps {
|
|
687
|
+
orientation?: Gtk.Orientation;
|
|
688
|
+
hadjustment?: Gtk.Adjustment;
|
|
689
|
+
hscrollPolicy?: Gtk.ScrollablePolicy;
|
|
690
|
+
vadjustment?: Gtk.Adjustment;
|
|
691
|
+
vscrollPolicy?: Gtk.ScrollablePolicy;
|
|
692
|
+
ref?: Ref<Gtk.ListBase>;
|
|
693
|
+
}
|
|
694
|
+
export interface ListBoxProps extends WidgetProps {
|
|
695
|
+
acceptUnpairedRelease?: boolean;
|
|
696
|
+
activateOnSingleClick?: boolean;
|
|
697
|
+
selectionMode?: Gtk.SelectionMode;
|
|
698
|
+
showSeparators?: boolean;
|
|
699
|
+
tabBehavior?: Gtk.ListTabBehavior;
|
|
700
|
+
onActivateCursorRow?: () => void;
|
|
701
|
+
onMoveCursor?: (step: Gtk.MovementStep, count: number, extend: boolean, modify: boolean) => void;
|
|
702
|
+
onRowActivated?: (row: Gtk.ListBoxRow) => void;
|
|
703
|
+
onRowSelected?: (row: Gtk.ListBoxRow) => void;
|
|
704
|
+
onSelectAll?: () => void;
|
|
705
|
+
onSelectedRowsChanged?: () => void;
|
|
706
|
+
onToggleCursorRow?: () => void;
|
|
707
|
+
onUnselectAll?: () => void;
|
|
708
|
+
ref?: Ref<Gtk.ListBox>;
|
|
709
|
+
}
|
|
710
|
+
export interface ListBoxRowProps extends WidgetProps {
|
|
711
|
+
activatable?: boolean;
|
|
712
|
+
selectable?: boolean;
|
|
713
|
+
actionName?: string;
|
|
714
|
+
actionTarget?: unknown;
|
|
715
|
+
onActivate?: () => void;
|
|
716
|
+
ref?: Ref<Gtk.ListBoxRow>;
|
|
717
|
+
}
|
|
718
|
+
export interface ListViewProps extends ListBaseProps {
|
|
719
|
+
enableRubberband?: boolean;
|
|
720
|
+
factory?: Gtk.ListItemFactory;
|
|
721
|
+
headerFactory?: Gtk.ListItemFactory;
|
|
722
|
+
model?: Gtk.SelectionModel;
|
|
723
|
+
showSeparators?: boolean;
|
|
724
|
+
singleClickActivate?: boolean;
|
|
725
|
+
tabBehavior?: Gtk.ListTabBehavior;
|
|
726
|
+
onActivate?: (position: number) => void;
|
|
727
|
+
renderItem?: (item: any) => Gtk.Widget;
|
|
728
|
+
ref?: Ref<Gtk.ListView>;
|
|
729
|
+
}
|
|
730
|
+
export interface LockButtonProps extends ButtonProps {
|
|
731
|
+
permission?: unknown;
|
|
732
|
+
textLock?: string;
|
|
733
|
+
textUnlock?: string;
|
|
734
|
+
tooltipLock?: string;
|
|
735
|
+
tooltipNotAuthorized?: string;
|
|
736
|
+
tooltipUnlock?: string;
|
|
737
|
+
ref?: Ref<Gtk.LockButton>;
|
|
738
|
+
}
|
|
739
|
+
export interface MediaControlsProps extends WidgetProps {
|
|
740
|
+
mediaStream?: Gtk.MediaStream;
|
|
741
|
+
ref?: Ref<Gtk.MediaControls>;
|
|
742
|
+
}
|
|
743
|
+
export interface MenuButtonProps extends WidgetProps {
|
|
744
|
+
active?: boolean;
|
|
745
|
+
alwaysShowArrow?: boolean;
|
|
746
|
+
canShrink?: boolean;
|
|
747
|
+
direction?: Gtk.ArrowType;
|
|
748
|
+
hasFrame?: boolean;
|
|
749
|
+
iconName?: string;
|
|
750
|
+
label?: string;
|
|
751
|
+
menuModel?: unknown;
|
|
752
|
+
primary?: boolean;
|
|
753
|
+
useUnderline?: boolean;
|
|
754
|
+
onActivate?: () => void;
|
|
755
|
+
ref?: Ref<Gtk.MenuButton>;
|
|
756
|
+
}
|
|
757
|
+
export interface MessageDialogProps extends DialogProps {
|
|
758
|
+
buttons?: Gtk.ButtonsType;
|
|
759
|
+
messageArea?: Gtk.Widget;
|
|
760
|
+
messageType?: Gtk.MessageType;
|
|
761
|
+
secondaryText?: string;
|
|
762
|
+
secondaryUseMarkup?: boolean;
|
|
763
|
+
text?: string;
|
|
764
|
+
useMarkup?: boolean;
|
|
765
|
+
ref?: Ref<Gtk.MessageDialog>;
|
|
766
|
+
}
|
|
767
|
+
export interface NotebookProps extends WidgetProps {
|
|
768
|
+
enablePopup?: boolean;
|
|
769
|
+
groupName?: string;
|
|
770
|
+
page?: number;
|
|
771
|
+
pages?: unknown;
|
|
772
|
+
scrollable?: boolean;
|
|
773
|
+
showBorder?: boolean;
|
|
774
|
+
showTabs?: boolean;
|
|
775
|
+
tabPos?: Gtk.PositionType;
|
|
776
|
+
onChangeCurrentPage?: (page: number) => boolean;
|
|
777
|
+
onCreateWindow?: (page: Gtk.Widget) => Gtk.Notebook;
|
|
778
|
+
onFocusTab?: (tab: Gtk.NotebookTab) => boolean;
|
|
779
|
+
onMoveFocusOut?: (direction: Gtk.DirectionType) => void;
|
|
780
|
+
onPageAdded?: (child: Gtk.Widget, pageNum: number) => void;
|
|
781
|
+
onPageRemoved?: (child: Gtk.Widget, pageNum: number) => void;
|
|
782
|
+
onPageReordered?: (child: Gtk.Widget, pageNum: number) => void;
|
|
783
|
+
onReorderTab?: (direction: Gtk.DirectionType, moveToLast: boolean) => boolean;
|
|
784
|
+
onSelectPage?: (moveFocus: boolean) => boolean;
|
|
785
|
+
onSwitchPage?: (page: Gtk.Widget, pageNum: number) => void;
|
|
786
|
+
ref?: Ref<Gtk.Notebook>;
|
|
787
|
+
}
|
|
788
|
+
export interface OverlayProps extends WidgetProps {
|
|
789
|
+
onGetChildPosition?: (widget: Gtk.Widget, allocation: Gdk.Rectangle) => boolean;
|
|
790
|
+
ref?: Ref<Gtk.Overlay>;
|
|
791
|
+
}
|
|
792
|
+
export interface PageSetupUnixDialogProps extends DialogProps {
|
|
793
|
+
ref?: Ref<Gtk.PageSetupUnixDialog>;
|
|
794
|
+
}
|
|
795
|
+
export interface PanedProps extends WidgetProps {
|
|
796
|
+
maxPosition?: number;
|
|
797
|
+
minPosition?: number;
|
|
798
|
+
position?: number;
|
|
799
|
+
positionSet?: boolean;
|
|
800
|
+
resizeEndChild?: boolean;
|
|
801
|
+
resizeStartChild?: boolean;
|
|
802
|
+
shrinkEndChild?: boolean;
|
|
803
|
+
shrinkStartChild?: boolean;
|
|
804
|
+
wideHandle?: boolean;
|
|
805
|
+
orientation: Gtk.Orientation;
|
|
806
|
+
onAcceptPosition?: () => boolean;
|
|
807
|
+
onCancelPosition?: () => boolean;
|
|
808
|
+
onCycleChildFocus?: (reversed: boolean) => boolean;
|
|
809
|
+
onCycleHandleFocus?: (reversed: boolean) => boolean;
|
|
810
|
+
onMoveHandle?: (scrollType: Gtk.ScrollType) => boolean;
|
|
811
|
+
onToggleHandleFocus?: () => boolean;
|
|
812
|
+
ref?: Ref<Gtk.Paned>;
|
|
813
|
+
}
|
|
814
|
+
export interface PasswordEntryProps extends WidgetProps {
|
|
815
|
+
activatesDefault?: boolean;
|
|
816
|
+
extraMenu?: unknown;
|
|
817
|
+
placeholderText?: string;
|
|
818
|
+
showPeekIcon?: boolean;
|
|
819
|
+
cursorPosition?: number;
|
|
820
|
+
editable?: boolean;
|
|
821
|
+
enableUndo?: boolean;
|
|
822
|
+
maxWidthChars?: number;
|
|
823
|
+
selectionBound?: number;
|
|
824
|
+
text?: string;
|
|
825
|
+
widthChars?: number;
|
|
826
|
+
xalign?: number;
|
|
827
|
+
onActivate?: () => void;
|
|
828
|
+
onChanged?: () => void;
|
|
829
|
+
onDeleteText?: (startPos: number, endPos: number) => void;
|
|
830
|
+
onInsertText?: (text: string, length: number, position: Ref<number>) => void;
|
|
831
|
+
ref?: Ref<Gtk.PasswordEntry>;
|
|
832
|
+
}
|
|
833
|
+
export interface PictureProps extends WidgetProps {
|
|
834
|
+
alternativeText?: string;
|
|
835
|
+
canShrink?: boolean;
|
|
836
|
+
contentFit?: Gtk.ContentFit;
|
|
837
|
+
file?: unknown;
|
|
838
|
+
keepAspectRatio?: boolean;
|
|
839
|
+
paintable?: unknown;
|
|
840
|
+
ref?: Ref<Gtk.Picture>;
|
|
841
|
+
}
|
|
842
|
+
export interface PopoverProps extends WidgetProps {
|
|
843
|
+
autohide?: boolean;
|
|
844
|
+
cascadePopdown?: boolean;
|
|
845
|
+
hasArrow?: boolean;
|
|
846
|
+
mnemonicsVisible?: boolean;
|
|
847
|
+
pointingTo?: unknown;
|
|
848
|
+
position?: Gtk.PositionType;
|
|
849
|
+
onActivateDefault?: () => void;
|
|
850
|
+
onClosed?: () => void;
|
|
851
|
+
ref?: Ref<Gtk.Popover>;
|
|
852
|
+
}
|
|
853
|
+
export interface PopoverMenuProps extends PopoverProps {
|
|
854
|
+
flags?: Gtk.PopoverMenuFlags;
|
|
855
|
+
menuModel?: unknown;
|
|
856
|
+
visibleSubmenu?: string;
|
|
857
|
+
ref?: Ref<Gtk.PopoverMenu>;
|
|
858
|
+
}
|
|
859
|
+
export interface PopoverMenuBarProps extends WidgetProps {
|
|
860
|
+
menuModel?: unknown;
|
|
861
|
+
ref?: Ref<Gtk.PopoverMenuBar>;
|
|
862
|
+
}
|
|
863
|
+
export interface PrintUnixDialogProps extends DialogProps {
|
|
864
|
+
currentPage?: number;
|
|
865
|
+
embedPageSetup?: boolean;
|
|
866
|
+
hasSelection?: boolean;
|
|
867
|
+
manualCapabilities?: Gtk.PrintCapabilities;
|
|
868
|
+
pageSetup?: Gtk.PageSetup;
|
|
869
|
+
printSettings?: Gtk.PrintSettings;
|
|
870
|
+
selectedPrinter?: Gtk.Printer;
|
|
871
|
+
supportSelection?: boolean;
|
|
872
|
+
ref?: Ref<Gtk.PrintUnixDialog>;
|
|
873
|
+
}
|
|
874
|
+
export interface ProgressBarProps extends WidgetProps {
|
|
875
|
+
ellipsize?: unknown;
|
|
876
|
+
fraction?: number;
|
|
877
|
+
inverted?: boolean;
|
|
878
|
+
pulseStep?: number;
|
|
879
|
+
showText?: boolean;
|
|
880
|
+
text?: string;
|
|
881
|
+
orientation?: Gtk.Orientation;
|
|
882
|
+
ref?: Ref<Gtk.ProgressBar>;
|
|
883
|
+
}
|
|
884
|
+
export interface RangeProps extends WidgetProps {
|
|
885
|
+
adjustment?: Gtk.Adjustment;
|
|
886
|
+
fillLevel?: number;
|
|
887
|
+
inverted?: boolean;
|
|
888
|
+
restrictToFillLevel?: boolean;
|
|
889
|
+
roundDigits?: number;
|
|
890
|
+
showFillLevel?: boolean;
|
|
891
|
+
orientation?: Gtk.Orientation;
|
|
892
|
+
onAdjustBounds?: (value: number) => void;
|
|
893
|
+
onChangeValue?: (scroll: Gtk.ScrollType, value: number) => boolean;
|
|
894
|
+
onMoveSlider?: (step: Gtk.ScrollType) => void;
|
|
895
|
+
onValueChanged?: () => void;
|
|
896
|
+
ref?: Ref<Gtk.Range>;
|
|
897
|
+
}
|
|
898
|
+
export interface RevealerProps extends WidgetProps {
|
|
899
|
+
childRevealed?: boolean;
|
|
900
|
+
revealChild?: boolean;
|
|
901
|
+
transitionDuration?: number;
|
|
902
|
+
transitionType?: Gtk.RevealerTransitionType;
|
|
903
|
+
ref?: Ref<Gtk.Revealer>;
|
|
904
|
+
}
|
|
905
|
+
export interface ScaleProps extends RangeProps {
|
|
906
|
+
digits?: number;
|
|
907
|
+
drawValue?: boolean;
|
|
908
|
+
hasOrigin?: boolean;
|
|
909
|
+
valuePos?: Gtk.PositionType;
|
|
910
|
+
orientation: Gtk.Orientation;
|
|
911
|
+
ref?: Ref<Gtk.Scale>;
|
|
912
|
+
}
|
|
913
|
+
export interface ScaleButtonProps extends WidgetProps {
|
|
914
|
+
active?: boolean;
|
|
915
|
+
adjustment?: Gtk.Adjustment;
|
|
916
|
+
hasFrame?: boolean;
|
|
917
|
+
icons?: string[];
|
|
918
|
+
value?: number;
|
|
919
|
+
orientation?: Gtk.Orientation;
|
|
920
|
+
onPopdown?: () => void;
|
|
921
|
+
onPopup?: () => void;
|
|
922
|
+
onValueChanged?: (value: number) => void;
|
|
923
|
+
ref?: Ref<Gtk.ScaleButton>;
|
|
924
|
+
}
|
|
925
|
+
export interface ScrollbarProps extends WidgetProps {
|
|
926
|
+
adjustment?: Gtk.Adjustment;
|
|
927
|
+
orientation: Gtk.Orientation;
|
|
928
|
+
ref?: Ref<Gtk.Scrollbar>;
|
|
929
|
+
}
|
|
930
|
+
export interface ScrolledWindowProps extends WidgetProps {
|
|
931
|
+
hadjustment?: Gtk.Adjustment;
|
|
932
|
+
hasFrame?: boolean;
|
|
933
|
+
hscrollbarPolicy?: Gtk.PolicyType;
|
|
934
|
+
kineticScrolling?: boolean;
|
|
935
|
+
maxContentHeight?: number;
|
|
936
|
+
maxContentWidth?: number;
|
|
937
|
+
minContentHeight?: number;
|
|
938
|
+
minContentWidth?: number;
|
|
939
|
+
overlayScrolling?: boolean;
|
|
940
|
+
propagateNaturalHeight?: boolean;
|
|
941
|
+
propagateNaturalWidth?: boolean;
|
|
942
|
+
vadjustment?: Gtk.Adjustment;
|
|
943
|
+
vscrollbarPolicy?: Gtk.PolicyType;
|
|
944
|
+
windowPlacement?: Gtk.CornerType;
|
|
945
|
+
onEdgeOvershot?: (pos: Gtk.PositionType) => void;
|
|
946
|
+
onEdgeReached?: (pos: Gtk.PositionType) => void;
|
|
947
|
+
onMoveFocusOut?: (directionType: Gtk.DirectionType) => void;
|
|
948
|
+
onScrollChild?: (scroll: Gtk.ScrollType, horizontal: boolean) => boolean;
|
|
949
|
+
ref?: Ref<Gtk.ScrolledWindow>;
|
|
950
|
+
}
|
|
951
|
+
export interface SearchBarProps extends WidgetProps {
|
|
952
|
+
searchModeEnabled?: boolean;
|
|
953
|
+
showCloseButton?: boolean;
|
|
954
|
+
ref?: Ref<Gtk.SearchBar>;
|
|
955
|
+
}
|
|
956
|
+
export interface SearchEntryProps extends WidgetProps {
|
|
957
|
+
activatesDefault?: boolean;
|
|
958
|
+
inputHints?: Gtk.InputHints;
|
|
959
|
+
inputPurpose?: Gtk.InputPurpose;
|
|
960
|
+
placeholderText?: string;
|
|
961
|
+
searchDelay?: number;
|
|
962
|
+
cursorPosition?: number;
|
|
963
|
+
editable?: boolean;
|
|
964
|
+
enableUndo?: boolean;
|
|
965
|
+
maxWidthChars?: number;
|
|
966
|
+
selectionBound?: number;
|
|
967
|
+
text?: string;
|
|
968
|
+
widthChars?: number;
|
|
969
|
+
xalign?: number;
|
|
970
|
+
onActivate?: () => void;
|
|
971
|
+
onNextMatch?: () => void;
|
|
972
|
+
onPreviousMatch?: () => void;
|
|
973
|
+
onSearchChanged?: () => void;
|
|
974
|
+
onSearchStarted?: () => void;
|
|
975
|
+
onStopSearch?: () => void;
|
|
976
|
+
onChanged?: () => void;
|
|
977
|
+
onDeleteText?: (startPos: number, endPos: number) => void;
|
|
978
|
+
onInsertText?: (text: string, length: number, position: Ref<number>) => void;
|
|
979
|
+
ref?: Ref<Gtk.SearchEntry>;
|
|
980
|
+
}
|
|
981
|
+
export interface SeparatorProps extends WidgetProps {
|
|
982
|
+
orientation: Gtk.Orientation;
|
|
983
|
+
ref?: Ref<Gtk.Separator>;
|
|
984
|
+
}
|
|
985
|
+
export interface ShortcutLabelProps extends WidgetProps {
|
|
986
|
+
accelerator: string;
|
|
987
|
+
disabledText?: string;
|
|
988
|
+
ref?: Ref<Gtk.ShortcutLabel>;
|
|
989
|
+
}
|
|
990
|
+
export interface ShortcutsGroupProps extends BoxProps {
|
|
991
|
+
accelSizeGroup?: Gtk.SizeGroup;
|
|
992
|
+
height?: number;
|
|
993
|
+
title?: string;
|
|
994
|
+
titleSizeGroup?: Gtk.SizeGroup;
|
|
995
|
+
view?: string;
|
|
996
|
+
ref?: Ref<Gtk.ShortcutsGroup>;
|
|
997
|
+
}
|
|
998
|
+
export interface ShortcutsSectionProps extends BoxProps {
|
|
999
|
+
maxHeight?: number;
|
|
1000
|
+
sectionName?: string;
|
|
1001
|
+
title?: string;
|
|
1002
|
+
viewName?: string;
|
|
1003
|
+
onChangeCurrentPage?: (offset: number) => boolean;
|
|
1004
|
+
ref?: Ref<Gtk.ShortcutsSection>;
|
|
1005
|
+
}
|
|
1006
|
+
export interface ShortcutsShortcutProps extends WidgetProps {
|
|
1007
|
+
accelSizeGroup?: Gtk.SizeGroup;
|
|
1008
|
+
accelerator?: string;
|
|
1009
|
+
actionName?: string;
|
|
1010
|
+
direction?: Gtk.TextDirection;
|
|
1011
|
+
icon?: unknown;
|
|
1012
|
+
iconSet?: boolean;
|
|
1013
|
+
shortcutType?: Gtk.ShortcutType;
|
|
1014
|
+
subtitle?: string;
|
|
1015
|
+
subtitleSet?: boolean;
|
|
1016
|
+
title?: string;
|
|
1017
|
+
titleSizeGroup?: Gtk.SizeGroup;
|
|
1018
|
+
ref?: Ref<Gtk.ShortcutsShortcut>;
|
|
1019
|
+
}
|
|
1020
|
+
export interface ShortcutsWindowProps extends WindowProps {
|
|
1021
|
+
sectionName?: string;
|
|
1022
|
+
viewName?: string;
|
|
1023
|
+
onClose?: () => void;
|
|
1024
|
+
onSearch?: () => void;
|
|
1025
|
+
ref?: Ref<Gtk.ShortcutsWindow>;
|
|
1026
|
+
}
|
|
1027
|
+
export interface SpinButtonProps extends WidgetProps {
|
|
1028
|
+
activatesDefault?: boolean;
|
|
1029
|
+
adjustment?: Gtk.Adjustment;
|
|
1030
|
+
climbRate: number;
|
|
1031
|
+
digits: number;
|
|
1032
|
+
numeric?: boolean;
|
|
1033
|
+
snapToTicks?: boolean;
|
|
1034
|
+
updatePolicy?: Gtk.SpinButtonUpdatePolicy;
|
|
1035
|
+
value?: number;
|
|
1036
|
+
wrap?: boolean;
|
|
1037
|
+
editingCanceled?: boolean;
|
|
1038
|
+
cursorPosition?: number;
|
|
1039
|
+
editable?: boolean;
|
|
1040
|
+
enableUndo?: boolean;
|
|
1041
|
+
maxWidthChars?: number;
|
|
1042
|
+
selectionBound?: number;
|
|
1043
|
+
text?: string;
|
|
1044
|
+
widthChars?: number;
|
|
1045
|
+
xalign?: number;
|
|
1046
|
+
orientation?: Gtk.Orientation;
|
|
1047
|
+
onActivate?: () => void;
|
|
1048
|
+
onChangeValue?: (scroll: Gtk.ScrollType) => void;
|
|
1049
|
+
onInput?: (newValue: Ref<number>) => number;
|
|
1050
|
+
onOutput?: () => boolean;
|
|
1051
|
+
onValueChanged?: () => void;
|
|
1052
|
+
onWrapped?: () => void;
|
|
1053
|
+
onEditingDone?: () => void;
|
|
1054
|
+
onRemoveWidget?: () => void;
|
|
1055
|
+
onChanged?: () => void;
|
|
1056
|
+
onDeleteText?: (startPos: number, endPos: number) => void;
|
|
1057
|
+
onInsertText?: (text: string, length: number, position: Ref<number>) => void;
|
|
1058
|
+
ref?: Ref<Gtk.SpinButton>;
|
|
1059
|
+
}
|
|
1060
|
+
export interface SpinnerProps extends WidgetProps {
|
|
1061
|
+
spinning?: boolean;
|
|
1062
|
+
ref?: Ref<Gtk.Spinner>;
|
|
1063
|
+
}
|
|
1064
|
+
export interface StackProps extends WidgetProps {
|
|
1065
|
+
hhomogeneous?: boolean;
|
|
1066
|
+
interpolateSize?: boolean;
|
|
1067
|
+
pages?: Gtk.SelectionModel;
|
|
1068
|
+
transitionDuration?: number;
|
|
1069
|
+
transitionRunning?: boolean;
|
|
1070
|
+
transitionType?: Gtk.StackTransitionType;
|
|
1071
|
+
vhomogeneous?: boolean;
|
|
1072
|
+
visibleChildName?: string;
|
|
1073
|
+
ref?: Ref<Gtk.Stack>;
|
|
1074
|
+
}
|
|
1075
|
+
export interface StackSidebarProps extends WidgetProps {
|
|
1076
|
+
ref?: Ref<Gtk.StackSidebar>;
|
|
1077
|
+
}
|
|
1078
|
+
export interface StackSwitcherProps extends WidgetProps {
|
|
1079
|
+
orientation?: Gtk.Orientation;
|
|
1080
|
+
ref?: Ref<Gtk.StackSwitcher>;
|
|
1081
|
+
}
|
|
1082
|
+
export interface StatusbarProps extends WidgetProps {
|
|
1083
|
+
onTextPopped?: (contextId: number, text: string) => void;
|
|
1084
|
+
onTextPushed?: (contextId: number, text: string) => void;
|
|
1085
|
+
ref?: Ref<Gtk.Statusbar>;
|
|
1086
|
+
}
|
|
1087
|
+
export interface SwitchProps extends WidgetProps {
|
|
1088
|
+
active?: boolean;
|
|
1089
|
+
state?: boolean;
|
|
1090
|
+
actionName?: string;
|
|
1091
|
+
actionTarget?: unknown;
|
|
1092
|
+
onActivate?: () => void;
|
|
1093
|
+
onStateSet?: (state: boolean) => boolean;
|
|
1094
|
+
ref?: Ref<Gtk.Switch>;
|
|
1095
|
+
}
|
|
1096
|
+
export interface TextProps extends WidgetProps {
|
|
1097
|
+
activatesDefault?: boolean;
|
|
1098
|
+
attributes?: unknown;
|
|
1099
|
+
buffer?: Gtk.EntryBuffer;
|
|
1100
|
+
enableEmojiCompletion?: boolean;
|
|
1101
|
+
extraMenu?: unknown;
|
|
1102
|
+
imModule?: string;
|
|
1103
|
+
inputHints?: Gtk.InputHints;
|
|
1104
|
+
inputPurpose?: Gtk.InputPurpose;
|
|
1105
|
+
invisibleChar?: number;
|
|
1106
|
+
invisibleCharSet?: boolean;
|
|
1107
|
+
maxLength?: number;
|
|
1108
|
+
overwriteMode?: boolean;
|
|
1109
|
+
placeholderText?: string;
|
|
1110
|
+
propagateTextWidth?: boolean;
|
|
1111
|
+
scrollOffset?: number;
|
|
1112
|
+
tabs?: unknown;
|
|
1113
|
+
truncateMultiline?: boolean;
|
|
1114
|
+
visibility?: boolean;
|
|
1115
|
+
cursorPosition?: number;
|
|
1116
|
+
editable?: boolean;
|
|
1117
|
+
enableUndo?: boolean;
|
|
1118
|
+
maxWidthChars?: number;
|
|
1119
|
+
selectionBound?: number;
|
|
1120
|
+
text?: string;
|
|
1121
|
+
widthChars?: number;
|
|
1122
|
+
xalign?: number;
|
|
1123
|
+
onActivate?: () => void;
|
|
1124
|
+
onBackspace?: () => void;
|
|
1125
|
+
onCopyClipboard?: () => void;
|
|
1126
|
+
onCutClipboard?: () => void;
|
|
1127
|
+
onDeleteFromCursor?: (type: Gtk.DeleteType, count: number) => void;
|
|
1128
|
+
onInsertAtCursor?: (string: string) => void;
|
|
1129
|
+
onInsertEmoji?: () => void;
|
|
1130
|
+
onMoveCursor?: (step: Gtk.MovementStep, count: number, extend: boolean) => void;
|
|
1131
|
+
onPasteClipboard?: () => void;
|
|
1132
|
+
onPreeditChanged?: (preedit: string) => void;
|
|
1133
|
+
onToggleOverwrite?: () => void;
|
|
1134
|
+
onChanged?: () => void;
|
|
1135
|
+
onDeleteText?: (startPos: number, endPos: number) => void;
|
|
1136
|
+
onInsertText?: (text: string, length: number, position: Ref<number>) => void;
|
|
1137
|
+
ref?: Ref<Gtk.Text>;
|
|
1138
|
+
}
|
|
1139
|
+
export interface TextViewProps extends WidgetProps {
|
|
1140
|
+
acceptsTab?: boolean;
|
|
1141
|
+
bottomMargin?: number;
|
|
1142
|
+
buffer?: Gtk.TextBuffer;
|
|
1143
|
+
cursorVisible?: boolean;
|
|
1144
|
+
editable?: boolean;
|
|
1145
|
+
extraMenu?: unknown;
|
|
1146
|
+
imModule?: string;
|
|
1147
|
+
indent?: number;
|
|
1148
|
+
inputHints?: Gtk.InputHints;
|
|
1149
|
+
inputPurpose?: Gtk.InputPurpose;
|
|
1150
|
+
justification?: Gtk.Justification;
|
|
1151
|
+
leftMargin?: number;
|
|
1152
|
+
monospace?: boolean;
|
|
1153
|
+
overwrite?: boolean;
|
|
1154
|
+
pixelsAboveLines?: number;
|
|
1155
|
+
pixelsBelowLines?: number;
|
|
1156
|
+
pixelsInsideWrap?: number;
|
|
1157
|
+
rightMargin?: number;
|
|
1158
|
+
tabs?: unknown;
|
|
1159
|
+
topMargin?: number;
|
|
1160
|
+
wrapMode?: Gtk.WrapMode;
|
|
1161
|
+
hadjustment?: Gtk.Adjustment;
|
|
1162
|
+
hscrollPolicy?: Gtk.ScrollablePolicy;
|
|
1163
|
+
vadjustment?: Gtk.Adjustment;
|
|
1164
|
+
vscrollPolicy?: Gtk.ScrollablePolicy;
|
|
1165
|
+
onBackspace?: () => void;
|
|
1166
|
+
onCopyClipboard?: () => void;
|
|
1167
|
+
onCutClipboard?: () => void;
|
|
1168
|
+
onDeleteFromCursor?: (type: Gtk.DeleteType, count: number) => void;
|
|
1169
|
+
onExtendSelection?: (granularity: Gtk.TextExtendSelection, location: Gtk.TextIter, start: Gtk.TextIter, end: Gtk.TextIter) => boolean;
|
|
1170
|
+
onInsertAtCursor?: (string: string) => void;
|
|
1171
|
+
onInsertEmoji?: () => void;
|
|
1172
|
+
onMoveCursor?: (step: Gtk.MovementStep, count: number, extendSelection: boolean) => void;
|
|
1173
|
+
onMoveViewport?: (step: Gtk.ScrollStep, count: number) => void;
|
|
1174
|
+
onPasteClipboard?: () => void;
|
|
1175
|
+
onPreeditChanged?: (preedit: string) => void;
|
|
1176
|
+
onSelectAll?: (select: boolean) => void;
|
|
1177
|
+
onSetAnchor?: () => void;
|
|
1178
|
+
onToggleCursorVisible?: () => void;
|
|
1179
|
+
onToggleOverwrite?: () => void;
|
|
1180
|
+
ref?: Ref<Gtk.TextView>;
|
|
1181
|
+
}
|
|
1182
|
+
export interface ToggleButtonProps extends ButtonProps {
|
|
1183
|
+
active?: boolean;
|
|
1184
|
+
onToggled?: () => void;
|
|
1185
|
+
ref?: Ref<Gtk.ToggleButton>;
|
|
1186
|
+
}
|
|
1187
|
+
export interface TreeExpanderProps extends WidgetProps {
|
|
1188
|
+
hideExpander?: boolean;
|
|
1189
|
+
indentForDepth?: boolean;
|
|
1190
|
+
indentForIcon?: boolean;
|
|
1191
|
+
item?: unknown;
|
|
1192
|
+
listRow?: Gtk.TreeListRow;
|
|
1193
|
+
ref?: Ref<Gtk.TreeExpander>;
|
|
1194
|
+
}
|
|
1195
|
+
export interface TreeViewProps extends WidgetProps {
|
|
1196
|
+
activateOnSingleClick?: boolean;
|
|
1197
|
+
enableGridLines?: Gtk.TreeViewGridLines;
|
|
1198
|
+
enableSearch?: boolean;
|
|
1199
|
+
enableTreeLines?: boolean;
|
|
1200
|
+
expanderColumn?: Gtk.TreeViewColumn;
|
|
1201
|
+
fixedHeightMode?: boolean;
|
|
1202
|
+
headersClickable?: boolean;
|
|
1203
|
+
headersVisible?: boolean;
|
|
1204
|
+
hoverExpand?: boolean;
|
|
1205
|
+
hoverSelection?: boolean;
|
|
1206
|
+
levelIndentation?: number;
|
|
1207
|
+
model?: Gtk.TreeModel;
|
|
1208
|
+
reorderable?: boolean;
|
|
1209
|
+
rubberBanding?: boolean;
|
|
1210
|
+
searchColumn?: number;
|
|
1211
|
+
showExpanders?: boolean;
|
|
1212
|
+
tooltipColumn?: number;
|
|
1213
|
+
hadjustment?: Gtk.Adjustment;
|
|
1214
|
+
hscrollPolicy?: Gtk.ScrollablePolicy;
|
|
1215
|
+
vadjustment?: Gtk.Adjustment;
|
|
1216
|
+
vscrollPolicy?: Gtk.ScrollablePolicy;
|
|
1217
|
+
onColumnsChanged?: () => void;
|
|
1218
|
+
onCursorChanged?: () => void;
|
|
1219
|
+
onExpandCollapseCursorRow?: (object: boolean, p0: boolean, p1: boolean) => boolean;
|
|
1220
|
+
onMoveCursor?: (step: Gtk.MovementStep, direction: number, extend: boolean, modify: boolean) => boolean;
|
|
1221
|
+
onRowActivated?: (path: Gtk.TreePath, column: Gtk.TreeViewColumn) => void;
|
|
1222
|
+
onRowCollapsed?: (iter: Gtk.TreeIter, path: Gtk.TreePath) => void;
|
|
1223
|
+
onRowExpanded?: (iter: Gtk.TreeIter, path: Gtk.TreePath) => void;
|
|
1224
|
+
onSelectAll?: () => boolean;
|
|
1225
|
+
onSelectCursorParent?: () => boolean;
|
|
1226
|
+
onSelectCursorRow?: (object: boolean) => boolean;
|
|
1227
|
+
onStartInteractiveSearch?: () => boolean;
|
|
1228
|
+
onTestCollapseRow?: (iter: Gtk.TreeIter, path: Gtk.TreePath) => boolean;
|
|
1229
|
+
onTestExpandRow?: (iter: Gtk.TreeIter, path: Gtk.TreePath) => boolean;
|
|
1230
|
+
onToggleCursorRow?: () => boolean;
|
|
1231
|
+
onUnselectAll?: () => boolean;
|
|
1232
|
+
ref?: Ref<Gtk.TreeView>;
|
|
1233
|
+
}
|
|
1234
|
+
export interface VideoProps extends WidgetProps {
|
|
1235
|
+
autoplay?: boolean;
|
|
1236
|
+
file?: unknown;
|
|
1237
|
+
graphicsOffload?: Gtk.GraphicsOffloadEnabled;
|
|
1238
|
+
loop?: boolean;
|
|
1239
|
+
mediaStream?: Gtk.MediaStream;
|
|
1240
|
+
ref?: Ref<Gtk.Video>;
|
|
1241
|
+
}
|
|
1242
|
+
export interface ViewportProps extends WidgetProps {
|
|
1243
|
+
scrollToFocus?: boolean;
|
|
1244
|
+
hadjustment?: Gtk.Adjustment;
|
|
1245
|
+
hscrollPolicy?: Gtk.ScrollablePolicy;
|
|
1246
|
+
vadjustment?: Gtk.Adjustment;
|
|
1247
|
+
vscrollPolicy?: Gtk.ScrollablePolicy;
|
|
1248
|
+
ref?: Ref<Gtk.Viewport>;
|
|
1249
|
+
}
|
|
1250
|
+
export interface VolumeButtonProps extends ScaleButtonProps {
|
|
1251
|
+
useSymbolic?: boolean;
|
|
1252
|
+
ref?: Ref<Gtk.VolumeButton>;
|
|
1253
|
+
}
|
|
1254
|
+
export interface WindowControlsProps extends WidgetProps {
|
|
1255
|
+
decorationLayout?: string;
|
|
1256
|
+
empty?: boolean;
|
|
1257
|
+
side: Gtk.PackType;
|
|
1258
|
+
useNativeControls?: boolean;
|
|
1259
|
+
ref?: Ref<Gtk.WindowControls>;
|
|
1260
|
+
}
|
|
1261
|
+
export interface WindowHandleProps extends WidgetProps {
|
|
1262
|
+
ref?: Ref<Gtk.WindowHandle>;
|
|
1263
|
+
}
|
|
1264
|
+
export declare const CONSTRUCTOR_PARAMS: Record<string, {
|
|
1265
|
+
name: string;
|
|
1266
|
+
hasDefault: boolean;
|
|
1267
|
+
}[]>;
|
|
1268
|
+
export declare const Widget: "Widget";
|
|
1269
|
+
export declare const Window: {
|
|
1270
|
+
Root: "Window.Root";
|
|
1271
|
+
Child: "Window.Child";
|
|
1272
|
+
DefaultWidget: "Window.DefaultWidget";
|
|
1273
|
+
FocusWidget: "Window.FocusWidget";
|
|
1274
|
+
Titlebar: "Window.Titlebar";
|
|
1275
|
+
TransientFor: "Window.TransientFor";
|
|
1276
|
+
};
|
|
1277
|
+
export declare const AboutDialog: "AboutDialog";
|
|
1278
|
+
export declare const ActionBar: "ActionBar";
|
|
1279
|
+
export declare const AppChooserButton: "AppChooserButton";
|
|
1280
|
+
export declare const AppChooserDialog: "AppChooserDialog";
|
|
1281
|
+
export declare const AppChooserWidget: "AppChooserWidget";
|
|
1282
|
+
export declare const ApplicationWindow: "ApplicationWindow";
|
|
1283
|
+
export declare const AspectFrame: "AspectFrame";
|
|
1284
|
+
export declare const Assistant: "Assistant";
|
|
1285
|
+
export declare const Box: "Box";
|
|
1286
|
+
export declare const Button: "Button";
|
|
1287
|
+
export declare const Calendar: "Calendar";
|
|
1288
|
+
export declare const CellView: "CellView";
|
|
1289
|
+
export declare const CenterBox: {
|
|
1290
|
+
Root: "CenterBox.Root";
|
|
1291
|
+
CenterWidget: "CenterBox.CenterWidget";
|
|
1292
|
+
EndWidget: "CenterBox.EndWidget";
|
|
1293
|
+
StartWidget: "CenterBox.StartWidget";
|
|
1294
|
+
};
|
|
1295
|
+
export declare const CheckButton: {
|
|
1296
|
+
Root: "CheckButton.Root";
|
|
1297
|
+
Child: "CheckButton.Child";
|
|
1298
|
+
Group: "CheckButton.Group";
|
|
1299
|
+
};
|
|
1300
|
+
export declare const ColorButton: "ColorButton";
|
|
1301
|
+
export declare const ColorChooserDialog: "ColorChooserDialog";
|
|
1302
|
+
export declare const ColorChooserWidget: "ColorChooserWidget";
|
|
1303
|
+
export declare const ColorDialogButton: "ColorDialogButton";
|
|
1304
|
+
export declare const ColumnView: {
|
|
1305
|
+
Root: "ColumnView.Root";
|
|
1306
|
+
Item: "ColumnView.Item";
|
|
1307
|
+
};
|
|
1308
|
+
export declare const ComboBox: "ComboBox";
|
|
1309
|
+
export declare const ComboBoxText: "ComboBoxText";
|
|
1310
|
+
export declare const Dialog: "Dialog";
|
|
1311
|
+
export declare const DragIcon: "DragIcon";
|
|
1312
|
+
export declare const DrawingArea: "DrawingArea";
|
|
1313
|
+
export declare const DropDown: {
|
|
1314
|
+
Root: "DropDown.Root";
|
|
1315
|
+
Item: "DropDown.Item";
|
|
1316
|
+
};
|
|
1317
|
+
export declare const EditableLabel: "EditableLabel";
|
|
1318
|
+
export declare const EmojiChooser: "EmojiChooser";
|
|
1319
|
+
export declare const Entry: "Entry";
|
|
1320
|
+
export declare const Expander: {
|
|
1321
|
+
Root: "Expander.Root";
|
|
1322
|
+
Child: "Expander.Child";
|
|
1323
|
+
LabelWidget: "Expander.LabelWidget";
|
|
1324
|
+
};
|
|
1325
|
+
export declare const FileChooserDialog: "FileChooserDialog";
|
|
1326
|
+
export declare const FileChooserWidget: "FileChooserWidget";
|
|
1327
|
+
export declare const Fixed: "Fixed";
|
|
1328
|
+
export declare const FlowBox: "FlowBox";
|
|
1329
|
+
export declare const FlowBoxChild: "FlowBoxChild";
|
|
1330
|
+
export declare const FontButton: "FontButton";
|
|
1331
|
+
export declare const FontChooserDialog: "FontChooserDialog";
|
|
1332
|
+
export declare const FontChooserWidget: "FontChooserWidget";
|
|
1333
|
+
export declare const FontDialogButton: "FontDialogButton";
|
|
1334
|
+
export declare const Frame: {
|
|
1335
|
+
Root: "Frame.Root";
|
|
1336
|
+
Child: "Frame.Child";
|
|
1337
|
+
LabelWidget: "Frame.LabelWidget";
|
|
1338
|
+
};
|
|
1339
|
+
export declare const GLArea: "GLArea";
|
|
1340
|
+
export declare const GraphicsOffload: "GraphicsOffload";
|
|
1341
|
+
export declare const Grid: {
|
|
1342
|
+
Root: "Grid.Root";
|
|
1343
|
+
Child: "Grid.Child";
|
|
1344
|
+
};
|
|
1345
|
+
export declare const GridView: {
|
|
1346
|
+
Root: "GridView.Root";
|
|
1347
|
+
Item: "GridView.Item";
|
|
1348
|
+
};
|
|
1349
|
+
export declare const HeaderBar: {
|
|
1350
|
+
Root: "HeaderBar.Root";
|
|
1351
|
+
TitleWidget: "HeaderBar.TitleWidget";
|
|
1352
|
+
};
|
|
1353
|
+
export declare const IconView: "IconView";
|
|
1354
|
+
export declare const Image: "Image";
|
|
1355
|
+
export declare const InfoBar: "InfoBar";
|
|
1356
|
+
export declare const Inscription: "Inscription";
|
|
1357
|
+
export declare const Label: {
|
|
1358
|
+
Root: "Label.Root";
|
|
1359
|
+
MnemonicWidget: "Label.MnemonicWidget";
|
|
1360
|
+
};
|
|
1361
|
+
export declare const LevelBar: "LevelBar";
|
|
1362
|
+
export declare const LinkButton: "LinkButton";
|
|
1363
|
+
export declare const ListBase: "ListBase";
|
|
1364
|
+
export declare const ListBox: "ListBox";
|
|
1365
|
+
export declare const ListBoxRow: "ListBoxRow";
|
|
1366
|
+
export declare const ListView: {
|
|
1367
|
+
Root: "ListView.Root";
|
|
1368
|
+
Item: "ListView.Item";
|
|
1369
|
+
};
|
|
1370
|
+
export declare const LockButton: "LockButton";
|
|
1371
|
+
export declare const MediaControls: "MediaControls";
|
|
1372
|
+
export declare const MenuButton: {
|
|
1373
|
+
Root: "MenuButton.Root";
|
|
1374
|
+
Child: "MenuButton.Child";
|
|
1375
|
+
Popover: "MenuButton.Popover";
|
|
1376
|
+
};
|
|
1377
|
+
export declare const MessageDialog: "MessageDialog";
|
|
1378
|
+
export declare const Notebook: "Notebook";
|
|
1379
|
+
export declare const Overlay: "Overlay";
|
|
1380
|
+
export declare const PageSetupUnixDialog: "PageSetupUnixDialog";
|
|
1381
|
+
export declare const Paned: {
|
|
1382
|
+
Root: "Paned.Root";
|
|
1383
|
+
EndChild: "Paned.EndChild";
|
|
1384
|
+
StartChild: "Paned.StartChild";
|
|
1385
|
+
};
|
|
1386
|
+
export declare const PasswordEntry: "PasswordEntry";
|
|
1387
|
+
export declare const Picture: "Picture";
|
|
1388
|
+
export declare const Popover: {
|
|
1389
|
+
Root: "Popover.Root";
|
|
1390
|
+
Child: "Popover.Child";
|
|
1391
|
+
DefaultWidget: "Popover.DefaultWidget";
|
|
1392
|
+
};
|
|
1393
|
+
export declare const PopoverMenu: "PopoverMenu";
|
|
1394
|
+
export declare const PopoverMenuBar: "PopoverMenuBar";
|
|
1395
|
+
export declare const PrintUnixDialog: "PrintUnixDialog";
|
|
1396
|
+
export declare const ProgressBar: "ProgressBar";
|
|
1397
|
+
export declare const Range: "Range";
|
|
1398
|
+
export declare const Revealer: "Revealer";
|
|
1399
|
+
export declare const Scale: "Scale";
|
|
1400
|
+
export declare const ScaleButton: "ScaleButton";
|
|
1401
|
+
export declare const Scrollbar: "Scrollbar";
|
|
1402
|
+
export declare const ScrolledWindow: "ScrolledWindow";
|
|
1403
|
+
export declare const SearchBar: {
|
|
1404
|
+
Root: "SearchBar.Root";
|
|
1405
|
+
Child: "SearchBar.Child";
|
|
1406
|
+
KeyCaptureWidget: "SearchBar.KeyCaptureWidget";
|
|
1407
|
+
};
|
|
1408
|
+
export declare const SearchEntry: "SearchEntry";
|
|
1409
|
+
export declare const Separator: "Separator";
|
|
1410
|
+
export declare const ShortcutLabel: "ShortcutLabel";
|
|
1411
|
+
export declare const ShortcutsGroup: "ShortcutsGroup";
|
|
1412
|
+
export declare const ShortcutsSection: "ShortcutsSection";
|
|
1413
|
+
export declare const ShortcutsShortcut: "ShortcutsShortcut";
|
|
1414
|
+
export declare const ShortcutsWindow: "ShortcutsWindow";
|
|
1415
|
+
export declare const SpinButton: "SpinButton";
|
|
1416
|
+
export declare const Spinner: "Spinner";
|
|
1417
|
+
export declare const Stack: {
|
|
1418
|
+
Root: "Stack.Root";
|
|
1419
|
+
VisibleChild: "Stack.VisibleChild";
|
|
1420
|
+
};
|
|
1421
|
+
export declare const StackSidebar: {
|
|
1422
|
+
Root: "StackSidebar.Root";
|
|
1423
|
+
Stack: "StackSidebar.Stack";
|
|
1424
|
+
};
|
|
1425
|
+
export declare const StackSwitcher: {
|
|
1426
|
+
Root: "StackSwitcher.Root";
|
|
1427
|
+
Stack: "StackSwitcher.Stack";
|
|
1428
|
+
};
|
|
1429
|
+
export declare const Statusbar: "Statusbar";
|
|
1430
|
+
export declare const Switch: "Switch";
|
|
1431
|
+
export declare const Text: "Text";
|
|
1432
|
+
export declare const TextView: "TextView";
|
|
1433
|
+
export declare const ToggleButton: {
|
|
1434
|
+
Root: "ToggleButton.Root";
|
|
1435
|
+
Group: "ToggleButton.Group";
|
|
1436
|
+
};
|
|
1437
|
+
export declare const TreeExpander: "TreeExpander";
|
|
1438
|
+
export declare const TreeView: "TreeView";
|
|
1439
|
+
export declare const Video: "Video";
|
|
1440
|
+
export declare const Viewport: "Viewport";
|
|
1441
|
+
export declare const VolumeButton: "VolumeButton";
|
|
1442
|
+
export declare const WindowControls: "WindowControls";
|
|
1443
|
+
export declare const WindowHandle: "WindowHandle";
|
|
1444
|
+
declare module "react" {
|
|
1445
|
+
namespace JSX {
|
|
1446
|
+
interface IntrinsicElements {
|
|
1447
|
+
"Window.Root": WindowProps;
|
|
1448
|
+
"Window.Child": SlotProps;
|
|
1449
|
+
"Window.DefaultWidget": SlotProps;
|
|
1450
|
+
"Window.FocusWidget": SlotProps;
|
|
1451
|
+
"Window.Titlebar": SlotProps;
|
|
1452
|
+
"Window.TransientFor": SlotProps;
|
|
1453
|
+
AboutDialog: AboutDialogProps;
|
|
1454
|
+
ActionBar: ActionBarProps;
|
|
1455
|
+
AppChooserButton: AppChooserButtonProps;
|
|
1456
|
+
AppChooserDialog: AppChooserDialogProps;
|
|
1457
|
+
AppChooserWidget: AppChooserWidgetProps;
|
|
1458
|
+
ApplicationWindow: ApplicationWindowProps;
|
|
1459
|
+
AspectFrame: AspectFrameProps;
|
|
1460
|
+
"AspectFrame.Child": SlotProps;
|
|
1461
|
+
Assistant: AssistantProps;
|
|
1462
|
+
Box: BoxProps;
|
|
1463
|
+
Button: ButtonProps;
|
|
1464
|
+
"Button.Child": SlotProps;
|
|
1465
|
+
Calendar: CalendarProps;
|
|
1466
|
+
CellView: CellViewProps;
|
|
1467
|
+
"CenterBox.Root": CenterBoxProps;
|
|
1468
|
+
"CenterBox.CenterWidget": SlotProps;
|
|
1469
|
+
"CenterBox.EndWidget": SlotProps;
|
|
1470
|
+
"CenterBox.StartWidget": SlotProps;
|
|
1471
|
+
"CheckButton.Root": CheckButtonProps;
|
|
1472
|
+
"CheckButton.Child": SlotProps;
|
|
1473
|
+
"CheckButton.Group": SlotProps;
|
|
1474
|
+
ColorButton: ColorButtonProps;
|
|
1475
|
+
ColorChooserDialog: ColorChooserDialogProps;
|
|
1476
|
+
ColorChooserWidget: ColorChooserWidgetProps;
|
|
1477
|
+
ColorDialogButton: ColorDialogButtonProps;
|
|
1478
|
+
"ColumnView.Root": ColumnViewProps;
|
|
1479
|
+
"ColumnView.Item": ItemProps<any>;
|
|
1480
|
+
ComboBox: ComboBoxProps;
|
|
1481
|
+
"ComboBox.Child": SlotProps;
|
|
1482
|
+
ComboBoxText: ComboBoxTextProps;
|
|
1483
|
+
Dialog: DialogProps;
|
|
1484
|
+
DragIcon: DragIconProps;
|
|
1485
|
+
"DragIcon.Child": SlotProps;
|
|
1486
|
+
DrawingArea: DrawingAreaProps;
|
|
1487
|
+
"DropDown.Root": DropDownProps;
|
|
1488
|
+
"DropDown.Item": ItemProps<any>;
|
|
1489
|
+
EditableLabel: EditableLabelProps;
|
|
1490
|
+
EmojiChooser: EmojiChooserProps;
|
|
1491
|
+
Entry: EntryProps;
|
|
1492
|
+
"Expander.Root": ExpanderProps;
|
|
1493
|
+
"Expander.Child": SlotProps;
|
|
1494
|
+
"Expander.LabelWidget": SlotProps;
|
|
1495
|
+
FileChooserDialog: FileChooserDialogProps;
|
|
1496
|
+
FileChooserWidget: FileChooserWidgetProps;
|
|
1497
|
+
Fixed: FixedProps;
|
|
1498
|
+
FlowBox: FlowBoxProps;
|
|
1499
|
+
FlowBoxChild: FlowBoxChildProps;
|
|
1500
|
+
"FlowBoxChild.Child": SlotProps;
|
|
1501
|
+
FontButton: FontButtonProps;
|
|
1502
|
+
FontChooserDialog: FontChooserDialogProps;
|
|
1503
|
+
FontChooserWidget: FontChooserWidgetProps;
|
|
1504
|
+
FontDialogButton: FontDialogButtonProps;
|
|
1505
|
+
"Frame.Root": FrameProps;
|
|
1506
|
+
"Frame.Child": SlotProps;
|
|
1507
|
+
"Frame.LabelWidget": SlotProps;
|
|
1508
|
+
GLArea: GLAreaProps;
|
|
1509
|
+
GraphicsOffload: GraphicsOffloadProps;
|
|
1510
|
+
"GraphicsOffload.Child": SlotProps;
|
|
1511
|
+
"Grid.Root": GridProps;
|
|
1512
|
+
"Grid.Child": GridChildProps;
|
|
1513
|
+
"GridView.Root": GridViewProps;
|
|
1514
|
+
"GridView.Item": ItemProps<any>;
|
|
1515
|
+
"HeaderBar.Root": HeaderBarProps;
|
|
1516
|
+
"HeaderBar.TitleWidget": SlotProps;
|
|
1517
|
+
IconView: IconViewProps;
|
|
1518
|
+
Image: ImageProps;
|
|
1519
|
+
InfoBar: InfoBarProps;
|
|
1520
|
+
Inscription: InscriptionProps;
|
|
1521
|
+
"Label.Root": LabelProps;
|
|
1522
|
+
"Label.MnemonicWidget": SlotProps;
|
|
1523
|
+
LevelBar: LevelBarProps;
|
|
1524
|
+
LinkButton: LinkButtonProps;
|
|
1525
|
+
ListBase: ListBaseProps;
|
|
1526
|
+
ListBox: ListBoxProps;
|
|
1527
|
+
ListBoxRow: ListBoxRowProps;
|
|
1528
|
+
"ListBoxRow.Child": SlotProps;
|
|
1529
|
+
"ListView.Root": ListViewProps;
|
|
1530
|
+
"ListView.Item": ItemProps<any>;
|
|
1531
|
+
LockButton: LockButtonProps;
|
|
1532
|
+
MediaControls: MediaControlsProps;
|
|
1533
|
+
"MenuButton.Root": MenuButtonProps;
|
|
1534
|
+
"MenuButton.Child": SlotProps;
|
|
1535
|
+
"MenuButton.Popover": SlotProps;
|
|
1536
|
+
MessageDialog: MessageDialogProps;
|
|
1537
|
+
Notebook: NotebookProps;
|
|
1538
|
+
Overlay: OverlayProps;
|
|
1539
|
+
"Overlay.Child": SlotProps;
|
|
1540
|
+
PageSetupUnixDialog: PageSetupUnixDialogProps;
|
|
1541
|
+
"Paned.Root": PanedProps;
|
|
1542
|
+
"Paned.EndChild": SlotProps;
|
|
1543
|
+
"Paned.StartChild": SlotProps;
|
|
1544
|
+
PasswordEntry: PasswordEntryProps;
|
|
1545
|
+
Picture: PictureProps;
|
|
1546
|
+
"Popover.Root": PopoverProps;
|
|
1547
|
+
"Popover.Child": SlotProps;
|
|
1548
|
+
"Popover.DefaultWidget": SlotProps;
|
|
1549
|
+
PopoverMenu: PopoverMenuProps;
|
|
1550
|
+
PopoverMenuBar: PopoverMenuBarProps;
|
|
1551
|
+
PrintUnixDialog: PrintUnixDialogProps;
|
|
1552
|
+
ProgressBar: ProgressBarProps;
|
|
1553
|
+
Range: RangeProps;
|
|
1554
|
+
Revealer: RevealerProps;
|
|
1555
|
+
"Revealer.Child": SlotProps;
|
|
1556
|
+
Scale: ScaleProps;
|
|
1557
|
+
ScaleButton: ScaleButtonProps;
|
|
1558
|
+
Scrollbar: ScrollbarProps;
|
|
1559
|
+
ScrolledWindow: ScrolledWindowProps;
|
|
1560
|
+
"ScrolledWindow.Child": SlotProps;
|
|
1561
|
+
"SearchBar.Root": SearchBarProps;
|
|
1562
|
+
"SearchBar.Child": SlotProps;
|
|
1563
|
+
"SearchBar.KeyCaptureWidget": SlotProps;
|
|
1564
|
+
SearchEntry: SearchEntryProps;
|
|
1565
|
+
Separator: SeparatorProps;
|
|
1566
|
+
ShortcutLabel: ShortcutLabelProps;
|
|
1567
|
+
ShortcutsGroup: ShortcutsGroupProps;
|
|
1568
|
+
ShortcutsSection: ShortcutsSectionProps;
|
|
1569
|
+
ShortcutsShortcut: ShortcutsShortcutProps;
|
|
1570
|
+
ShortcutsWindow: ShortcutsWindowProps;
|
|
1571
|
+
SpinButton: SpinButtonProps;
|
|
1572
|
+
Spinner: SpinnerProps;
|
|
1573
|
+
"Stack.Root": StackProps;
|
|
1574
|
+
"Stack.VisibleChild": SlotProps;
|
|
1575
|
+
"StackSidebar.Root": StackSidebarProps;
|
|
1576
|
+
"StackSidebar.Stack": SlotProps;
|
|
1577
|
+
"StackSwitcher.Root": StackSwitcherProps;
|
|
1578
|
+
"StackSwitcher.Stack": SlotProps;
|
|
1579
|
+
Statusbar: StatusbarProps;
|
|
1580
|
+
Switch: SwitchProps;
|
|
1581
|
+
Text: TextProps;
|
|
1582
|
+
TextView: TextViewProps;
|
|
1583
|
+
"ToggleButton.Root": ToggleButtonProps;
|
|
1584
|
+
"ToggleButton.Group": SlotProps;
|
|
1585
|
+
TreeExpander: TreeExpanderProps;
|
|
1586
|
+
"TreeExpander.Child": SlotProps;
|
|
1587
|
+
TreeView: TreeViewProps;
|
|
1588
|
+
Video: VideoProps;
|
|
1589
|
+
Viewport: ViewportProps;
|
|
1590
|
+
"Viewport.Child": SlotProps;
|
|
1591
|
+
VolumeButton: VolumeButtonProps;
|
|
1592
|
+
WindowControls: WindowControlsProps;
|
|
1593
|
+
WindowHandle: WindowHandleProps;
|
|
1594
|
+
"WindowHandle.Child": SlotProps;
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
}
|
|
1598
|
+
export {};
|