@girs/cally-14 14.0.0-3.3.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 +104 -0
- package/cally-14-ambient.d.ts +12 -0
- package/cally-14-ambient.js +2 -0
- package/cally-14-import.d.ts +12 -0
- package/cally-14-import.js +3 -0
- package/cally-14.cjs +11 -0
- package/cally-14.d.cts +1218 -0
- package/cally-14.d.ts +1223 -0
- package/cally-14.js +10 -0
- package/package.json +73 -0
- package/tsconfig.json +23 -0
- package/typedoc.json +7 -0
package/cally-14.d.cts
ADDED
|
@@ -0,0 +1,1218 @@
|
|
|
1
|
+
|
|
2
|
+
/*
|
|
3
|
+
* Type Definitions for Gjs (https://gjs.guide/)
|
|
4
|
+
*
|
|
5
|
+
* These type definitions are automatically generated, do not edit them by hand.
|
|
6
|
+
* If you found a bug fix it in `ts-for-gir` or create a bug report on https://github.com/gjsify/ts-for-gir
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import './cally-14-ambient.d.ts';
|
|
10
|
+
import './cally-14-import.d.ts';
|
|
11
|
+
/**
|
|
12
|
+
* Cally-14
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import type Mtk from '@girs/mtk-14';
|
|
16
|
+
import type Graphene from '@girs/graphene-1.0';
|
|
17
|
+
import type GObject from '@girs/gobject-2.0';
|
|
18
|
+
import type GLib from '@girs/glib-2.0';
|
|
19
|
+
import type CoglPango from '@girs/coglpango-14';
|
|
20
|
+
import type PangoCairo from '@girs/pangocairo-1.0';
|
|
21
|
+
import type cairo from '@girs/cairo-1.0';
|
|
22
|
+
import type Pango from '@girs/pango-1.0';
|
|
23
|
+
import type HarfBuzz from '@girs/harfbuzz-0.0';
|
|
24
|
+
import type freetype2 from '@girs/freetype2-2.0';
|
|
25
|
+
import type Gio from '@girs/gio-2.0';
|
|
26
|
+
import type Cogl from '@girs/cogl-14';
|
|
27
|
+
import type xlib from '@girs/xlib-2.0';
|
|
28
|
+
import type GL from '@girs/gl-1.0';
|
|
29
|
+
import type Clutter from '@girs/clutter-14';
|
|
30
|
+
import type Atk from '@girs/atk-1.0';
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Initializes the accessibility support.
|
|
34
|
+
* @returns %TRUE if accessibility support has been correctly initialized.
|
|
35
|
+
*/
|
|
36
|
+
export function accessibility_init(): boolean
|
|
37
|
+
/**
|
|
38
|
+
* Returns if the accessibility support using cally is enabled.
|
|
39
|
+
* @returns %TRUE if accessibility support has been correctly initialized.
|
|
40
|
+
*/
|
|
41
|
+
export function get_cally_initialized(): boolean
|
|
42
|
+
export function snoop_key_event(stage: Clutter.Stage, key: Clutter.KeyEvent): boolean
|
|
43
|
+
/**
|
|
44
|
+
* Action function, to be used on #AtkAction implementations as
|
|
45
|
+
* an individual action.
|
|
46
|
+
*
|
|
47
|
+
* Unlike #CallyActionFunc, this function uses the `user_data`
|
|
48
|
+
* argument passed to [method`Actor`.add_action_full].
|
|
49
|
+
* @callback
|
|
50
|
+
* @param cally_actor a #CallyActor
|
|
51
|
+
*/
|
|
52
|
+
export interface ActionCallback {
|
|
53
|
+
(cally_actor: Actor): void
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Action function, to be used on #AtkAction implementations as a individual
|
|
57
|
+
* action
|
|
58
|
+
* @callback
|
|
59
|
+
* @param cally_actor a #CallyActor
|
|
60
|
+
*/
|
|
61
|
+
export interface ActionFunc {
|
|
62
|
+
(cally_actor: Actor): void
|
|
63
|
+
}
|
|
64
|
+
export module Actor {
|
|
65
|
+
|
|
66
|
+
// Constructor properties interface
|
|
67
|
+
|
|
68
|
+
export interface ConstructorProperties extends Atk.Action.ConstructorProperties, Atk.Component.ConstructorProperties, Atk.GObjectAccessible.ConstructorProperties {
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export interface Actor extends Atk.Action, Atk.Component {
|
|
74
|
+
|
|
75
|
+
// Conflicting properties
|
|
76
|
+
|
|
77
|
+
parent: Atk.Object & GObject.Object & GObject.Object
|
|
78
|
+
|
|
79
|
+
// Own fields of Cally-14.Cally.Actor
|
|
80
|
+
|
|
81
|
+
parent_instance: Atk.GObjectAccessible
|
|
82
|
+
|
|
83
|
+
// Owm methods of Cally-14.Cally.Actor
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Adds a new action to be accessed with the #AtkAction interface.
|
|
87
|
+
* @param action_name the action name
|
|
88
|
+
* @param action_description the action description
|
|
89
|
+
* @param action_keybinding the action keybinding
|
|
90
|
+
* @param callback the callback of the action
|
|
91
|
+
* @returns added action id, or -1 if failure
|
|
92
|
+
*/
|
|
93
|
+
add_action(action_name: string, action_description: string, action_keybinding: string, callback: ActionCallback): number
|
|
94
|
+
/**
|
|
95
|
+
* Removes a action, using the `action_id` returned by [method`Actor`.add_action]
|
|
96
|
+
* @param action_id the action id
|
|
97
|
+
* @returns %TRUE if the operation was successful, %FALSE otherwise
|
|
98
|
+
*/
|
|
99
|
+
remove_action(action_id: number): boolean
|
|
100
|
+
/**
|
|
101
|
+
* Removes an action, using the `action_name` used when the action was added
|
|
102
|
+
* with [method`Actor`.add_action]
|
|
103
|
+
* @param action_name the name of the action to remove
|
|
104
|
+
* @returns %TRUE if the operation was successful, %FALSE otherwise
|
|
105
|
+
*/
|
|
106
|
+
remove_action_by_name(action_name: string): boolean
|
|
107
|
+
|
|
108
|
+
// Conflicting methods
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Returns a description of the specified action of the object.
|
|
112
|
+
* @param i the action index corresponding to the action to be performed
|
|
113
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
114
|
+
*/
|
|
115
|
+
get_description(i: number): string | null
|
|
116
|
+
/**
|
|
117
|
+
* Gets the accessible description of the accessible.
|
|
118
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
119
|
+
*/
|
|
120
|
+
get_description(): string
|
|
121
|
+
/**
|
|
122
|
+
* Returns a non-localized string naming the specified action of the
|
|
123
|
+
* object. This name is generally not descriptive of the end result
|
|
124
|
+
* of the action, but instead names the 'interaction type' which the
|
|
125
|
+
* object supports. By convention, the above strings should be used to
|
|
126
|
+
* represent the actions which correspond to the common point-and-click
|
|
127
|
+
* interaction techniques of the same name: i.e.
|
|
128
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
129
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
130
|
+
* object, if one exists.
|
|
131
|
+
*
|
|
132
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
133
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
134
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
135
|
+
* NIL.
|
|
136
|
+
* @param i the action index corresponding to the action to be performed
|
|
137
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
138
|
+
*/
|
|
139
|
+
get_name(i: number): string | null
|
|
140
|
+
/**
|
|
141
|
+
* Gets the accessible name of the accessible.
|
|
142
|
+
* @returns a character string representing the accessible name of the object.
|
|
143
|
+
*/
|
|
144
|
+
get_name(): string
|
|
145
|
+
/**
|
|
146
|
+
* Sets a description of the specified action of the object.
|
|
147
|
+
* @param i the action index corresponding to the action to be performed
|
|
148
|
+
* @param desc the description to be assigned to this action
|
|
149
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
150
|
+
*/
|
|
151
|
+
set_description(i: number, desc: string): boolean
|
|
152
|
+
/**
|
|
153
|
+
* Sets the accessible description of the accessible. You can't set
|
|
154
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
155
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
156
|
+
* the name to a empty value you can use "".
|
|
157
|
+
* @param description a character string to be set as the accessible description
|
|
158
|
+
*/
|
|
159
|
+
set_description(description: string): void
|
|
160
|
+
/**
|
|
161
|
+
* Returns a description of the specified action of the object.
|
|
162
|
+
* @virtual
|
|
163
|
+
* @param i the action index corresponding to the action to be performed
|
|
164
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
165
|
+
*/
|
|
166
|
+
vfunc_get_description(i: number): string | null
|
|
167
|
+
/**
|
|
168
|
+
* Gets the accessible description of the accessible.
|
|
169
|
+
* @virtual
|
|
170
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
171
|
+
*/
|
|
172
|
+
vfunc_get_description(): string
|
|
173
|
+
/**
|
|
174
|
+
* Returns a non-localized string naming the specified action of the
|
|
175
|
+
* object. This name is generally not descriptive of the end result
|
|
176
|
+
* of the action, but instead names the 'interaction type' which the
|
|
177
|
+
* object supports. By convention, the above strings should be used to
|
|
178
|
+
* represent the actions which correspond to the common point-and-click
|
|
179
|
+
* interaction techniques of the same name: i.e.
|
|
180
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
181
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
182
|
+
* object, if one exists.
|
|
183
|
+
*
|
|
184
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
185
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
186
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
187
|
+
* NIL.
|
|
188
|
+
* @virtual
|
|
189
|
+
* @param i the action index corresponding to the action to be performed
|
|
190
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
191
|
+
*/
|
|
192
|
+
vfunc_get_name(i: number): string | null
|
|
193
|
+
/**
|
|
194
|
+
* Gets the accessible name of the accessible.
|
|
195
|
+
* @virtual
|
|
196
|
+
* @returns a character string representing the accessible name of the object.
|
|
197
|
+
*/
|
|
198
|
+
vfunc_get_name(): string
|
|
199
|
+
/**
|
|
200
|
+
* Sets a description of the specified action of the object.
|
|
201
|
+
* @virtual
|
|
202
|
+
* @param i the action index corresponding to the action to be performed
|
|
203
|
+
* @param desc the description to be assigned to this action
|
|
204
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
205
|
+
*/
|
|
206
|
+
vfunc_set_description(i: number, desc: string): boolean
|
|
207
|
+
/**
|
|
208
|
+
* Sets the accessible description of the accessible. You can't set
|
|
209
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
210
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
211
|
+
* the name to a empty value you can use "".
|
|
212
|
+
* @virtual
|
|
213
|
+
* @param description a character string to be set as the accessible description
|
|
214
|
+
*/
|
|
215
|
+
vfunc_set_description(description: string): void
|
|
216
|
+
|
|
217
|
+
// Class property signals of Cally-14.Cally.Actor
|
|
218
|
+
|
|
219
|
+
connect(sigName: "notify::accessible-component-layer", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
220
|
+
connect_after(sigName: "notify::accessible-component-layer", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
221
|
+
emit(sigName: "notify::accessible-component-layer", ...args: any[]): void
|
|
222
|
+
connect(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
223
|
+
connect_after(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
224
|
+
emit(sigName: "notify::accessible-component-mdi-zorder", ...args: any[]): void
|
|
225
|
+
connect(sigName: "notify::accessible-description", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
226
|
+
connect_after(sigName: "notify::accessible-description", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
227
|
+
emit(sigName: "notify::accessible-description", ...args: any[]): void
|
|
228
|
+
connect(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
229
|
+
connect_after(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
230
|
+
emit(sigName: "notify::accessible-hypertext-nlinks", ...args: any[]): void
|
|
231
|
+
connect(sigName: "notify::accessible-name", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
232
|
+
connect_after(sigName: "notify::accessible-name", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
233
|
+
emit(sigName: "notify::accessible-name", ...args: any[]): void
|
|
234
|
+
connect(sigName: "notify::accessible-parent", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
235
|
+
connect_after(sigName: "notify::accessible-parent", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
236
|
+
emit(sigName: "notify::accessible-parent", ...args: any[]): void
|
|
237
|
+
connect(sigName: "notify::accessible-role", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
238
|
+
connect_after(sigName: "notify::accessible-role", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
239
|
+
emit(sigName: "notify::accessible-role", ...args: any[]): void
|
|
240
|
+
connect(sigName: "notify::accessible-table-caption", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
241
|
+
connect_after(sigName: "notify::accessible-table-caption", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
242
|
+
emit(sigName: "notify::accessible-table-caption", ...args: any[]): void
|
|
243
|
+
connect(sigName: "notify::accessible-table-caption-object", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
244
|
+
connect_after(sigName: "notify::accessible-table-caption-object", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
245
|
+
emit(sigName: "notify::accessible-table-caption-object", ...args: any[]): void
|
|
246
|
+
connect(sigName: "notify::accessible-table-column-description", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
247
|
+
connect_after(sigName: "notify::accessible-table-column-description", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
248
|
+
emit(sigName: "notify::accessible-table-column-description", ...args: any[]): void
|
|
249
|
+
connect(sigName: "notify::accessible-table-column-header", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
250
|
+
connect_after(sigName: "notify::accessible-table-column-header", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
251
|
+
emit(sigName: "notify::accessible-table-column-header", ...args: any[]): void
|
|
252
|
+
connect(sigName: "notify::accessible-table-row-description", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
253
|
+
connect_after(sigName: "notify::accessible-table-row-description", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
254
|
+
emit(sigName: "notify::accessible-table-row-description", ...args: any[]): void
|
|
255
|
+
connect(sigName: "notify::accessible-table-row-header", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
256
|
+
connect_after(sigName: "notify::accessible-table-row-header", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
257
|
+
emit(sigName: "notify::accessible-table-row-header", ...args: any[]): void
|
|
258
|
+
connect(sigName: "notify::accessible-table-summary", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
259
|
+
connect_after(sigName: "notify::accessible-table-summary", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
260
|
+
emit(sigName: "notify::accessible-table-summary", ...args: any[]): void
|
|
261
|
+
connect(sigName: "notify::accessible-value", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
262
|
+
connect_after(sigName: "notify::accessible-value", callback: (($obj: Actor, pspec: GObject.ParamSpec) => void)): number
|
|
263
|
+
emit(sigName: "notify::accessible-value", ...args: any[]): void
|
|
264
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
265
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
266
|
+
emit(sigName: string, ...args: any[]): void
|
|
267
|
+
disconnect(id: number): void
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* Implementation of the ATK interfaces for [class`Clutter`.Actor]
|
|
272
|
+
*
|
|
273
|
+
* #CallyActor implements the required ATK interfaces of [class`Clutter`.Actor]
|
|
274
|
+
* exposing the common elements on each actor (position, extents, etc).
|
|
275
|
+
* @class
|
|
276
|
+
*/
|
|
277
|
+
export class Actor extends Atk.GObjectAccessible {
|
|
278
|
+
|
|
279
|
+
// Own properties of Cally-14.Cally.Actor
|
|
280
|
+
|
|
281
|
+
static name: string
|
|
282
|
+
static $gtype: GObject.GType<Actor>
|
|
283
|
+
|
|
284
|
+
// Constructors of Cally-14.Cally.Actor
|
|
285
|
+
|
|
286
|
+
constructor(config?: Actor.ConstructorProperties)
|
|
287
|
+
/**
|
|
288
|
+
* Creates a new #CallyActor for the given `actor`
|
|
289
|
+
* @constructor
|
|
290
|
+
* @param actor a #ClutterActor
|
|
291
|
+
* @returns the newly created #AtkObject
|
|
292
|
+
*/
|
|
293
|
+
constructor(actor: Clutter.Actor)
|
|
294
|
+
/**
|
|
295
|
+
* Creates a new #CallyActor for the given `actor`
|
|
296
|
+
* @constructor
|
|
297
|
+
* @param actor a #ClutterActor
|
|
298
|
+
* @returns the newly created #AtkObject
|
|
299
|
+
*/
|
|
300
|
+
static new(actor: Clutter.Actor): Actor
|
|
301
|
+
_init(config?: Actor.ConstructorProperties): void
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export module Clone {
|
|
305
|
+
|
|
306
|
+
// Constructor properties interface
|
|
307
|
+
|
|
308
|
+
export interface ConstructorProperties extends Atk.Action.ConstructorProperties, Atk.Component.ConstructorProperties, Actor.ConstructorProperties {
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
export interface Clone extends Atk.Action, Atk.Component {
|
|
314
|
+
|
|
315
|
+
// Conflicting properties
|
|
316
|
+
|
|
317
|
+
parent: Atk.Object & GObject.Object & GObject.Object
|
|
318
|
+
|
|
319
|
+
// Own fields of Cally-14.Cally.Clone
|
|
320
|
+
|
|
321
|
+
parent_instance: Actor & Atk.GObjectAccessible
|
|
322
|
+
|
|
323
|
+
// Conflicting methods
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* Returns a description of the specified action of the object.
|
|
327
|
+
* @param i the action index corresponding to the action to be performed
|
|
328
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
329
|
+
*/
|
|
330
|
+
get_description(i: number): string | null
|
|
331
|
+
/**
|
|
332
|
+
* Gets the accessible description of the accessible.
|
|
333
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
334
|
+
*/
|
|
335
|
+
get_description(): string
|
|
336
|
+
/**
|
|
337
|
+
* Returns a non-localized string naming the specified action of the
|
|
338
|
+
* object. This name is generally not descriptive of the end result
|
|
339
|
+
* of the action, but instead names the 'interaction type' which the
|
|
340
|
+
* object supports. By convention, the above strings should be used to
|
|
341
|
+
* represent the actions which correspond to the common point-and-click
|
|
342
|
+
* interaction techniques of the same name: i.e.
|
|
343
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
344
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
345
|
+
* object, if one exists.
|
|
346
|
+
*
|
|
347
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
348
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
349
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
350
|
+
* NIL.
|
|
351
|
+
* @param i the action index corresponding to the action to be performed
|
|
352
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
353
|
+
*/
|
|
354
|
+
get_name(i: number): string | null
|
|
355
|
+
/**
|
|
356
|
+
* Gets the accessible name of the accessible.
|
|
357
|
+
* @returns a character string representing the accessible name of the object.
|
|
358
|
+
*/
|
|
359
|
+
get_name(): string
|
|
360
|
+
/**
|
|
361
|
+
* Sets a description of the specified action of the object.
|
|
362
|
+
* @param i the action index corresponding to the action to be performed
|
|
363
|
+
* @param desc the description to be assigned to this action
|
|
364
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
365
|
+
*/
|
|
366
|
+
set_description(i: number, desc: string): boolean
|
|
367
|
+
/**
|
|
368
|
+
* Sets the accessible description of the accessible. You can't set
|
|
369
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
370
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
371
|
+
* the name to a empty value you can use "".
|
|
372
|
+
* @param description a character string to be set as the accessible description
|
|
373
|
+
*/
|
|
374
|
+
set_description(description: string): void
|
|
375
|
+
/**
|
|
376
|
+
* Returns a description of the specified action of the object.
|
|
377
|
+
* @virtual
|
|
378
|
+
* @param i the action index corresponding to the action to be performed
|
|
379
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
380
|
+
*/
|
|
381
|
+
vfunc_get_description(i: number): string | null
|
|
382
|
+
/**
|
|
383
|
+
* Gets the accessible description of the accessible.
|
|
384
|
+
* @virtual
|
|
385
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
386
|
+
*/
|
|
387
|
+
vfunc_get_description(): string
|
|
388
|
+
/**
|
|
389
|
+
* Returns a non-localized string naming the specified action of the
|
|
390
|
+
* object. This name is generally not descriptive of the end result
|
|
391
|
+
* of the action, but instead names the 'interaction type' which the
|
|
392
|
+
* object supports. By convention, the above strings should be used to
|
|
393
|
+
* represent the actions which correspond to the common point-and-click
|
|
394
|
+
* interaction techniques of the same name: i.e.
|
|
395
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
396
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
397
|
+
* object, if one exists.
|
|
398
|
+
*
|
|
399
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
400
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
401
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
402
|
+
* NIL.
|
|
403
|
+
* @virtual
|
|
404
|
+
* @param i the action index corresponding to the action to be performed
|
|
405
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
406
|
+
*/
|
|
407
|
+
vfunc_get_name(i: number): string | null
|
|
408
|
+
/**
|
|
409
|
+
* Gets the accessible name of the accessible.
|
|
410
|
+
* @virtual
|
|
411
|
+
* @returns a character string representing the accessible name of the object.
|
|
412
|
+
*/
|
|
413
|
+
vfunc_get_name(): string
|
|
414
|
+
/**
|
|
415
|
+
* Sets a description of the specified action of the object.
|
|
416
|
+
* @virtual
|
|
417
|
+
* @param i the action index corresponding to the action to be performed
|
|
418
|
+
* @param desc the description to be assigned to this action
|
|
419
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
420
|
+
*/
|
|
421
|
+
vfunc_set_description(i: number, desc: string): boolean
|
|
422
|
+
/**
|
|
423
|
+
* Sets the accessible description of the accessible. You can't set
|
|
424
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
425
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
426
|
+
* the name to a empty value you can use "".
|
|
427
|
+
* @virtual
|
|
428
|
+
* @param description a character string to be set as the accessible description
|
|
429
|
+
*/
|
|
430
|
+
vfunc_set_description(description: string): void
|
|
431
|
+
|
|
432
|
+
// Class property signals of Cally-14.Cally.Clone
|
|
433
|
+
|
|
434
|
+
connect(sigName: "notify::accessible-component-layer", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
435
|
+
connect_after(sigName: "notify::accessible-component-layer", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
436
|
+
emit(sigName: "notify::accessible-component-layer", ...args: any[]): void
|
|
437
|
+
connect(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
438
|
+
connect_after(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
439
|
+
emit(sigName: "notify::accessible-component-mdi-zorder", ...args: any[]): void
|
|
440
|
+
connect(sigName: "notify::accessible-description", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
441
|
+
connect_after(sigName: "notify::accessible-description", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
442
|
+
emit(sigName: "notify::accessible-description", ...args: any[]): void
|
|
443
|
+
connect(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
444
|
+
connect_after(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
445
|
+
emit(sigName: "notify::accessible-hypertext-nlinks", ...args: any[]): void
|
|
446
|
+
connect(sigName: "notify::accessible-name", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
447
|
+
connect_after(sigName: "notify::accessible-name", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
448
|
+
emit(sigName: "notify::accessible-name", ...args: any[]): void
|
|
449
|
+
connect(sigName: "notify::accessible-parent", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
450
|
+
connect_after(sigName: "notify::accessible-parent", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
451
|
+
emit(sigName: "notify::accessible-parent", ...args: any[]): void
|
|
452
|
+
connect(sigName: "notify::accessible-role", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
453
|
+
connect_after(sigName: "notify::accessible-role", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
454
|
+
emit(sigName: "notify::accessible-role", ...args: any[]): void
|
|
455
|
+
connect(sigName: "notify::accessible-table-caption", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
456
|
+
connect_after(sigName: "notify::accessible-table-caption", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
457
|
+
emit(sigName: "notify::accessible-table-caption", ...args: any[]): void
|
|
458
|
+
connect(sigName: "notify::accessible-table-caption-object", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
459
|
+
connect_after(sigName: "notify::accessible-table-caption-object", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
460
|
+
emit(sigName: "notify::accessible-table-caption-object", ...args: any[]): void
|
|
461
|
+
connect(sigName: "notify::accessible-table-column-description", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
462
|
+
connect_after(sigName: "notify::accessible-table-column-description", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
463
|
+
emit(sigName: "notify::accessible-table-column-description", ...args: any[]): void
|
|
464
|
+
connect(sigName: "notify::accessible-table-column-header", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
465
|
+
connect_after(sigName: "notify::accessible-table-column-header", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
466
|
+
emit(sigName: "notify::accessible-table-column-header", ...args: any[]): void
|
|
467
|
+
connect(sigName: "notify::accessible-table-row-description", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
468
|
+
connect_after(sigName: "notify::accessible-table-row-description", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
469
|
+
emit(sigName: "notify::accessible-table-row-description", ...args: any[]): void
|
|
470
|
+
connect(sigName: "notify::accessible-table-row-header", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
471
|
+
connect_after(sigName: "notify::accessible-table-row-header", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
472
|
+
emit(sigName: "notify::accessible-table-row-header", ...args: any[]): void
|
|
473
|
+
connect(sigName: "notify::accessible-table-summary", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
474
|
+
connect_after(sigName: "notify::accessible-table-summary", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
475
|
+
emit(sigName: "notify::accessible-table-summary", ...args: any[]): void
|
|
476
|
+
connect(sigName: "notify::accessible-value", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
477
|
+
connect_after(sigName: "notify::accessible-value", callback: (($obj: Clone, pspec: GObject.ParamSpec) => void)): number
|
|
478
|
+
emit(sigName: "notify::accessible-value", ...args: any[]): void
|
|
479
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
480
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
481
|
+
emit(sigName: string, ...args: any[]): void
|
|
482
|
+
disconnect(id: number): void
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* Implementation of the ATK interfaces for a #ClutterClone
|
|
487
|
+
*
|
|
488
|
+
* #CallyClone implements the required ATK interfaces of [class`Clutter`.Clone]
|
|
489
|
+
*
|
|
490
|
+
* In particular it sets a proper role for the clone, as just a image,
|
|
491
|
+
* as it is the sanest and simplest approach.
|
|
492
|
+
* @class
|
|
493
|
+
*/
|
|
494
|
+
export class Clone extends Actor {
|
|
495
|
+
|
|
496
|
+
// Own properties of Cally-14.Cally.Clone
|
|
497
|
+
|
|
498
|
+
static name: string
|
|
499
|
+
static $gtype: GObject.GType<Clone>
|
|
500
|
+
|
|
501
|
+
// Constructors of Cally-14.Cally.Clone
|
|
502
|
+
|
|
503
|
+
constructor(config?: Clone.ConstructorProperties)
|
|
504
|
+
/**
|
|
505
|
+
* Creates a new #CallyClone for the given `actor`. `actor` must be a
|
|
506
|
+
* [class`Clutter`.Clone].
|
|
507
|
+
* @constructor
|
|
508
|
+
* @param actor a #ClutterActor
|
|
509
|
+
* @returns the newly created #AtkObject
|
|
510
|
+
*/
|
|
511
|
+
constructor(actor: Clutter.Actor)
|
|
512
|
+
/**
|
|
513
|
+
* Creates a new #CallyClone for the given `actor`. `actor` must be a
|
|
514
|
+
* [class`Clutter`.Clone].
|
|
515
|
+
* @constructor
|
|
516
|
+
* @param actor a #ClutterActor
|
|
517
|
+
* @returns the newly created #AtkObject
|
|
518
|
+
*/
|
|
519
|
+
static new(actor: Clutter.Actor): Clone
|
|
520
|
+
_init(config?: Clone.ConstructorProperties): void
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
export module Root {
|
|
524
|
+
|
|
525
|
+
// Constructor properties interface
|
|
526
|
+
|
|
527
|
+
export interface ConstructorProperties extends Atk.GObjectAccessible.ConstructorProperties {
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
export interface Root {
|
|
533
|
+
|
|
534
|
+
// Conflicting properties
|
|
535
|
+
|
|
536
|
+
parent: Atk.Object & GObject.Object & GObject.Object
|
|
537
|
+
|
|
538
|
+
// Own fields of Cally-14.Cally.Root
|
|
539
|
+
|
|
540
|
+
parent_instance: Atk.GObjectAccessible
|
|
541
|
+
|
|
542
|
+
// Class property signals of Cally-14.Cally.Root
|
|
543
|
+
|
|
544
|
+
connect(sigName: "notify::accessible-component-layer", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
545
|
+
connect_after(sigName: "notify::accessible-component-layer", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
546
|
+
emit(sigName: "notify::accessible-component-layer", ...args: any[]): void
|
|
547
|
+
connect(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
548
|
+
connect_after(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
549
|
+
emit(sigName: "notify::accessible-component-mdi-zorder", ...args: any[]): void
|
|
550
|
+
connect(sigName: "notify::accessible-description", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
551
|
+
connect_after(sigName: "notify::accessible-description", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
552
|
+
emit(sigName: "notify::accessible-description", ...args: any[]): void
|
|
553
|
+
connect(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
554
|
+
connect_after(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
555
|
+
emit(sigName: "notify::accessible-hypertext-nlinks", ...args: any[]): void
|
|
556
|
+
connect(sigName: "notify::accessible-name", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
557
|
+
connect_after(sigName: "notify::accessible-name", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
558
|
+
emit(sigName: "notify::accessible-name", ...args: any[]): void
|
|
559
|
+
connect(sigName: "notify::accessible-parent", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
560
|
+
connect_after(sigName: "notify::accessible-parent", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
561
|
+
emit(sigName: "notify::accessible-parent", ...args: any[]): void
|
|
562
|
+
connect(sigName: "notify::accessible-role", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
563
|
+
connect_after(sigName: "notify::accessible-role", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
564
|
+
emit(sigName: "notify::accessible-role", ...args: any[]): void
|
|
565
|
+
connect(sigName: "notify::accessible-table-caption", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
566
|
+
connect_after(sigName: "notify::accessible-table-caption", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
567
|
+
emit(sigName: "notify::accessible-table-caption", ...args: any[]): void
|
|
568
|
+
connect(sigName: "notify::accessible-table-caption-object", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
569
|
+
connect_after(sigName: "notify::accessible-table-caption-object", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
570
|
+
emit(sigName: "notify::accessible-table-caption-object", ...args: any[]): void
|
|
571
|
+
connect(sigName: "notify::accessible-table-column-description", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
572
|
+
connect_after(sigName: "notify::accessible-table-column-description", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
573
|
+
emit(sigName: "notify::accessible-table-column-description", ...args: any[]): void
|
|
574
|
+
connect(sigName: "notify::accessible-table-column-header", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
575
|
+
connect_after(sigName: "notify::accessible-table-column-header", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
576
|
+
emit(sigName: "notify::accessible-table-column-header", ...args: any[]): void
|
|
577
|
+
connect(sigName: "notify::accessible-table-row-description", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
578
|
+
connect_after(sigName: "notify::accessible-table-row-description", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
579
|
+
emit(sigName: "notify::accessible-table-row-description", ...args: any[]): void
|
|
580
|
+
connect(sigName: "notify::accessible-table-row-header", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
581
|
+
connect_after(sigName: "notify::accessible-table-row-header", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
582
|
+
emit(sigName: "notify::accessible-table-row-header", ...args: any[]): void
|
|
583
|
+
connect(sigName: "notify::accessible-table-summary", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
584
|
+
connect_after(sigName: "notify::accessible-table-summary", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
585
|
+
emit(sigName: "notify::accessible-table-summary", ...args: any[]): void
|
|
586
|
+
connect(sigName: "notify::accessible-value", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
587
|
+
connect_after(sigName: "notify::accessible-value", callback: (($obj: Root, pspec: GObject.ParamSpec) => void)): number
|
|
588
|
+
emit(sigName: "notify::accessible-value", ...args: any[]): void
|
|
589
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
590
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
591
|
+
emit(sigName: string, ...args: any[]): void
|
|
592
|
+
disconnect(id: number): void
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* Root object for the Cally toolkit
|
|
597
|
+
*
|
|
598
|
+
* #CallyRoot is the root object of the accessibility tree-like
|
|
599
|
+
* hierarchy, exposing the application level.
|
|
600
|
+
*
|
|
601
|
+
* Somewhat equivalent to #GailTopLevel. We consider that this class
|
|
602
|
+
* expose the a11y information of the [class`Clutter`.StageManager], as the
|
|
603
|
+
* children of this object are the different [class`Clutter`.Stage] managed (so
|
|
604
|
+
* the [class`GObject`.Object] used in the [method`Atk`.Object.initialize] is the
|
|
605
|
+
* [class`Clutter`.StageManager]).
|
|
606
|
+
* @class
|
|
607
|
+
*/
|
|
608
|
+
export class Root extends Atk.GObjectAccessible {
|
|
609
|
+
|
|
610
|
+
// Own properties of Cally-14.Cally.Root
|
|
611
|
+
|
|
612
|
+
static name: string
|
|
613
|
+
static $gtype: GObject.GType<Root>
|
|
614
|
+
|
|
615
|
+
// Constructors of Cally-14.Cally.Root
|
|
616
|
+
|
|
617
|
+
constructor(config?: Root.ConstructorProperties)
|
|
618
|
+
/**
|
|
619
|
+
* Creates a new #CallyRoot object.
|
|
620
|
+
* @constructor
|
|
621
|
+
* @returns the newly created #AtkObject
|
|
622
|
+
*/
|
|
623
|
+
constructor()
|
|
624
|
+
/**
|
|
625
|
+
* Creates a new #CallyRoot object.
|
|
626
|
+
* @constructor
|
|
627
|
+
* @returns the newly created #AtkObject
|
|
628
|
+
*/
|
|
629
|
+
static new(): Root
|
|
630
|
+
_init(config?: Root.ConstructorProperties): void
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
export module Stage {
|
|
634
|
+
|
|
635
|
+
// Constructor properties interface
|
|
636
|
+
|
|
637
|
+
export interface ConstructorProperties extends Atk.Action.ConstructorProperties, Atk.Component.ConstructorProperties, Atk.Window.ConstructorProperties, Actor.ConstructorProperties {
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
export interface Stage extends Atk.Action, Atk.Component, Atk.Window {
|
|
643
|
+
|
|
644
|
+
// Conflicting properties
|
|
645
|
+
|
|
646
|
+
parent: GObject.Object & Atk.Object
|
|
647
|
+
|
|
648
|
+
// Own fields of Cally-14.Cally.Stage
|
|
649
|
+
|
|
650
|
+
parent_instance: Actor & Atk.GObjectAccessible
|
|
651
|
+
|
|
652
|
+
// Conflicting methods
|
|
653
|
+
|
|
654
|
+
/**
|
|
655
|
+
* Returns a description of the specified action of the object.
|
|
656
|
+
* @param i the action index corresponding to the action to be performed
|
|
657
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
658
|
+
*/
|
|
659
|
+
get_description(i: number): string | null
|
|
660
|
+
/**
|
|
661
|
+
* Gets the accessible description of the accessible.
|
|
662
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
663
|
+
*/
|
|
664
|
+
get_description(): string
|
|
665
|
+
/**
|
|
666
|
+
* Returns a non-localized string naming the specified action of the
|
|
667
|
+
* object. This name is generally not descriptive of the end result
|
|
668
|
+
* of the action, but instead names the 'interaction type' which the
|
|
669
|
+
* object supports. By convention, the above strings should be used to
|
|
670
|
+
* represent the actions which correspond to the common point-and-click
|
|
671
|
+
* interaction techniques of the same name: i.e.
|
|
672
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
673
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
674
|
+
* object, if one exists.
|
|
675
|
+
*
|
|
676
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
677
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
678
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
679
|
+
* NIL.
|
|
680
|
+
* @param i the action index corresponding to the action to be performed
|
|
681
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
682
|
+
*/
|
|
683
|
+
get_name(i: number): string | null
|
|
684
|
+
/**
|
|
685
|
+
* Gets the accessible name of the accessible.
|
|
686
|
+
* @returns a character string representing the accessible name of the object.
|
|
687
|
+
*/
|
|
688
|
+
get_name(): string
|
|
689
|
+
/**
|
|
690
|
+
* Sets a description of the specified action of the object.
|
|
691
|
+
* @param i the action index corresponding to the action to be performed
|
|
692
|
+
* @param desc the description to be assigned to this action
|
|
693
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
694
|
+
*/
|
|
695
|
+
set_description(i: number, desc: string): boolean
|
|
696
|
+
/**
|
|
697
|
+
* Sets the accessible description of the accessible. You can't set
|
|
698
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
699
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
700
|
+
* the name to a empty value you can use "".
|
|
701
|
+
* @param description a character string to be set as the accessible description
|
|
702
|
+
*/
|
|
703
|
+
set_description(description: string): void
|
|
704
|
+
/**
|
|
705
|
+
* Returns a description of the specified action of the object.
|
|
706
|
+
* @virtual
|
|
707
|
+
* @param i the action index corresponding to the action to be performed
|
|
708
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
709
|
+
*/
|
|
710
|
+
vfunc_get_description(i: number): string | null
|
|
711
|
+
/**
|
|
712
|
+
* Gets the accessible description of the accessible.
|
|
713
|
+
* @virtual
|
|
714
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
715
|
+
*/
|
|
716
|
+
vfunc_get_description(): string
|
|
717
|
+
/**
|
|
718
|
+
* Returns a non-localized string naming the specified action of the
|
|
719
|
+
* object. This name is generally not descriptive of the end result
|
|
720
|
+
* of the action, but instead names the 'interaction type' which the
|
|
721
|
+
* object supports. By convention, the above strings should be used to
|
|
722
|
+
* represent the actions which correspond to the common point-and-click
|
|
723
|
+
* interaction techniques of the same name: i.e.
|
|
724
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
725
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
726
|
+
* object, if one exists.
|
|
727
|
+
*
|
|
728
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
729
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
730
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
731
|
+
* NIL.
|
|
732
|
+
* @virtual
|
|
733
|
+
* @param i the action index corresponding to the action to be performed
|
|
734
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
735
|
+
*/
|
|
736
|
+
vfunc_get_name(i: number): string | null
|
|
737
|
+
/**
|
|
738
|
+
* Gets the accessible name of the accessible.
|
|
739
|
+
* @virtual
|
|
740
|
+
* @returns a character string representing the accessible name of the object.
|
|
741
|
+
*/
|
|
742
|
+
vfunc_get_name(): string
|
|
743
|
+
/**
|
|
744
|
+
* Sets a description of the specified action of the object.
|
|
745
|
+
* @virtual
|
|
746
|
+
* @param i the action index corresponding to the action to be performed
|
|
747
|
+
* @param desc the description to be assigned to this action
|
|
748
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
749
|
+
*/
|
|
750
|
+
vfunc_set_description(i: number, desc: string): boolean
|
|
751
|
+
/**
|
|
752
|
+
* Sets the accessible description of the accessible. You can't set
|
|
753
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
754
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
755
|
+
* the name to a empty value you can use "".
|
|
756
|
+
* @virtual
|
|
757
|
+
* @param description a character string to be set as the accessible description
|
|
758
|
+
*/
|
|
759
|
+
vfunc_set_description(description: string): void
|
|
760
|
+
|
|
761
|
+
// Class property signals of Cally-14.Cally.Stage
|
|
762
|
+
|
|
763
|
+
connect(sigName: "notify::accessible-component-layer", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
764
|
+
connect_after(sigName: "notify::accessible-component-layer", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
765
|
+
emit(sigName: "notify::accessible-component-layer", ...args: any[]): void
|
|
766
|
+
connect(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
767
|
+
connect_after(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
768
|
+
emit(sigName: "notify::accessible-component-mdi-zorder", ...args: any[]): void
|
|
769
|
+
connect(sigName: "notify::accessible-description", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
770
|
+
connect_after(sigName: "notify::accessible-description", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
771
|
+
emit(sigName: "notify::accessible-description", ...args: any[]): void
|
|
772
|
+
connect(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
773
|
+
connect_after(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
774
|
+
emit(sigName: "notify::accessible-hypertext-nlinks", ...args: any[]): void
|
|
775
|
+
connect(sigName: "notify::accessible-name", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
776
|
+
connect_after(sigName: "notify::accessible-name", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
777
|
+
emit(sigName: "notify::accessible-name", ...args: any[]): void
|
|
778
|
+
connect(sigName: "notify::accessible-parent", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
779
|
+
connect_after(sigName: "notify::accessible-parent", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
780
|
+
emit(sigName: "notify::accessible-parent", ...args: any[]): void
|
|
781
|
+
connect(sigName: "notify::accessible-role", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
782
|
+
connect_after(sigName: "notify::accessible-role", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
783
|
+
emit(sigName: "notify::accessible-role", ...args: any[]): void
|
|
784
|
+
connect(sigName: "notify::accessible-table-caption", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
785
|
+
connect_after(sigName: "notify::accessible-table-caption", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
786
|
+
emit(sigName: "notify::accessible-table-caption", ...args: any[]): void
|
|
787
|
+
connect(sigName: "notify::accessible-table-caption-object", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
788
|
+
connect_after(sigName: "notify::accessible-table-caption-object", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
789
|
+
emit(sigName: "notify::accessible-table-caption-object", ...args: any[]): void
|
|
790
|
+
connect(sigName: "notify::accessible-table-column-description", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
791
|
+
connect_after(sigName: "notify::accessible-table-column-description", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
792
|
+
emit(sigName: "notify::accessible-table-column-description", ...args: any[]): void
|
|
793
|
+
connect(sigName: "notify::accessible-table-column-header", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
794
|
+
connect_after(sigName: "notify::accessible-table-column-header", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
795
|
+
emit(sigName: "notify::accessible-table-column-header", ...args: any[]): void
|
|
796
|
+
connect(sigName: "notify::accessible-table-row-description", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
797
|
+
connect_after(sigName: "notify::accessible-table-row-description", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
798
|
+
emit(sigName: "notify::accessible-table-row-description", ...args: any[]): void
|
|
799
|
+
connect(sigName: "notify::accessible-table-row-header", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
800
|
+
connect_after(sigName: "notify::accessible-table-row-header", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
801
|
+
emit(sigName: "notify::accessible-table-row-header", ...args: any[]): void
|
|
802
|
+
connect(sigName: "notify::accessible-table-summary", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
803
|
+
connect_after(sigName: "notify::accessible-table-summary", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
804
|
+
emit(sigName: "notify::accessible-table-summary", ...args: any[]): void
|
|
805
|
+
connect(sigName: "notify::accessible-value", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
806
|
+
connect_after(sigName: "notify::accessible-value", callback: (($obj: Stage, pspec: GObject.ParamSpec) => void)): number
|
|
807
|
+
emit(sigName: "notify::accessible-value", ...args: any[]): void
|
|
808
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
809
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
810
|
+
emit(sigName: string, ...args: any[]): void
|
|
811
|
+
disconnect(id: number): void
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
/**
|
|
815
|
+
* Implementation of the ATK interfaces for a #ClutterStage
|
|
816
|
+
*
|
|
817
|
+
* #CallyStage implements the required ATK interfaces for [class`Clutter`.Stage]
|
|
818
|
+
*
|
|
819
|
+
* Some implementation details: at this moment #CallyStage is used as
|
|
820
|
+
* the most similar Window object in this toolkit (ie: emitting window
|
|
821
|
+
* related signals), although the real purpose of [class`Clutter`.Stage] is
|
|
822
|
+
* being a canvas. Anyway, this is required for applications using
|
|
823
|
+
* just clutter, or directly [class`Clutter`.Stage]
|
|
824
|
+
* @class
|
|
825
|
+
*/
|
|
826
|
+
export class Stage extends Actor {
|
|
827
|
+
|
|
828
|
+
// Own properties of Cally-14.Cally.Stage
|
|
829
|
+
|
|
830
|
+
static name: string
|
|
831
|
+
static $gtype: GObject.GType<Stage>
|
|
832
|
+
|
|
833
|
+
// Constructors of Cally-14.Cally.Stage
|
|
834
|
+
|
|
835
|
+
constructor(config?: Stage.ConstructorProperties)
|
|
836
|
+
/**
|
|
837
|
+
* Creates a new #CallyStage for the given `actor`. `actor` should be a
|
|
838
|
+
* [class`Clutter`.Stage].
|
|
839
|
+
* @constructor
|
|
840
|
+
* @param actor a #ClutterActor
|
|
841
|
+
* @returns the newly created #AtkObject
|
|
842
|
+
*/
|
|
843
|
+
constructor(actor: Clutter.Actor)
|
|
844
|
+
/**
|
|
845
|
+
* Creates a new #CallyStage for the given `actor`. `actor` should be a
|
|
846
|
+
* [class`Clutter`.Stage].
|
|
847
|
+
* @constructor
|
|
848
|
+
* @param actor a #ClutterActor
|
|
849
|
+
* @returns the newly created #AtkObject
|
|
850
|
+
*/
|
|
851
|
+
static new(actor: Clutter.Actor): Stage
|
|
852
|
+
_init(config?: Stage.ConstructorProperties): void
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
export module Text {
|
|
856
|
+
|
|
857
|
+
// Constructor properties interface
|
|
858
|
+
|
|
859
|
+
export interface ConstructorProperties extends Atk.Action.ConstructorProperties, Atk.Component.ConstructorProperties, Atk.EditableText.ConstructorProperties, Atk.Text.ConstructorProperties, Actor.ConstructorProperties {
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
export interface Text extends Atk.Action, Atk.Component, Atk.EditableText, Atk.Text {
|
|
865
|
+
|
|
866
|
+
// Conflicting properties
|
|
867
|
+
|
|
868
|
+
parent: Atk.Object & GObject.Object & GObject.Object
|
|
869
|
+
|
|
870
|
+
// Own fields of Cally-14.Cally.Text
|
|
871
|
+
|
|
872
|
+
parent_instance: Actor & Atk.GObjectAccessible
|
|
873
|
+
|
|
874
|
+
// Conflicting methods
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* Returns a description of the specified action of the object.
|
|
878
|
+
* @param i the action index corresponding to the action to be performed
|
|
879
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
880
|
+
*/
|
|
881
|
+
get_description(i: number): string | null
|
|
882
|
+
/**
|
|
883
|
+
* Gets the accessible description of the accessible.
|
|
884
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
885
|
+
*/
|
|
886
|
+
get_description(): string
|
|
887
|
+
/**
|
|
888
|
+
* Returns a non-localized string naming the specified action of the
|
|
889
|
+
* object. This name is generally not descriptive of the end result
|
|
890
|
+
* of the action, but instead names the 'interaction type' which the
|
|
891
|
+
* object supports. By convention, the above strings should be used to
|
|
892
|
+
* represent the actions which correspond to the common point-and-click
|
|
893
|
+
* interaction techniques of the same name: i.e.
|
|
894
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
895
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
896
|
+
* object, if one exists.
|
|
897
|
+
*
|
|
898
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
899
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
900
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
901
|
+
* NIL.
|
|
902
|
+
* @param i the action index corresponding to the action to be performed
|
|
903
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
904
|
+
*/
|
|
905
|
+
get_name(i: number): string | null
|
|
906
|
+
/**
|
|
907
|
+
* Gets the accessible name of the accessible.
|
|
908
|
+
* @returns a character string representing the accessible name of the object.
|
|
909
|
+
*/
|
|
910
|
+
get_name(): string
|
|
911
|
+
/**
|
|
912
|
+
* Sets a description of the specified action of the object.
|
|
913
|
+
* @param i the action index corresponding to the action to be performed
|
|
914
|
+
* @param desc the description to be assigned to this action
|
|
915
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
916
|
+
*/
|
|
917
|
+
set_description(i: number, desc: string): boolean
|
|
918
|
+
/**
|
|
919
|
+
* Sets the accessible description of the accessible. You can't set
|
|
920
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
921
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
922
|
+
* the name to a empty value you can use "".
|
|
923
|
+
* @param description a character string to be set as the accessible description
|
|
924
|
+
*/
|
|
925
|
+
set_description(description: string): void
|
|
926
|
+
/**
|
|
927
|
+
* Returns a description of the specified action of the object.
|
|
928
|
+
* @virtual
|
|
929
|
+
* @param i the action index corresponding to the action to be performed
|
|
930
|
+
* @returns a description string, or %NULL if @action does not implement this interface.
|
|
931
|
+
*/
|
|
932
|
+
vfunc_get_description(i: number): string | null
|
|
933
|
+
/**
|
|
934
|
+
* Gets the accessible description of the accessible.
|
|
935
|
+
* @virtual
|
|
936
|
+
* @returns a character string representing the accessible description of the accessible.
|
|
937
|
+
*/
|
|
938
|
+
vfunc_get_description(): string
|
|
939
|
+
/**
|
|
940
|
+
* Returns a non-localized string naming the specified action of the
|
|
941
|
+
* object. This name is generally not descriptive of the end result
|
|
942
|
+
* of the action, but instead names the 'interaction type' which the
|
|
943
|
+
* object supports. By convention, the above strings should be used to
|
|
944
|
+
* represent the actions which correspond to the common point-and-click
|
|
945
|
+
* interaction techniques of the same name: i.e.
|
|
946
|
+
* "click", "press", "release", "drag", "drop", "popup", etc.
|
|
947
|
+
* The "popup" action should be used to pop up a context menu for the
|
|
948
|
+
* object, if one exists.
|
|
949
|
+
*
|
|
950
|
+
* For technical reasons, some toolkits cannot guarantee that the
|
|
951
|
+
* reported action is actually 'bound' to a nontrivial user event;
|
|
952
|
+
* i.e. the result of some actions via atk_action_do_action() may be
|
|
953
|
+
* NIL.
|
|
954
|
+
* @virtual
|
|
955
|
+
* @param i the action index corresponding to the action to be performed
|
|
956
|
+
* @returns a name string, or %NULL if @action does not implement this interface.
|
|
957
|
+
*/
|
|
958
|
+
vfunc_get_name(i: number): string | null
|
|
959
|
+
/**
|
|
960
|
+
* Gets the accessible name of the accessible.
|
|
961
|
+
* @virtual
|
|
962
|
+
* @returns a character string representing the accessible name of the object.
|
|
963
|
+
*/
|
|
964
|
+
vfunc_get_name(): string
|
|
965
|
+
/**
|
|
966
|
+
* Sets a description of the specified action of the object.
|
|
967
|
+
* @virtual
|
|
968
|
+
* @param i the action index corresponding to the action to be performed
|
|
969
|
+
* @param desc the description to be assigned to this action
|
|
970
|
+
* @returns a gboolean representing if the description was successfully set;
|
|
971
|
+
*/
|
|
972
|
+
vfunc_set_description(i: number, desc: string): boolean
|
|
973
|
+
/**
|
|
974
|
+
* Sets the accessible description of the accessible. You can't set
|
|
975
|
+
* the description to NULL. This is reserved for the initial value. In
|
|
976
|
+
* this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
|
|
977
|
+
* the name to a empty value you can use "".
|
|
978
|
+
* @virtual
|
|
979
|
+
* @param description a character string to be set as the accessible description
|
|
980
|
+
*/
|
|
981
|
+
vfunc_set_description(description: string): void
|
|
982
|
+
|
|
983
|
+
// Class property signals of Cally-14.Cally.Text
|
|
984
|
+
|
|
985
|
+
connect(sigName: "notify::accessible-component-layer", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
986
|
+
connect_after(sigName: "notify::accessible-component-layer", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
987
|
+
emit(sigName: "notify::accessible-component-layer", ...args: any[]): void
|
|
988
|
+
connect(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
989
|
+
connect_after(sigName: "notify::accessible-component-mdi-zorder", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
990
|
+
emit(sigName: "notify::accessible-component-mdi-zorder", ...args: any[]): void
|
|
991
|
+
connect(sigName: "notify::accessible-description", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
992
|
+
connect_after(sigName: "notify::accessible-description", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
993
|
+
emit(sigName: "notify::accessible-description", ...args: any[]): void
|
|
994
|
+
connect(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
995
|
+
connect_after(sigName: "notify::accessible-hypertext-nlinks", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
996
|
+
emit(sigName: "notify::accessible-hypertext-nlinks", ...args: any[]): void
|
|
997
|
+
connect(sigName: "notify::accessible-name", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
998
|
+
connect_after(sigName: "notify::accessible-name", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
999
|
+
emit(sigName: "notify::accessible-name", ...args: any[]): void
|
|
1000
|
+
connect(sigName: "notify::accessible-parent", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1001
|
+
connect_after(sigName: "notify::accessible-parent", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1002
|
+
emit(sigName: "notify::accessible-parent", ...args: any[]): void
|
|
1003
|
+
connect(sigName: "notify::accessible-role", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1004
|
+
connect_after(sigName: "notify::accessible-role", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1005
|
+
emit(sigName: "notify::accessible-role", ...args: any[]): void
|
|
1006
|
+
connect(sigName: "notify::accessible-table-caption", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1007
|
+
connect_after(sigName: "notify::accessible-table-caption", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1008
|
+
emit(sigName: "notify::accessible-table-caption", ...args: any[]): void
|
|
1009
|
+
connect(sigName: "notify::accessible-table-caption-object", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1010
|
+
connect_after(sigName: "notify::accessible-table-caption-object", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1011
|
+
emit(sigName: "notify::accessible-table-caption-object", ...args: any[]): void
|
|
1012
|
+
connect(sigName: "notify::accessible-table-column-description", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1013
|
+
connect_after(sigName: "notify::accessible-table-column-description", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1014
|
+
emit(sigName: "notify::accessible-table-column-description", ...args: any[]): void
|
|
1015
|
+
connect(sigName: "notify::accessible-table-column-header", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1016
|
+
connect_after(sigName: "notify::accessible-table-column-header", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1017
|
+
emit(sigName: "notify::accessible-table-column-header", ...args: any[]): void
|
|
1018
|
+
connect(sigName: "notify::accessible-table-row-description", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1019
|
+
connect_after(sigName: "notify::accessible-table-row-description", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1020
|
+
emit(sigName: "notify::accessible-table-row-description", ...args: any[]): void
|
|
1021
|
+
connect(sigName: "notify::accessible-table-row-header", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1022
|
+
connect_after(sigName: "notify::accessible-table-row-header", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1023
|
+
emit(sigName: "notify::accessible-table-row-header", ...args: any[]): void
|
|
1024
|
+
connect(sigName: "notify::accessible-table-summary", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1025
|
+
connect_after(sigName: "notify::accessible-table-summary", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1026
|
+
emit(sigName: "notify::accessible-table-summary", ...args: any[]): void
|
|
1027
|
+
connect(sigName: "notify::accessible-value", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1028
|
+
connect_after(sigName: "notify::accessible-value", callback: (($obj: Text, pspec: GObject.ParamSpec) => void)): number
|
|
1029
|
+
emit(sigName: "notify::accessible-value", ...args: any[]): void
|
|
1030
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1031
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1032
|
+
emit(sigName: string, ...args: any[]): void
|
|
1033
|
+
disconnect(id: number): void
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* Implementation of the ATK interfaces for a [class`Clutter`.Text]
|
|
1038
|
+
*
|
|
1039
|
+
* #CallyText implements the required ATK interfaces of
|
|
1040
|
+
* [class`Clutter`.Text], #AtkText and #AtkEditableText
|
|
1041
|
+
* @class
|
|
1042
|
+
*/
|
|
1043
|
+
export class Text extends Actor {
|
|
1044
|
+
|
|
1045
|
+
// Own properties of Cally-14.Cally.Text
|
|
1046
|
+
|
|
1047
|
+
static name: string
|
|
1048
|
+
static $gtype: GObject.GType<Text>
|
|
1049
|
+
|
|
1050
|
+
// Constructors of Cally-14.Cally.Text
|
|
1051
|
+
|
|
1052
|
+
constructor(config?: Text.ConstructorProperties)
|
|
1053
|
+
/**
|
|
1054
|
+
* Creates a new #CallyText for the given `actor`. `actor` must be a
|
|
1055
|
+
* [class`Clutter`.Text].
|
|
1056
|
+
* @constructor
|
|
1057
|
+
* @param actor a #ClutterActor
|
|
1058
|
+
* @returns the newly created #AtkObject
|
|
1059
|
+
*/
|
|
1060
|
+
constructor(actor: Clutter.Actor)
|
|
1061
|
+
/**
|
|
1062
|
+
* Creates a new #CallyText for the given `actor`. `actor` must be a
|
|
1063
|
+
* [class`Clutter`.Text].
|
|
1064
|
+
* @constructor
|
|
1065
|
+
* @param actor a #ClutterActor
|
|
1066
|
+
* @returns the newly created #AtkObject
|
|
1067
|
+
*/
|
|
1068
|
+
static new(actor: Clutter.Actor): Text
|
|
1069
|
+
_init(config?: Text.ConstructorProperties): void
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
export module Util {
|
|
1073
|
+
|
|
1074
|
+
// Constructor properties interface
|
|
1075
|
+
|
|
1076
|
+
export interface ConstructorProperties extends Atk.Util.ConstructorProperties {
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
export interface Util {
|
|
1082
|
+
|
|
1083
|
+
// Own fields of Cally-14.Cally.Util
|
|
1084
|
+
|
|
1085
|
+
parent_instance: Atk.Util
|
|
1086
|
+
|
|
1087
|
+
// Class property signals of Cally-14.Cally.Util
|
|
1088
|
+
|
|
1089
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1090
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1091
|
+
emit(sigName: string, ...args: any[]): void
|
|
1092
|
+
disconnect(id: number): void
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
/**
|
|
1096
|
+
* #AtkUtil implementation
|
|
1097
|
+
*
|
|
1098
|
+
* #CallyUtil implements #AtkUtil abstract methods. Although it
|
|
1099
|
+
* includes the name "Util" it is in fact one of the most important
|
|
1100
|
+
* interfaces to be implemented in any ATK toolkit implementation.
|
|
1101
|
+
*
|
|
1102
|
+
* For instance, it defines [func`Atk`.get_root], the method that returns
|
|
1103
|
+
* the root object in the hierarchy. Without it, you don't have
|
|
1104
|
+
* available any accessible object.
|
|
1105
|
+
* @class
|
|
1106
|
+
*/
|
|
1107
|
+
export class Util extends Atk.Util {
|
|
1108
|
+
|
|
1109
|
+
// Own properties of Cally-14.Cally.Util
|
|
1110
|
+
|
|
1111
|
+
static name: string
|
|
1112
|
+
static $gtype: GObject.GType<Util>
|
|
1113
|
+
|
|
1114
|
+
// Constructors of Cally-14.Cally.Util
|
|
1115
|
+
|
|
1116
|
+
constructor(config?: Util.ConstructorProperties)
|
|
1117
|
+
_init(config?: Util.ConstructorProperties): void
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
export interface ActorClass {
|
|
1121
|
+
|
|
1122
|
+
// Own fields of Cally-14.Cally.ActorClass
|
|
1123
|
+
|
|
1124
|
+
/**
|
|
1125
|
+
* Signal handler for notify signal on Clutter actor
|
|
1126
|
+
* @field
|
|
1127
|
+
*/
|
|
1128
|
+
notify_clutter: (object: GObject.Object, pspec: GObject.ParamSpec) => void
|
|
1129
|
+
/**
|
|
1130
|
+
* Signal handler for child-added signal on Clutter actor
|
|
1131
|
+
* @field
|
|
1132
|
+
*/
|
|
1133
|
+
add_actor: (container: Clutter.Actor, actor: Clutter.Actor, data: any) => number
|
|
1134
|
+
/**
|
|
1135
|
+
* Signal handler for child-removed signal on Clutter actor
|
|
1136
|
+
* @field
|
|
1137
|
+
*/
|
|
1138
|
+
remove_actor: (container: Clutter.Actor, actor: Clutter.Actor, data: any) => number
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
export abstract class ActorClass {
|
|
1142
|
+
|
|
1143
|
+
// Own properties of Cally-14.Cally.ActorClass
|
|
1144
|
+
|
|
1145
|
+
static name: string
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
export interface ActorPrivate {
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
export class ActorPrivate {
|
|
1152
|
+
|
|
1153
|
+
// Own properties of Cally-14.Cally.ActorPrivate
|
|
1154
|
+
|
|
1155
|
+
static name: string
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
export interface CloneClass {
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
export abstract class CloneClass {
|
|
1162
|
+
|
|
1163
|
+
// Own properties of Cally-14.Cally.CloneClass
|
|
1164
|
+
|
|
1165
|
+
static name: string
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
export interface RootClass {
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
export abstract class RootClass {
|
|
1172
|
+
|
|
1173
|
+
// Own properties of Cally-14.Cally.RootClass
|
|
1174
|
+
|
|
1175
|
+
static name: string
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1178
|
+
export interface StageClass {
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
export abstract class StageClass {
|
|
1182
|
+
|
|
1183
|
+
// Own properties of Cally-14.Cally.StageClass
|
|
1184
|
+
|
|
1185
|
+
static name: string
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
export interface TextClass {
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
export abstract class TextClass {
|
|
1192
|
+
|
|
1193
|
+
// Own properties of Cally-14.Cally.TextClass
|
|
1194
|
+
|
|
1195
|
+
static name: string
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
export interface UtilClass {
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
export abstract class UtilClass {
|
|
1202
|
+
|
|
1203
|
+
// Own properties of Cally-14.Cally.UtilClass
|
|
1204
|
+
|
|
1205
|
+
static name: string
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
/**
|
|
1209
|
+
* Name of the imported GIR library
|
|
1210
|
+
* @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
|
|
1211
|
+
*/
|
|
1212
|
+
export const __name__: string
|
|
1213
|
+
/**
|
|
1214
|
+
* Version of the imported GIR library
|
|
1215
|
+
* @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
|
|
1216
|
+
*/
|
|
1217
|
+
export const __version__: string
|
|
1218
|
+
// END
|