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