@girs/gdm-1.0 1.0.0-3.0.0-beta.12

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/gdm-1.0.d.ts ADDED
@@ -0,0 +1,2711 @@
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-gjs
7
+ */
8
+ /**
9
+ * Gdm-1.0
10
+ */
11
+
12
+ import type Gio from '@girs/gio-2.0';
13
+ import type GObject from '@girs/gobject-2.0';
14
+ import type GLib from '@girs/glib-2.0';
15
+
16
+ export namespace Gdm {
17
+
18
+ enum ClientError {
19
+ CLIENT_ERROR_GENERIC,
20
+ }
21
+ function chooser_interface_info(): Gio.DBusInterfaceInfo
22
+ function chooser_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
23
+ /**
24
+ * Reads /usr/share/xsessions and other relevant places for possible sessions
25
+ * to log into and returns the complete list.
26
+ * @returns a %NULL terminated list of session ids
27
+ */
28
+ function get_session_ids(): string[]
29
+ /**
30
+ * Takes an xsession id and returns the name and comment about it.
31
+ * @param id an id from gdm_get_session_ids()
32
+ * @returns The session name if found, or %NULL otherwise
33
+ */
34
+ function get_session_name_and_description(id: string | null): [ /* returnType */ string | null, /* description */ string | null ]
35
+ function goto_login_session_sync(cancellable: Gio.Cancellable | null): boolean
36
+ function greeter_interface_info(): Gio.DBusInterfaceInfo
37
+ function greeter_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
38
+ function manager_interface_info(): Gio.DBusInterfaceInfo
39
+ function manager_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
40
+ function remote_greeter_interface_info(): Gio.DBusInterfaceInfo
41
+ function remote_greeter_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
42
+ function user_verifier_choice_list_interface_info(): Gio.DBusInterfaceInfo
43
+ function user_verifier_choice_list_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
44
+ function user_verifier_interface_info(): Gio.DBusInterfaceInfo
45
+ function user_verifier_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
46
+ function worker_manager_interface_info(): Gio.DBusInterfaceInfo
47
+ function worker_manager_override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
48
+ module Chooser {
49
+
50
+ // Signal callback interfaces
51
+
52
+ /**
53
+ * Signal callback interface for `handle-disconnect`
54
+ */
55
+ interface HandleDisconnectSignalCallback {
56
+ ($obj: Chooser, object: Gio.DBusMethodInvocation): boolean
57
+ }
58
+
59
+ /**
60
+ * Signal callback interface for `handle-select-hostname`
61
+ */
62
+ interface HandleSelectHostnameSignalCallback {
63
+ ($obj: Chooser, object: Gio.DBusMethodInvocation, p0: string | null): boolean
64
+ }
65
+
66
+
67
+ // Constructor properties interface
68
+
69
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
70
+ }
71
+
72
+ }
73
+
74
+ interface Chooser {
75
+
76
+ // Owm methods of Gdm-1.0.Gdm.Chooser
77
+
78
+ call_disconnect(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
79
+ call_disconnect_finish(res: Gio.AsyncResult): boolean
80
+ call_disconnect_sync(cancellable: Gio.Cancellable | null): boolean
81
+ call_select_hostname(arg_hostname: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
82
+ call_select_hostname_finish(res: Gio.AsyncResult): boolean
83
+ call_select_hostname_sync(arg_hostname: string | null, cancellable: Gio.Cancellable | null): boolean
84
+ complete_disconnect(invocation: Gio.DBusMethodInvocation): void
85
+ complete_select_hostname(invocation: Gio.DBusMethodInvocation): void
86
+
87
+ // Own virtual methods of Gdm-1.0.Gdm.Chooser
88
+
89
+ vfunc_handle_disconnect(invocation: Gio.DBusMethodInvocation): boolean
90
+ vfunc_handle_select_hostname(invocation: Gio.DBusMethodInvocation, arg_hostname: string | null): boolean
91
+
92
+ // Own signals of Gdm-1.0.Gdm.Chooser
93
+
94
+ connect(sigName: "handle-disconnect", callback: Chooser.HandleDisconnectSignalCallback): number
95
+ connect_after(sigName: "handle-disconnect", callback: Chooser.HandleDisconnectSignalCallback): number
96
+ emit(sigName: "handle-disconnect", object: Gio.DBusMethodInvocation, ...args: any[]): void
97
+ connect(sigName: "handle-select-hostname", callback: Chooser.HandleSelectHostnameSignalCallback): number
98
+ connect_after(sigName: "handle-select-hostname", callback: Chooser.HandleSelectHostnameSignalCallback): number
99
+ emit(sigName: "handle-select-hostname", object: Gio.DBusMethodInvocation, p0: string | null, ...args: any[]): void
100
+
101
+ // Class property signals of Gdm-1.0.Gdm.Chooser
102
+
103
+ connect(sigName: string, callback: (...args: any[]) => void): number
104
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
105
+ emit(sigName: string, ...args: any[]): void
106
+ disconnect(id: number): void
107
+ }
108
+
109
+ class Chooser extends GObject.Object {
110
+
111
+ // Own properties of Gdm-1.0.Gdm.Chooser
112
+
113
+ static name: string
114
+ static $gtype: GObject.GType<Chooser>
115
+
116
+ // Constructors of Gdm-1.0.Gdm.Chooser
117
+
118
+ constructor(config?: Chooser.ConstructorProperties)
119
+ _init(config?: Chooser.ConstructorProperties): void
120
+ static interface_info(): Gio.DBusInterfaceInfo
121
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
122
+ }
123
+
124
+ module Greeter {
125
+
126
+ // Signal callback interfaces
127
+
128
+ /**
129
+ * Signal callback interface for `default-language-name-changed`
130
+ */
131
+ interface DefaultLanguageNameChangedSignalCallback {
132
+ ($obj: Greeter, object: string | null): void
133
+ }
134
+
135
+ /**
136
+ * Signal callback interface for `default-session-name-changed`
137
+ */
138
+ interface DefaultSessionNameChangedSignalCallback {
139
+ ($obj: Greeter, object: string | null): void
140
+ }
141
+
142
+ /**
143
+ * Signal callback interface for `handle-begin-auto-login`
144
+ */
145
+ interface HandleBeginAutoLoginSignalCallback {
146
+ ($obj: Greeter, object: Gio.DBusMethodInvocation, p0: string | null): boolean
147
+ }
148
+
149
+ /**
150
+ * Signal callback interface for `handle-get-timed-login-details`
151
+ */
152
+ interface HandleGetTimedLoginDetailsSignalCallback {
153
+ ($obj: Greeter, object: Gio.DBusMethodInvocation): boolean
154
+ }
155
+
156
+ /**
157
+ * Signal callback interface for `handle-select-session`
158
+ */
159
+ interface HandleSelectSessionSignalCallback {
160
+ ($obj: Greeter, object: Gio.DBusMethodInvocation, p0: string | null): boolean
161
+ }
162
+
163
+ /**
164
+ * Signal callback interface for `handle-select-user`
165
+ */
166
+ interface HandleSelectUserSignalCallback {
167
+ ($obj: Greeter, object: Gio.DBusMethodInvocation, p0: string | null): boolean
168
+ }
169
+
170
+ /**
171
+ * Signal callback interface for `handle-start-session-when-ready`
172
+ */
173
+ interface HandleStartSessionWhenReadySignalCallback {
174
+ ($obj: Greeter, object: Gio.DBusMethodInvocation, p0: string | null, p1: boolean): boolean
175
+ }
176
+
177
+ /**
178
+ * Signal callback interface for `reauthenticated`
179
+ */
180
+ interface ReauthenticatedSignalCallback {
181
+ ($obj: Greeter, object: string | null): void
182
+ }
183
+
184
+ /**
185
+ * Signal callback interface for `selected-user-changed`
186
+ */
187
+ interface SelectedUserChangedSignalCallback {
188
+ ($obj: Greeter, object: string | null): void
189
+ }
190
+
191
+ /**
192
+ * Signal callback interface for `session-opened`
193
+ */
194
+ interface SessionOpenedSignalCallback {
195
+ ($obj: Greeter, object: string | null): void
196
+ }
197
+
198
+ /**
199
+ * Signal callback interface for `timed-login-requested`
200
+ */
201
+ interface TimedLoginRequestedSignalCallback {
202
+ ($obj: Greeter, object: string | null, p0: number): void
203
+ }
204
+
205
+
206
+ // Constructor properties interface
207
+
208
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
209
+ }
210
+
211
+ }
212
+
213
+ interface Greeter {
214
+
215
+ // Owm methods of Gdm-1.0.Gdm.Greeter
216
+
217
+ call_begin_auto_login(arg_username: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
218
+ call_begin_auto_login_finish(res: Gio.AsyncResult): boolean
219
+ call_begin_auto_login_sync(arg_username: string | null, cancellable: Gio.Cancellable | null): boolean
220
+ call_get_timed_login_details(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
221
+ call_get_timed_login_details_finish(out_enabled: boolean, out_username: string | null, out_delay: number, res: Gio.AsyncResult): boolean
222
+ call_get_timed_login_details_sync(out_enabled: boolean, out_username: string | null, out_delay: number, cancellable: Gio.Cancellable | null): boolean
223
+ call_select_session(arg_session: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
224
+ call_select_session_finish(res: Gio.AsyncResult): boolean
225
+ call_select_session_sync(arg_session: string | null, cancellable: Gio.Cancellable | null): boolean
226
+ call_select_user(arg_username: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
227
+ call_select_user_finish(res: Gio.AsyncResult): boolean
228
+ call_select_user_sync(arg_username: string | null, cancellable: Gio.Cancellable | null): boolean
229
+ call_start_session_when_ready(arg_service_name: string | null, arg_should_start_session: boolean, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
230
+ call_start_session_when_ready_finish(res: Gio.AsyncResult): boolean
231
+ call_start_session_when_ready_sync(arg_service_name: string | null, arg_should_start_session: boolean, cancellable: Gio.Cancellable | null): boolean
232
+ complete_begin_auto_login(invocation: Gio.DBusMethodInvocation): void
233
+ complete_get_timed_login_details(invocation: Gio.DBusMethodInvocation, enabled: boolean, username: string | null, delay: number): void
234
+ complete_select_session(invocation: Gio.DBusMethodInvocation): void
235
+ complete_select_user(invocation: Gio.DBusMethodInvocation): void
236
+ complete_start_session_when_ready(invocation: Gio.DBusMethodInvocation): void
237
+ emit_default_language_name_changed(arg_language_name: string | null): void
238
+ emit_default_session_name_changed(arg_session_name: string | null): void
239
+ emit_reauthenticated(arg_service_name: string | null): void
240
+ emit_selected_user_changed(arg_username: string | null): void
241
+ emit_session_opened(arg_service_name: string | null): void
242
+ emit_timed_login_requested(arg_username: string | null, arg_delay: number): void
243
+
244
+ // Own virtual methods of Gdm-1.0.Gdm.Greeter
245
+
246
+ vfunc_default_language_name_changed(arg_language_name: string | null): void
247
+ vfunc_default_session_name_changed(arg_session_name: string | null): void
248
+ vfunc_handle_begin_auto_login(invocation: Gio.DBusMethodInvocation, arg_username: string | null): boolean
249
+ vfunc_handle_get_timed_login_details(invocation: Gio.DBusMethodInvocation): boolean
250
+ vfunc_handle_select_session(invocation: Gio.DBusMethodInvocation, arg_session: string | null): boolean
251
+ vfunc_handle_select_user(invocation: Gio.DBusMethodInvocation, arg_username: string | null): boolean
252
+ vfunc_handle_start_session_when_ready(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_should_start_session: boolean): boolean
253
+ vfunc_reauthenticated(arg_service_name: string | null): void
254
+ vfunc_selected_user_changed(arg_username: string | null): void
255
+ vfunc_session_opened(arg_service_name: string | null): void
256
+ vfunc_timed_login_requested(arg_username: string | null, arg_delay: number): void
257
+
258
+ // Own signals of Gdm-1.0.Gdm.Greeter
259
+
260
+ connect(sigName: "default-language-name-changed", callback: Greeter.DefaultLanguageNameChangedSignalCallback): number
261
+ connect_after(sigName: "default-language-name-changed", callback: Greeter.DefaultLanguageNameChangedSignalCallback): number
262
+ emit(sigName: "default-language-name-changed", object: string | null, ...args: any[]): void
263
+ connect(sigName: "default-session-name-changed", callback: Greeter.DefaultSessionNameChangedSignalCallback): number
264
+ connect_after(sigName: "default-session-name-changed", callback: Greeter.DefaultSessionNameChangedSignalCallback): number
265
+ emit(sigName: "default-session-name-changed", object: string | null, ...args: any[]): void
266
+ connect(sigName: "handle-begin-auto-login", callback: Greeter.HandleBeginAutoLoginSignalCallback): number
267
+ connect_after(sigName: "handle-begin-auto-login", callback: Greeter.HandleBeginAutoLoginSignalCallback): number
268
+ emit(sigName: "handle-begin-auto-login", object: Gio.DBusMethodInvocation, p0: string | null, ...args: any[]): void
269
+ connect(sigName: "handle-get-timed-login-details", callback: Greeter.HandleGetTimedLoginDetailsSignalCallback): number
270
+ connect_after(sigName: "handle-get-timed-login-details", callback: Greeter.HandleGetTimedLoginDetailsSignalCallback): number
271
+ emit(sigName: "handle-get-timed-login-details", object: Gio.DBusMethodInvocation, ...args: any[]): void
272
+ connect(sigName: "handle-select-session", callback: Greeter.HandleSelectSessionSignalCallback): number
273
+ connect_after(sigName: "handle-select-session", callback: Greeter.HandleSelectSessionSignalCallback): number
274
+ emit(sigName: "handle-select-session", object: Gio.DBusMethodInvocation, p0: string | null, ...args: any[]): void
275
+ connect(sigName: "handle-select-user", callback: Greeter.HandleSelectUserSignalCallback): number
276
+ connect_after(sigName: "handle-select-user", callback: Greeter.HandleSelectUserSignalCallback): number
277
+ emit(sigName: "handle-select-user", object: Gio.DBusMethodInvocation, p0: string | null, ...args: any[]): void
278
+ connect(sigName: "handle-start-session-when-ready", callback: Greeter.HandleStartSessionWhenReadySignalCallback): number
279
+ connect_after(sigName: "handle-start-session-when-ready", callback: Greeter.HandleStartSessionWhenReadySignalCallback): number
280
+ emit(sigName: "handle-start-session-when-ready", object: Gio.DBusMethodInvocation, p0: string | null, p1: boolean, ...args: any[]): void
281
+ connect(sigName: "reauthenticated", callback: Greeter.ReauthenticatedSignalCallback): number
282
+ connect_after(sigName: "reauthenticated", callback: Greeter.ReauthenticatedSignalCallback): number
283
+ emit(sigName: "reauthenticated", object: string | null, ...args: any[]): void
284
+ connect(sigName: "selected-user-changed", callback: Greeter.SelectedUserChangedSignalCallback): number
285
+ connect_after(sigName: "selected-user-changed", callback: Greeter.SelectedUserChangedSignalCallback): number
286
+ emit(sigName: "selected-user-changed", object: string | null, ...args: any[]): void
287
+ connect(sigName: "session-opened", callback: Greeter.SessionOpenedSignalCallback): number
288
+ connect_after(sigName: "session-opened", callback: Greeter.SessionOpenedSignalCallback): number
289
+ emit(sigName: "session-opened", object: string | null, ...args: any[]): void
290
+ connect(sigName: "timed-login-requested", callback: Greeter.TimedLoginRequestedSignalCallback): number
291
+ connect_after(sigName: "timed-login-requested", callback: Greeter.TimedLoginRequestedSignalCallback): number
292
+ emit(sigName: "timed-login-requested", object: string | null, p0: number, ...args: any[]): void
293
+
294
+ // Class property signals of Gdm-1.0.Gdm.Greeter
295
+
296
+ connect(sigName: string, callback: (...args: any[]) => void): number
297
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
298
+ emit(sigName: string, ...args: any[]): void
299
+ disconnect(id: number): void
300
+ }
301
+
302
+ class Greeter extends GObject.Object {
303
+
304
+ // Own properties of Gdm-1.0.Gdm.Greeter
305
+
306
+ static name: string
307
+ static $gtype: GObject.GType<Greeter>
308
+
309
+ // Constructors of Gdm-1.0.Gdm.Greeter
310
+
311
+ constructor(config?: Greeter.ConstructorProperties)
312
+ _init(config?: Greeter.ConstructorProperties): void
313
+ static interface_info(): Gio.DBusInterfaceInfo
314
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
315
+ }
316
+
317
+ module Manager {
318
+
319
+ // Signal callback interfaces
320
+
321
+ /**
322
+ * Signal callback interface for `handle-open-reauthentication-channel`
323
+ */
324
+ interface HandleOpenReauthenticationChannelSignalCallback {
325
+ ($obj: Manager, object: Gio.DBusMethodInvocation, p0: string | null): boolean
326
+ }
327
+
328
+ /**
329
+ * Signal callback interface for `handle-open-session`
330
+ */
331
+ interface HandleOpenSessionSignalCallback {
332
+ ($obj: Manager, object: Gio.DBusMethodInvocation): boolean
333
+ }
334
+
335
+ /**
336
+ * Signal callback interface for `handle-register-display`
337
+ */
338
+ interface HandleRegisterDisplaySignalCallback {
339
+ ($obj: Manager, object: Gio.DBusMethodInvocation, p0: GLib.Variant): boolean
340
+ }
341
+
342
+ /**
343
+ * Signal callback interface for `handle-register-session`
344
+ */
345
+ interface HandleRegisterSessionSignalCallback {
346
+ ($obj: Manager, object: Gio.DBusMethodInvocation, p0: GLib.Variant): boolean
347
+ }
348
+
349
+
350
+ // Constructor properties interface
351
+
352
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
353
+
354
+ // Own constructor properties of Gdm-1.0.Gdm.Manager
355
+
356
+ version?: string | null
357
+ }
358
+
359
+ }
360
+
361
+ interface Manager {
362
+
363
+ // Own properties of Gdm-1.0.Gdm.Manager
364
+
365
+ version: string | null
366
+
367
+ // Owm methods of Gdm-1.0.Gdm.Manager
368
+
369
+ call_open_reauthentication_channel(arg_username: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
370
+ call_open_reauthentication_channel_finish(out_address: string | null, res: Gio.AsyncResult): boolean
371
+ call_open_reauthentication_channel_sync(arg_username: string | null, out_address: string | null, cancellable: Gio.Cancellable | null): boolean
372
+ call_open_session(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
373
+ call_open_session_finish(out_address: string | null, res: Gio.AsyncResult): boolean
374
+ call_open_session_sync(out_address: string | null, cancellable: Gio.Cancellable | null): boolean
375
+ call_register_display(arg_details: GLib.Variant, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
376
+ call_register_display_finish(res: Gio.AsyncResult): boolean
377
+ call_register_display_sync(arg_details: GLib.Variant, cancellable: Gio.Cancellable | null): boolean
378
+ call_register_session(arg_details: GLib.Variant, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
379
+ call_register_session_finish(res: Gio.AsyncResult): boolean
380
+ call_register_session_sync(arg_details: GLib.Variant, cancellable: Gio.Cancellable | null): boolean
381
+ complete_open_reauthentication_channel(invocation: Gio.DBusMethodInvocation, address: string | null): void
382
+ complete_open_session(invocation: Gio.DBusMethodInvocation, address: string | null): void
383
+ complete_register_display(invocation: Gio.DBusMethodInvocation): void
384
+ complete_register_session(invocation: Gio.DBusMethodInvocation): void
385
+ dup_version(): string | null
386
+ get_version(): string | null
387
+ set_version(value: string | null): void
388
+
389
+ // Own virtual methods of Gdm-1.0.Gdm.Manager
390
+
391
+ vfunc_get_version(): string | null
392
+ vfunc_handle_open_reauthentication_channel(invocation: Gio.DBusMethodInvocation, arg_username: string | null): boolean
393
+ vfunc_handle_open_session(invocation: Gio.DBusMethodInvocation): boolean
394
+ vfunc_handle_register_display(invocation: Gio.DBusMethodInvocation, arg_details: GLib.Variant): boolean
395
+ vfunc_handle_register_session(invocation: Gio.DBusMethodInvocation, arg_details: GLib.Variant): boolean
396
+
397
+ // Own signals of Gdm-1.0.Gdm.Manager
398
+
399
+ connect(sigName: "handle-open-reauthentication-channel", callback: Manager.HandleOpenReauthenticationChannelSignalCallback): number
400
+ connect_after(sigName: "handle-open-reauthentication-channel", callback: Manager.HandleOpenReauthenticationChannelSignalCallback): number
401
+ emit(sigName: "handle-open-reauthentication-channel", object: Gio.DBusMethodInvocation, p0: string | null, ...args: any[]): void
402
+ connect(sigName: "handle-open-session", callback: Manager.HandleOpenSessionSignalCallback): number
403
+ connect_after(sigName: "handle-open-session", callback: Manager.HandleOpenSessionSignalCallback): number
404
+ emit(sigName: "handle-open-session", object: Gio.DBusMethodInvocation, ...args: any[]): void
405
+ connect(sigName: "handle-register-display", callback: Manager.HandleRegisterDisplaySignalCallback): number
406
+ connect_after(sigName: "handle-register-display", callback: Manager.HandleRegisterDisplaySignalCallback): number
407
+ emit(sigName: "handle-register-display", object: Gio.DBusMethodInvocation, p0: GLib.Variant, ...args: any[]): void
408
+ connect(sigName: "handle-register-session", callback: Manager.HandleRegisterSessionSignalCallback): number
409
+ connect_after(sigName: "handle-register-session", callback: Manager.HandleRegisterSessionSignalCallback): number
410
+ emit(sigName: "handle-register-session", object: Gio.DBusMethodInvocation, p0: GLib.Variant, ...args: any[]): void
411
+
412
+ // Class property signals of Gdm-1.0.Gdm.Manager
413
+
414
+ connect(sigName: "notify::version", callback: (($obj: Manager, pspec: GObject.ParamSpec) => void)): number
415
+ connect_after(sigName: "notify::version", callback: (($obj: Manager, pspec: GObject.ParamSpec) => void)): number
416
+ emit(sigName: "notify::version", ...args: any[]): void
417
+ connect(sigName: string, callback: (...args: any[]) => void): number
418
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
419
+ emit(sigName: string, ...args: any[]): void
420
+ disconnect(id: number): void
421
+ }
422
+
423
+ class Manager extends GObject.Object {
424
+
425
+ // Own properties of Gdm-1.0.Gdm.Manager
426
+
427
+ static name: string
428
+ static $gtype: GObject.GType<Manager>
429
+
430
+ // Constructors of Gdm-1.0.Gdm.Manager
431
+
432
+ constructor(config?: Manager.ConstructorProperties)
433
+ _init(config?: Manager.ConstructorProperties): void
434
+ static interface_info(): Gio.DBusInterfaceInfo
435
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
436
+ }
437
+
438
+ module RemoteGreeter {
439
+
440
+ // Signal callback interfaces
441
+
442
+ /**
443
+ * Signal callback interface for `handle-disconnect`
444
+ */
445
+ interface HandleDisconnectSignalCallback {
446
+ ($obj: RemoteGreeter, object: Gio.DBusMethodInvocation): boolean
447
+ }
448
+
449
+
450
+ // Constructor properties interface
451
+
452
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
453
+ }
454
+
455
+ }
456
+
457
+ interface RemoteGreeter {
458
+
459
+ // Owm methods of Gdm-1.0.Gdm.RemoteGreeter
460
+
461
+ call_disconnect(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
462
+ call_disconnect_finish(res: Gio.AsyncResult): boolean
463
+ call_disconnect_sync(cancellable: Gio.Cancellable | null): boolean
464
+ complete_disconnect(invocation: Gio.DBusMethodInvocation): void
465
+
466
+ // Own virtual methods of Gdm-1.0.Gdm.RemoteGreeter
467
+
468
+ vfunc_handle_disconnect(invocation: Gio.DBusMethodInvocation): boolean
469
+
470
+ // Own signals of Gdm-1.0.Gdm.RemoteGreeter
471
+
472
+ connect(sigName: "handle-disconnect", callback: RemoteGreeter.HandleDisconnectSignalCallback): number
473
+ connect_after(sigName: "handle-disconnect", callback: RemoteGreeter.HandleDisconnectSignalCallback): number
474
+ emit(sigName: "handle-disconnect", object: Gio.DBusMethodInvocation, ...args: any[]): void
475
+
476
+ // Class property signals of Gdm-1.0.Gdm.RemoteGreeter
477
+
478
+ connect(sigName: string, callback: (...args: any[]) => void): number
479
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
480
+ emit(sigName: string, ...args: any[]): void
481
+ disconnect(id: number): void
482
+ }
483
+
484
+ class RemoteGreeter extends GObject.Object {
485
+
486
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeter
487
+
488
+ static name: string
489
+ static $gtype: GObject.GType<RemoteGreeter>
490
+
491
+ // Constructors of Gdm-1.0.Gdm.RemoteGreeter
492
+
493
+ constructor(config?: RemoteGreeter.ConstructorProperties)
494
+ _init(config?: RemoteGreeter.ConstructorProperties): void
495
+ static interface_info(): Gio.DBusInterfaceInfo
496
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
497
+ }
498
+
499
+ module UserVerifier {
500
+
501
+ // Signal callback interfaces
502
+
503
+ /**
504
+ * Signal callback interface for `conversation-started`
505
+ */
506
+ interface ConversationStartedSignalCallback {
507
+ ($obj: UserVerifier, object: string | null): void
508
+ }
509
+
510
+ /**
511
+ * Signal callback interface for `conversation-stopped`
512
+ */
513
+ interface ConversationStoppedSignalCallback {
514
+ ($obj: UserVerifier, object: string | null): void
515
+ }
516
+
517
+ /**
518
+ * Signal callback interface for `handle-answer-query`
519
+ */
520
+ interface HandleAnswerQuerySignalCallback {
521
+ ($obj: UserVerifier, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
522
+ }
523
+
524
+ /**
525
+ * Signal callback interface for `handle-begin-verification`
526
+ */
527
+ interface HandleBeginVerificationSignalCallback {
528
+ ($obj: UserVerifier, object: Gio.DBusMethodInvocation, p0: string | null): boolean
529
+ }
530
+
531
+ /**
532
+ * Signal callback interface for `handle-begin-verification-for-user`
533
+ */
534
+ interface HandleBeginVerificationForUserSignalCallback {
535
+ ($obj: UserVerifier, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
536
+ }
537
+
538
+ /**
539
+ * Signal callback interface for `handle-cancel`
540
+ */
541
+ interface HandleCancelSignalCallback {
542
+ ($obj: UserVerifier, object: Gio.DBusMethodInvocation): boolean
543
+ }
544
+
545
+ /**
546
+ * Signal callback interface for `handle-enable-extensions`
547
+ */
548
+ interface HandleEnableExtensionsSignalCallback {
549
+ ($obj: UserVerifier, object: Gio.DBusMethodInvocation, p0: string[]): boolean
550
+ }
551
+
552
+ /**
553
+ * Signal callback interface for `info`
554
+ */
555
+ interface InfoSignalCallback {
556
+ ($obj: UserVerifier, object: string | null, p0: string | null): void
557
+ }
558
+
559
+ /**
560
+ * Signal callback interface for `info-query`
561
+ */
562
+ interface InfoQuerySignalCallback {
563
+ ($obj: UserVerifier, object: string | null, p0: string | null): void
564
+ }
565
+
566
+ /**
567
+ * Signal callback interface for `problem`
568
+ */
569
+ interface ProblemSignalCallback {
570
+ ($obj: UserVerifier, object: string | null, p0: string | null): void
571
+ }
572
+
573
+ /**
574
+ * Signal callback interface for `reauthentication-started`
575
+ */
576
+ interface ReauthenticationStartedSignalCallback {
577
+ ($obj: UserVerifier, object: number): void
578
+ }
579
+
580
+ /**
581
+ * Signal callback interface for `reset`
582
+ */
583
+ interface ResetSignalCallback {
584
+ ($obj: UserVerifier): void
585
+ }
586
+
587
+ /**
588
+ * Signal callback interface for `secret-info-query`
589
+ */
590
+ interface SecretInfoQuerySignalCallback {
591
+ ($obj: UserVerifier, object: string | null, p0: string | null): void
592
+ }
593
+
594
+ /**
595
+ * Signal callback interface for `service-unavailable`
596
+ */
597
+ interface ServiceUnavailableSignalCallback {
598
+ ($obj: UserVerifier, object: string | null, p0: string | null): void
599
+ }
600
+
601
+ /**
602
+ * Signal callback interface for `verification-complete`
603
+ */
604
+ interface VerificationCompleteSignalCallback {
605
+ ($obj: UserVerifier, object: string | null): void
606
+ }
607
+
608
+ /**
609
+ * Signal callback interface for `verification-failed`
610
+ */
611
+ interface VerificationFailedSignalCallback {
612
+ ($obj: UserVerifier, object: string | null): void
613
+ }
614
+
615
+
616
+ // Constructor properties interface
617
+
618
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
619
+ }
620
+
621
+ }
622
+
623
+ interface UserVerifier {
624
+
625
+ // Owm methods of Gdm-1.0.Gdm.UserVerifier
626
+
627
+ call_answer_query(arg_service_name: string | null, arg_answer: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
628
+ call_answer_query_finish(res: Gio.AsyncResult): boolean
629
+ call_answer_query_sync(arg_service_name: string | null, arg_answer: string | null, cancellable: Gio.Cancellable | null): boolean
630
+ call_begin_verification(arg_service_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
631
+ call_begin_verification_finish(res: Gio.AsyncResult): boolean
632
+ call_begin_verification_for_user(arg_service_name: string | null, arg_username: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
633
+ call_begin_verification_for_user_finish(res: Gio.AsyncResult): boolean
634
+ call_begin_verification_for_user_sync(arg_service_name: string | null, arg_username: string | null, cancellable: Gio.Cancellable | null): boolean
635
+ call_begin_verification_sync(arg_service_name: string | null, cancellable: Gio.Cancellable | null): boolean
636
+ call_cancel(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
637
+ call_cancel_finish(res: Gio.AsyncResult): boolean
638
+ call_cancel_sync(cancellable: Gio.Cancellable | null): boolean
639
+ call_enable_extensions(arg_extensions: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
640
+ call_enable_extensions_finish(res: Gio.AsyncResult): boolean
641
+ call_enable_extensions_sync(arg_extensions: string | null, cancellable: Gio.Cancellable | null): boolean
642
+ complete_answer_query(invocation: Gio.DBusMethodInvocation): void
643
+ complete_begin_verification(invocation: Gio.DBusMethodInvocation): void
644
+ complete_begin_verification_for_user(invocation: Gio.DBusMethodInvocation): void
645
+ complete_cancel(invocation: Gio.DBusMethodInvocation): void
646
+ complete_enable_extensions(invocation: Gio.DBusMethodInvocation): void
647
+ emit_conversation_started(arg_service_name: string | null): void
648
+ emit_conversation_stopped(arg_service_name: string | null): void
649
+ emit_info(arg_service_name: string | null, arg_info: string | null): void
650
+ emit_info_query(arg_service_name: string | null, arg_query: string | null): void
651
+ emit_problem(arg_service_name: string | null, arg_problem: string | null): void
652
+ emit_reauthentication_started(arg_pid_of_caller: number): void
653
+ emit_reset(): void
654
+ emit_secret_info_query(arg_service_name: string | null, arg_query: string | null): void
655
+ emit_service_unavailable(arg_service_name: string | null, arg_message: string | null): void
656
+ emit_verification_complete(arg_service_name: string | null): void
657
+ emit_verification_failed(arg_service_name: string | null): void
658
+
659
+ // Own virtual methods of Gdm-1.0.Gdm.UserVerifier
660
+
661
+ vfunc_conversation_started(arg_service_name: string | null): void
662
+ vfunc_conversation_stopped(arg_service_name: string | null): void
663
+ vfunc_handle_answer_query(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_answer: string | null): boolean
664
+ vfunc_handle_begin_verification(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null): boolean
665
+ vfunc_handle_begin_verification_for_user(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_username: string | null): boolean
666
+ vfunc_handle_cancel(invocation: Gio.DBusMethodInvocation): boolean
667
+ vfunc_handle_enable_extensions(invocation: Gio.DBusMethodInvocation, arg_extensions: string | null): boolean
668
+ vfunc_info(arg_service_name: string | null, arg_info: string | null): void
669
+ vfunc_info_query(arg_service_name: string | null, arg_query: string | null): void
670
+ vfunc_problem(arg_service_name: string | null, arg_problem: string | null): void
671
+ vfunc_reauthentication_started(arg_pid_of_caller: number): void
672
+ vfunc_reset(): void
673
+ vfunc_secret_info_query(arg_service_name: string | null, arg_query: string | null): void
674
+ vfunc_service_unavailable(arg_service_name: string | null, arg_message: string | null): void
675
+ vfunc_verification_complete(arg_service_name: string | null): void
676
+ vfunc_verification_failed(arg_service_name: string | null): void
677
+
678
+ // Own signals of Gdm-1.0.Gdm.UserVerifier
679
+
680
+ connect(sigName: "conversation-started", callback: UserVerifier.ConversationStartedSignalCallback): number
681
+ connect_after(sigName: "conversation-started", callback: UserVerifier.ConversationStartedSignalCallback): number
682
+ emit(sigName: "conversation-started", object: string | null, ...args: any[]): void
683
+ connect(sigName: "conversation-stopped", callback: UserVerifier.ConversationStoppedSignalCallback): number
684
+ connect_after(sigName: "conversation-stopped", callback: UserVerifier.ConversationStoppedSignalCallback): number
685
+ emit(sigName: "conversation-stopped", object: string | null, ...args: any[]): void
686
+ connect(sigName: "handle-answer-query", callback: UserVerifier.HandleAnswerQuerySignalCallback): number
687
+ connect_after(sigName: "handle-answer-query", callback: UserVerifier.HandleAnswerQuerySignalCallback): number
688
+ emit(sigName: "handle-answer-query", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
689
+ connect(sigName: "handle-begin-verification", callback: UserVerifier.HandleBeginVerificationSignalCallback): number
690
+ connect_after(sigName: "handle-begin-verification", callback: UserVerifier.HandleBeginVerificationSignalCallback): number
691
+ emit(sigName: "handle-begin-verification", object: Gio.DBusMethodInvocation, p0: string | null, ...args: any[]): void
692
+ connect(sigName: "handle-begin-verification-for-user", callback: UserVerifier.HandleBeginVerificationForUserSignalCallback): number
693
+ connect_after(sigName: "handle-begin-verification-for-user", callback: UserVerifier.HandleBeginVerificationForUserSignalCallback): number
694
+ emit(sigName: "handle-begin-verification-for-user", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
695
+ connect(sigName: "handle-cancel", callback: UserVerifier.HandleCancelSignalCallback): number
696
+ connect_after(sigName: "handle-cancel", callback: UserVerifier.HandleCancelSignalCallback): number
697
+ emit(sigName: "handle-cancel", object: Gio.DBusMethodInvocation, ...args: any[]): void
698
+ connect(sigName: "handle-enable-extensions", callback: UserVerifier.HandleEnableExtensionsSignalCallback): number
699
+ connect_after(sigName: "handle-enable-extensions", callback: UserVerifier.HandleEnableExtensionsSignalCallback): number
700
+ emit(sigName: "handle-enable-extensions", object: Gio.DBusMethodInvocation, p0: string[], ...args: any[]): void
701
+ connect(sigName: "info", callback: UserVerifier.InfoSignalCallback): number
702
+ connect_after(sigName: "info", callback: UserVerifier.InfoSignalCallback): number
703
+ emit(sigName: "info", object: string | null, p0: string | null, ...args: any[]): void
704
+ connect(sigName: "info-query", callback: UserVerifier.InfoQuerySignalCallback): number
705
+ connect_after(sigName: "info-query", callback: UserVerifier.InfoQuerySignalCallback): number
706
+ emit(sigName: "info-query", object: string | null, p0: string | null, ...args: any[]): void
707
+ connect(sigName: "problem", callback: UserVerifier.ProblemSignalCallback): number
708
+ connect_after(sigName: "problem", callback: UserVerifier.ProblemSignalCallback): number
709
+ emit(sigName: "problem", object: string | null, p0: string | null, ...args: any[]): void
710
+ connect(sigName: "reauthentication-started", callback: UserVerifier.ReauthenticationStartedSignalCallback): number
711
+ connect_after(sigName: "reauthentication-started", callback: UserVerifier.ReauthenticationStartedSignalCallback): number
712
+ emit(sigName: "reauthentication-started", object: number, ...args: any[]): void
713
+ connect(sigName: "reset", callback: UserVerifier.ResetSignalCallback): number
714
+ connect_after(sigName: "reset", callback: UserVerifier.ResetSignalCallback): number
715
+ emit(sigName: "reset", ...args: any[]): void
716
+ connect(sigName: "secret-info-query", callback: UserVerifier.SecretInfoQuerySignalCallback): number
717
+ connect_after(sigName: "secret-info-query", callback: UserVerifier.SecretInfoQuerySignalCallback): number
718
+ emit(sigName: "secret-info-query", object: string | null, p0: string | null, ...args: any[]): void
719
+ connect(sigName: "service-unavailable", callback: UserVerifier.ServiceUnavailableSignalCallback): number
720
+ connect_after(sigName: "service-unavailable", callback: UserVerifier.ServiceUnavailableSignalCallback): number
721
+ emit(sigName: "service-unavailable", object: string | null, p0: string | null, ...args: any[]): void
722
+ connect(sigName: "verification-complete", callback: UserVerifier.VerificationCompleteSignalCallback): number
723
+ connect_after(sigName: "verification-complete", callback: UserVerifier.VerificationCompleteSignalCallback): number
724
+ emit(sigName: "verification-complete", object: string | null, ...args: any[]): void
725
+ connect(sigName: "verification-failed", callback: UserVerifier.VerificationFailedSignalCallback): number
726
+ connect_after(sigName: "verification-failed", callback: UserVerifier.VerificationFailedSignalCallback): number
727
+ emit(sigName: "verification-failed", object: string | null, ...args: any[]): void
728
+
729
+ // Class property signals of Gdm-1.0.Gdm.UserVerifier
730
+
731
+ connect(sigName: string, callback: (...args: any[]) => void): number
732
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
733
+ emit(sigName: string, ...args: any[]): void
734
+ disconnect(id: number): void
735
+ }
736
+
737
+ class UserVerifier extends GObject.Object {
738
+
739
+ // Own properties of Gdm-1.0.Gdm.UserVerifier
740
+
741
+ static name: string
742
+ static $gtype: GObject.GType<UserVerifier>
743
+
744
+ // Constructors of Gdm-1.0.Gdm.UserVerifier
745
+
746
+ constructor(config?: UserVerifier.ConstructorProperties)
747
+ _init(config?: UserVerifier.ConstructorProperties): void
748
+ static interface_info(): Gio.DBusInterfaceInfo
749
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
750
+ }
751
+
752
+ module UserVerifierChoiceList {
753
+
754
+ // Signal callback interfaces
755
+
756
+ /**
757
+ * Signal callback interface for `choice-query`
758
+ */
759
+ interface ChoiceQuerySignalCallback {
760
+ ($obj: UserVerifierChoiceList, object: string | null, p0: string | null, p1: GLib.Variant): void
761
+ }
762
+
763
+ /**
764
+ * Signal callback interface for `handle-select-choice`
765
+ */
766
+ interface HandleSelectChoiceSignalCallback {
767
+ ($obj: UserVerifierChoiceList, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
768
+ }
769
+
770
+
771
+ // Constructor properties interface
772
+
773
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
774
+ }
775
+
776
+ }
777
+
778
+ interface UserVerifierChoiceList {
779
+
780
+ // Owm methods of Gdm-1.0.Gdm.UserVerifierChoiceList
781
+
782
+ call_select_choice(arg_service_name: string | null, arg_choice: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
783
+ call_select_choice_finish(res: Gio.AsyncResult): boolean
784
+ call_select_choice_sync(arg_service_name: string | null, arg_choice: string | null, cancellable: Gio.Cancellable | null): boolean
785
+ complete_select_choice(invocation: Gio.DBusMethodInvocation): void
786
+ emit_choice_query(arg_service_name: string | null, arg_prompt_message: string | null, arg_list: GLib.Variant): void
787
+
788
+ // Own virtual methods of Gdm-1.0.Gdm.UserVerifierChoiceList
789
+
790
+ vfunc_choice_query(arg_service_name: string | null, arg_prompt_message: string | null, arg_list: GLib.Variant): void
791
+ vfunc_handle_select_choice(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_choice: string | null): boolean
792
+
793
+ // Own signals of Gdm-1.0.Gdm.UserVerifierChoiceList
794
+
795
+ connect(sigName: "choice-query", callback: UserVerifierChoiceList.ChoiceQuerySignalCallback): number
796
+ connect_after(sigName: "choice-query", callback: UserVerifierChoiceList.ChoiceQuerySignalCallback): number
797
+ emit(sigName: "choice-query", object: string | null, p0: string | null, p1: GLib.Variant, ...args: any[]): void
798
+ connect(sigName: "handle-select-choice", callback: UserVerifierChoiceList.HandleSelectChoiceSignalCallback): number
799
+ connect_after(sigName: "handle-select-choice", callback: UserVerifierChoiceList.HandleSelectChoiceSignalCallback): number
800
+ emit(sigName: "handle-select-choice", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
801
+
802
+ // Class property signals of Gdm-1.0.Gdm.UserVerifierChoiceList
803
+
804
+ connect(sigName: string, callback: (...args: any[]) => void): number
805
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
806
+ emit(sigName: string, ...args: any[]): void
807
+ disconnect(id: number): void
808
+ }
809
+
810
+ class UserVerifierChoiceList extends GObject.Object {
811
+
812
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceList
813
+
814
+ static name: string
815
+ static $gtype: GObject.GType<UserVerifierChoiceList>
816
+
817
+ // Constructors of Gdm-1.0.Gdm.UserVerifierChoiceList
818
+
819
+ constructor(config?: UserVerifierChoiceList.ConstructorProperties)
820
+ _init(config?: UserVerifierChoiceList.ConstructorProperties): void
821
+ static interface_info(): Gio.DBusInterfaceInfo
822
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
823
+ }
824
+
825
+ module WorkerManager {
826
+
827
+ // Signal callback interfaces
828
+
829
+ /**
830
+ * Signal callback interface for `handle-choice-list-query`
831
+ */
832
+ interface HandleChoiceListQuerySignalCallback {
833
+ ($obj: WorkerManager, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, p2: GLib.Variant): boolean
834
+ }
835
+
836
+ /**
837
+ * Signal callback interface for `handle-hello`
838
+ */
839
+ interface HandleHelloSignalCallback {
840
+ ($obj: WorkerManager, object: Gio.DBusMethodInvocation): boolean
841
+ }
842
+
843
+ /**
844
+ * Signal callback interface for `handle-info`
845
+ */
846
+ interface HandleInfoSignalCallback {
847
+ ($obj: WorkerManager, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
848
+ }
849
+
850
+ /**
851
+ * Signal callback interface for `handle-info-query`
852
+ */
853
+ interface HandleInfoQuerySignalCallback {
854
+ ($obj: WorkerManager, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
855
+ }
856
+
857
+ /**
858
+ * Signal callback interface for `handle-problem`
859
+ */
860
+ interface HandleProblemSignalCallback {
861
+ ($obj: WorkerManager, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
862
+ }
863
+
864
+ /**
865
+ * Signal callback interface for `handle-secret-info-query`
866
+ */
867
+ interface HandleSecretInfoQuerySignalCallback {
868
+ ($obj: WorkerManager, object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null): boolean
869
+ }
870
+
871
+
872
+ // Constructor properties interface
873
+
874
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
875
+ }
876
+
877
+ }
878
+
879
+ interface WorkerManager {
880
+
881
+ // Owm methods of Gdm-1.0.Gdm.WorkerManager
882
+
883
+ call_choice_list_query(arg_service_name: string | null, arg_prompt_message: string | null, arg_query: GLib.Variant, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
884
+ call_choice_list_query_finish(out_answer: string | null, res: Gio.AsyncResult): boolean
885
+ call_choice_list_query_sync(arg_service_name: string | null, arg_prompt_message: string | null, arg_query: GLib.Variant, out_answer: string | null, cancellable: Gio.Cancellable | null): boolean
886
+ call_hello(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
887
+ call_hello_finish(res: Gio.AsyncResult): boolean
888
+ call_hello_sync(cancellable: Gio.Cancellable | null): boolean
889
+ call_info(arg_service_name: string | null, arg_info: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
890
+ call_info_finish(res: Gio.AsyncResult): boolean
891
+ call_info_query(arg_service_name: string | null, arg_query: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
892
+ call_info_query_finish(out_answer: string | null, res: Gio.AsyncResult): boolean
893
+ call_info_query_sync(arg_service_name: string | null, arg_query: string | null, out_answer: string | null, cancellable: Gio.Cancellable | null): boolean
894
+ call_info_sync(arg_service_name: string | null, arg_info: string | null, cancellable: Gio.Cancellable | null): boolean
895
+ call_problem(arg_service_name: string | null, arg_problem: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
896
+ call_problem_finish(res: Gio.AsyncResult): boolean
897
+ call_problem_sync(arg_service_name: string | null, arg_problem: string | null, cancellable: Gio.Cancellable | null): boolean
898
+ call_secret_info_query(arg_service_name: string | null, arg_query: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
899
+ call_secret_info_query_finish(out_answer: string | null, res: Gio.AsyncResult): boolean
900
+ call_secret_info_query_sync(arg_service_name: string | null, arg_query: string | null, out_answer: string | null, cancellable: Gio.Cancellable | null): boolean
901
+ complete_choice_list_query(invocation: Gio.DBusMethodInvocation, answer: string | null): void
902
+ complete_hello(invocation: Gio.DBusMethodInvocation): void
903
+ complete_info(invocation: Gio.DBusMethodInvocation): void
904
+ complete_info_query(invocation: Gio.DBusMethodInvocation, answer: string | null): void
905
+ complete_problem(invocation: Gio.DBusMethodInvocation): void
906
+ complete_secret_info_query(invocation: Gio.DBusMethodInvocation, answer: string | null): void
907
+
908
+ // Own virtual methods of Gdm-1.0.Gdm.WorkerManager
909
+
910
+ vfunc_handle_choice_list_query(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_prompt_message: string | null, arg_query: GLib.Variant): boolean
911
+ vfunc_handle_hello(invocation: Gio.DBusMethodInvocation): boolean
912
+ vfunc_handle_info(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_info: string | null): boolean
913
+ vfunc_handle_info_query(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_query: string | null): boolean
914
+ vfunc_handle_problem(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_problem: string | null): boolean
915
+ vfunc_handle_secret_info_query(invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_query: string | null): boolean
916
+
917
+ // Own signals of Gdm-1.0.Gdm.WorkerManager
918
+
919
+ connect(sigName: "handle-choice-list-query", callback: WorkerManager.HandleChoiceListQuerySignalCallback): number
920
+ connect_after(sigName: "handle-choice-list-query", callback: WorkerManager.HandleChoiceListQuerySignalCallback): number
921
+ emit(sigName: "handle-choice-list-query", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, p2: GLib.Variant, ...args: any[]): void
922
+ connect(sigName: "handle-hello", callback: WorkerManager.HandleHelloSignalCallback): number
923
+ connect_after(sigName: "handle-hello", callback: WorkerManager.HandleHelloSignalCallback): number
924
+ emit(sigName: "handle-hello", object: Gio.DBusMethodInvocation, ...args: any[]): void
925
+ connect(sigName: "handle-info", callback: WorkerManager.HandleInfoSignalCallback): number
926
+ connect_after(sigName: "handle-info", callback: WorkerManager.HandleInfoSignalCallback): number
927
+ emit(sigName: "handle-info", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
928
+ connect(sigName: "handle-info-query", callback: WorkerManager.HandleInfoQuerySignalCallback): number
929
+ connect_after(sigName: "handle-info-query", callback: WorkerManager.HandleInfoQuerySignalCallback): number
930
+ emit(sigName: "handle-info-query", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
931
+ connect(sigName: "handle-problem", callback: WorkerManager.HandleProblemSignalCallback): number
932
+ connect_after(sigName: "handle-problem", callback: WorkerManager.HandleProblemSignalCallback): number
933
+ emit(sigName: "handle-problem", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
934
+ connect(sigName: "handle-secret-info-query", callback: WorkerManager.HandleSecretInfoQuerySignalCallback): number
935
+ connect_after(sigName: "handle-secret-info-query", callback: WorkerManager.HandleSecretInfoQuerySignalCallback): number
936
+ emit(sigName: "handle-secret-info-query", object: Gio.DBusMethodInvocation, p0: string | null, p1: string | null, ...args: any[]): void
937
+
938
+ // Class property signals of Gdm-1.0.Gdm.WorkerManager
939
+
940
+ connect(sigName: string, callback: (...args: any[]) => void): number
941
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
942
+ emit(sigName: string, ...args: any[]): void
943
+ disconnect(id: number): void
944
+ }
945
+
946
+ class WorkerManager extends GObject.Object {
947
+
948
+ // Own properties of Gdm-1.0.Gdm.WorkerManager
949
+
950
+ static name: string
951
+ static $gtype: GObject.GType<WorkerManager>
952
+
953
+ // Constructors of Gdm-1.0.Gdm.WorkerManager
954
+
955
+ constructor(config?: WorkerManager.ConstructorProperties)
956
+ _init(config?: WorkerManager.ConstructorProperties): void
957
+ static interface_info(): Gio.DBusInterfaceInfo
958
+ static override_properties(klass: GObject.ObjectClass, property_id_begin: number): number
959
+ }
960
+
961
+ module ChooserProxy {
962
+
963
+ // Constructor properties interface
964
+
965
+ interface ConstructorProperties extends Chooser.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
966
+ }
967
+
968
+ }
969
+
970
+ interface ChooserProxy extends Chooser, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
971
+
972
+ // Class property signals of Gdm-1.0.Gdm.ChooserProxy
973
+
974
+ connect(sigName: "notify::g-bus-type", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
975
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
976
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
977
+ connect(sigName: "notify::g-connection", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
978
+ connect_after(sigName: "notify::g-connection", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
979
+ emit(sigName: "notify::g-connection", ...args: any[]): void
980
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
981
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
982
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
983
+ connect(sigName: "notify::g-flags", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
984
+ connect_after(sigName: "notify::g-flags", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
985
+ emit(sigName: "notify::g-flags", ...args: any[]): void
986
+ connect(sigName: "notify::g-interface-info", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
987
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
988
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
989
+ connect(sigName: "notify::g-interface-name", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
990
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
991
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
992
+ connect(sigName: "notify::g-name", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
993
+ connect_after(sigName: "notify::g-name", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
994
+ emit(sigName: "notify::g-name", ...args: any[]): void
995
+ connect(sigName: "notify::g-name-owner", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
996
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
997
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
998
+ connect(sigName: "notify::g-object-path", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
999
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: ChooserProxy, pspec: GObject.ParamSpec) => void)): number
1000
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
1001
+ connect(sigName: string, callback: (...args: any[]) => void): number
1002
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1003
+ emit(sigName: string, ...args: any[]): void
1004
+ disconnect(id: number): void
1005
+ }
1006
+
1007
+ class ChooserProxy extends Gio.DBusProxy {
1008
+
1009
+ // Own properties of Gdm-1.0.Gdm.ChooserProxy
1010
+
1011
+ static name: string
1012
+ static $gtype: GObject.GType<ChooserProxy>
1013
+
1014
+ // Constructors of Gdm-1.0.Gdm.ChooserProxy
1015
+
1016
+ constructor(config?: ChooserProxy.ConstructorProperties)
1017
+ _init(config?: ChooserProxy.ConstructorProperties): void
1018
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<ChooserProxy> | null): void
1019
+
1020
+ // Overloads of new
1021
+
1022
+ /**
1023
+ * Creates a proxy for accessing `interface_name` on the remote object
1024
+ * at `object_path` owned by `name` at `connection` and asynchronously
1025
+ * loads D-Bus properties unless the
1026
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
1027
+ * the #GDBusProxy::g-properties-changed signal to get notified about
1028
+ * property changes.
1029
+ *
1030
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
1031
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
1032
+ * to handle signals from the remote object.
1033
+ *
1034
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
1035
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
1036
+ * guaranteed to complete immediately without blocking.
1037
+ *
1038
+ * If `name` is a well-known name and the
1039
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
1040
+ * flags aren't set and no name owner currently exists, the message bus
1041
+ * will be requested to launch a name owner for the name.
1042
+ *
1043
+ * This is a failable asynchronous constructor - when the proxy is
1044
+ * ready, `callback` will be invoked and you can use
1045
+ * g_dbus_proxy_new_finish() to get the result.
1046
+ *
1047
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
1048
+ *
1049
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1050
+ * @param connection A #GDBusConnection.
1051
+ * @param flags Flags used when constructing the proxy.
1052
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1053
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
1054
+ * @param object_path An object path.
1055
+ * @param interface_name A D-Bus interface name.
1056
+ * @param cancellable A #GCancellable or %NULL.
1057
+ * @param callback Callback function to invoke when the proxy is ready.
1058
+ */
1059
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1060
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<ChooserProxy> | null): void
1061
+
1062
+ // Overloads of new_for_bus
1063
+
1064
+ /**
1065
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
1066
+ *
1067
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1068
+ * @param bus_type A #GBusType.
1069
+ * @param flags Flags used when constructing the proxy.
1070
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1071
+ * @param name A bus name (well-known or unique).
1072
+ * @param object_path An object path.
1073
+ * @param interface_name A D-Bus interface name.
1074
+ * @param cancellable A #GCancellable or %NULL.
1075
+ * @param callback Callback function to invoke when the proxy is ready.
1076
+ */
1077
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1078
+ }
1079
+
1080
+ module ChooserSkeleton {
1081
+
1082
+ // Constructor properties interface
1083
+
1084
+ interface ConstructorProperties extends Chooser.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
1085
+ }
1086
+
1087
+ }
1088
+
1089
+ interface ChooserSkeleton extends Chooser, Gio.DBusInterface {
1090
+
1091
+ // Class property signals of Gdm-1.0.Gdm.ChooserSkeleton
1092
+
1093
+ connect(sigName: "notify::g-flags", callback: (($obj: ChooserSkeleton, pspec: GObject.ParamSpec) => void)): number
1094
+ connect_after(sigName: "notify::g-flags", callback: (($obj: ChooserSkeleton, pspec: GObject.ParamSpec) => void)): number
1095
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1096
+ connect(sigName: string, callback: (...args: any[]) => void): number
1097
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1098
+ emit(sigName: string, ...args: any[]): void
1099
+ disconnect(id: number): void
1100
+ }
1101
+
1102
+ class ChooserSkeleton extends Gio.DBusInterfaceSkeleton {
1103
+
1104
+ // Own properties of Gdm-1.0.Gdm.ChooserSkeleton
1105
+
1106
+ static name: string
1107
+ static $gtype: GObject.GType<ChooserSkeleton>
1108
+
1109
+ // Constructors of Gdm-1.0.Gdm.ChooserSkeleton
1110
+
1111
+ constructor(config?: ChooserSkeleton.ConstructorProperties)
1112
+ _init(config?: ChooserSkeleton.ConstructorProperties): void
1113
+ }
1114
+
1115
+ module Client {
1116
+
1117
+ // Constructor properties interface
1118
+
1119
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
1120
+ }
1121
+
1122
+ }
1123
+
1124
+ interface Client {
1125
+
1126
+ // Owm methods of Gdm-1.0.Gdm.Client
1127
+
1128
+ /**
1129
+ * Gets a #GdmChooser object that can be used to
1130
+ * verify a user's local account.
1131
+ * @param cancellable a #GCancellable
1132
+ * @param callback a #GAsyncReadyCallback to call when the request is satisfied
1133
+ */
1134
+ get_chooser(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
1135
+ /**
1136
+ * Finishes an operation started with
1137
+ * gdm_client_get_chooser().
1138
+ * @param result The #GAsyncResult from the callback
1139
+ * @returns a #GdmChooser
1140
+ */
1141
+ get_chooser_finish(result: Gio.AsyncResult): Chooser
1142
+ /**
1143
+ * Gets a #GdmChooser object that can be used
1144
+ * to do do various XDMCP chooser related tasks, such
1145
+ * as selecting a host or disconnecting.
1146
+ * @param cancellable a #GCancellable
1147
+ * @returns #GdmChooser or %NULL if caller is not a chooser
1148
+ */
1149
+ get_chooser_sync(cancellable: Gio.Cancellable | null): Chooser
1150
+ /**
1151
+ * Gets a #GdmGreeter object that can be used to
1152
+ * verify a user's local account.
1153
+ * @param cancellable a #GCancellable
1154
+ * @param callback a #GAsyncReadyCallback to call when the request is satisfied
1155
+ */
1156
+ get_greeter(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
1157
+ /**
1158
+ * Finishes an operation started with
1159
+ * gdm_client_get_greeter().
1160
+ * @param result The #GAsyncResult from the callback
1161
+ * @returns a #GdmGreeter
1162
+ */
1163
+ get_greeter_finish(result: Gio.AsyncResult): Greeter
1164
+ /**
1165
+ * Gets a #GdmGreeter object that can be used
1166
+ * to do do various login screen related tasks, such
1167
+ * as selecting a users session, and starting that
1168
+ * session.
1169
+ * @param cancellable a #GCancellable
1170
+ * @returns #GdmGreeter or %NULL if caller is not a greeter
1171
+ */
1172
+ get_greeter_sync(cancellable: Gio.Cancellable | null): Greeter
1173
+ /**
1174
+ * Gets a #GdmRemoteGreeter object that can be used to
1175
+ * verify a user's local account.
1176
+ * @param cancellable a #GCancellable
1177
+ * @param callback a #GAsyncReadyCallback to call when the request is satisfied
1178
+ */
1179
+ get_remote_greeter(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
1180
+ /**
1181
+ * Finishes an operation started with
1182
+ * gdm_client_get_remote_greeter().
1183
+ * @param result The #GAsyncResult from the callback
1184
+ * @returns a #GdmRemoteGreeter
1185
+ */
1186
+ get_remote_greeter_finish(result: Gio.AsyncResult): RemoteGreeter
1187
+ /**
1188
+ * Gets a #GdmRemoteGreeter object that can be used
1189
+ * to do do various remote login screen related tasks,
1190
+ * such as disconnecting.
1191
+ * @param cancellable a #GCancellable
1192
+ * @returns #GdmRemoteGreeter or %NULL if caller is not remote
1193
+ */
1194
+ get_remote_greeter_sync(cancellable: Gio.Cancellable | null): RemoteGreeter
1195
+ /**
1196
+ * Gets a #GdmUserVerifier object that can be used to
1197
+ * verify a user's local account.
1198
+ * @param cancellable a #GCancellable
1199
+ * @param callback a #GAsyncReadyCallback to call when the request is satisfied
1200
+ */
1201
+ get_user_verifier(cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
1202
+ /**
1203
+ * Gets a #GdmUserVerifierChoiceList object that can be used to
1204
+ * verify a user's local account.
1205
+ * @returns #GdmUserVerifierChoiceList or %NULL if user verifier isn't yet fetched, or daemon doesn't support choice lists
1206
+ */
1207
+ get_user_verifier_choice_list(): UserVerifierChoiceList
1208
+ /**
1209
+ * Finishes an operation started with
1210
+ * gdm_client_get_user_verifier().
1211
+ * @param result The #GAsyncResult from the callback
1212
+ * @returns a #GdmUserVerifier
1213
+ */
1214
+ get_user_verifier_finish(result: Gio.AsyncResult): UserVerifier
1215
+ /**
1216
+ * Gets a #GdmUserVerifier object that can be used to
1217
+ * verify a user's local account.
1218
+ * @param cancellable a #GCancellable
1219
+ * @returns #GdmUserVerifier or %NULL if not connected
1220
+ */
1221
+ get_user_verifier_sync(cancellable: Gio.Cancellable | null): UserVerifier
1222
+ /**
1223
+ * Gets a #GdmUserVerifier object that can be used to
1224
+ * reauthenticate an already logged in user.
1225
+ * @param username user to reauthenticate
1226
+ * @param cancellable a #GCancellable
1227
+ * @param callback a #GAsyncReadyCallback to call when the request is satisfied
1228
+ */
1229
+ open_reauthentication_channel(username: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<this> | null): void
1230
+ /**
1231
+ * Finishes an operation started with
1232
+ * gdm_client_open_reauthentication_channel().
1233
+ * @param result The #GAsyncResult from the callback
1234
+ * @returns a #GdmUserVerifier
1235
+ */
1236
+ open_reauthentication_channel_finish(result: Gio.AsyncResult): UserVerifier
1237
+ /**
1238
+ * Gets a #GdmUserVerifier object that can be used to
1239
+ * reauthenticate an already logged in user. Free with
1240
+ * g_object_unref to close reauthentication channel.
1241
+ * @param username user to reauthenticate
1242
+ * @param cancellable a #GCancellable
1243
+ * @returns #GdmUserVerifier or %NULL if @username is not already logged in.
1244
+ */
1245
+ open_reauthentication_channel_sync(username: string | null, cancellable: Gio.Cancellable | null): UserVerifier
1246
+ /**
1247
+ * Enables GDM's pam extensions. Currently, only
1248
+ * org.gnome.DisplayManager.UserVerifier.ChoiceList is supported.
1249
+ * @param extensions a list of extensions
1250
+ */
1251
+ set_enabled_extensions(extensions: string[]): void
1252
+
1253
+ // Class property signals of Gdm-1.0.Gdm.Client
1254
+
1255
+ connect(sigName: string, callback: (...args: any[]) => void): number
1256
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1257
+ emit(sigName: string, ...args: any[]): void
1258
+ disconnect(id: number): void
1259
+ }
1260
+
1261
+ class Client extends GObject.Object {
1262
+
1263
+ // Own properties of Gdm-1.0.Gdm.Client
1264
+
1265
+ static name: string
1266
+ static $gtype: GObject.GType<Client>
1267
+
1268
+ // Constructors of Gdm-1.0.Gdm.Client
1269
+
1270
+ constructor(config?: Client.ConstructorProperties)
1271
+ constructor()
1272
+ static new(): Client
1273
+ _init(config?: Client.ConstructorProperties): void
1274
+ static error_quark(): GLib.Quark
1275
+ }
1276
+
1277
+ module GreeterProxy {
1278
+
1279
+ // Constructor properties interface
1280
+
1281
+ interface ConstructorProperties extends Greeter.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
1282
+ }
1283
+
1284
+ }
1285
+
1286
+ interface GreeterProxy extends Greeter, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
1287
+
1288
+ // Class property signals of Gdm-1.0.Gdm.GreeterProxy
1289
+
1290
+ connect(sigName: "notify::g-bus-type", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1291
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1292
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
1293
+ connect(sigName: "notify::g-connection", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1294
+ connect_after(sigName: "notify::g-connection", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1295
+ emit(sigName: "notify::g-connection", ...args: any[]): void
1296
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1297
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1298
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
1299
+ connect(sigName: "notify::g-flags", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1300
+ connect_after(sigName: "notify::g-flags", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1301
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1302
+ connect(sigName: "notify::g-interface-info", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1303
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1304
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
1305
+ connect(sigName: "notify::g-interface-name", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1306
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1307
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
1308
+ connect(sigName: "notify::g-name", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1309
+ connect_after(sigName: "notify::g-name", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1310
+ emit(sigName: "notify::g-name", ...args: any[]): void
1311
+ connect(sigName: "notify::g-name-owner", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1312
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1313
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
1314
+ connect(sigName: "notify::g-object-path", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1315
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: GreeterProxy, pspec: GObject.ParamSpec) => void)): number
1316
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
1317
+ connect(sigName: string, callback: (...args: any[]) => void): number
1318
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1319
+ emit(sigName: string, ...args: any[]): void
1320
+ disconnect(id: number): void
1321
+ }
1322
+
1323
+ class GreeterProxy extends Gio.DBusProxy {
1324
+
1325
+ // Own properties of Gdm-1.0.Gdm.GreeterProxy
1326
+
1327
+ static name: string
1328
+ static $gtype: GObject.GType<GreeterProxy>
1329
+
1330
+ // Constructors of Gdm-1.0.Gdm.GreeterProxy
1331
+
1332
+ constructor(config?: GreeterProxy.ConstructorProperties)
1333
+ _init(config?: GreeterProxy.ConstructorProperties): void
1334
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<GreeterProxy> | null): void
1335
+
1336
+ // Overloads of new
1337
+
1338
+ /**
1339
+ * Creates a proxy for accessing `interface_name` on the remote object
1340
+ * at `object_path` owned by `name` at `connection` and asynchronously
1341
+ * loads D-Bus properties unless the
1342
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
1343
+ * the #GDBusProxy::g-properties-changed signal to get notified about
1344
+ * property changes.
1345
+ *
1346
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
1347
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
1348
+ * to handle signals from the remote object.
1349
+ *
1350
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
1351
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
1352
+ * guaranteed to complete immediately without blocking.
1353
+ *
1354
+ * If `name` is a well-known name and the
1355
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
1356
+ * flags aren't set and no name owner currently exists, the message bus
1357
+ * will be requested to launch a name owner for the name.
1358
+ *
1359
+ * This is a failable asynchronous constructor - when the proxy is
1360
+ * ready, `callback` will be invoked and you can use
1361
+ * g_dbus_proxy_new_finish() to get the result.
1362
+ *
1363
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
1364
+ *
1365
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1366
+ * @param connection A #GDBusConnection.
1367
+ * @param flags Flags used when constructing the proxy.
1368
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1369
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
1370
+ * @param object_path An object path.
1371
+ * @param interface_name A D-Bus interface name.
1372
+ * @param cancellable A #GCancellable or %NULL.
1373
+ * @param callback Callback function to invoke when the proxy is ready.
1374
+ */
1375
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1376
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<GreeterProxy> | null): void
1377
+
1378
+ // Overloads of new_for_bus
1379
+
1380
+ /**
1381
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
1382
+ *
1383
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1384
+ * @param bus_type A #GBusType.
1385
+ * @param flags Flags used when constructing the proxy.
1386
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1387
+ * @param name A bus name (well-known or unique).
1388
+ * @param object_path An object path.
1389
+ * @param interface_name A D-Bus interface name.
1390
+ * @param cancellable A #GCancellable or %NULL.
1391
+ * @param callback Callback function to invoke when the proxy is ready.
1392
+ */
1393
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1394
+ }
1395
+
1396
+ module GreeterSkeleton {
1397
+
1398
+ // Constructor properties interface
1399
+
1400
+ interface ConstructorProperties extends Greeter.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
1401
+ }
1402
+
1403
+ }
1404
+
1405
+ interface GreeterSkeleton extends Greeter, Gio.DBusInterface {
1406
+
1407
+ // Class property signals of Gdm-1.0.Gdm.GreeterSkeleton
1408
+
1409
+ connect(sigName: "notify::g-flags", callback: (($obj: GreeterSkeleton, pspec: GObject.ParamSpec) => void)): number
1410
+ connect_after(sigName: "notify::g-flags", callback: (($obj: GreeterSkeleton, pspec: GObject.ParamSpec) => void)): number
1411
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1412
+ connect(sigName: string, callback: (...args: any[]) => void): number
1413
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1414
+ emit(sigName: string, ...args: any[]): void
1415
+ disconnect(id: number): void
1416
+ }
1417
+
1418
+ class GreeterSkeleton extends Gio.DBusInterfaceSkeleton {
1419
+
1420
+ // Own properties of Gdm-1.0.Gdm.GreeterSkeleton
1421
+
1422
+ static name: string
1423
+ static $gtype: GObject.GType<GreeterSkeleton>
1424
+
1425
+ // Constructors of Gdm-1.0.Gdm.GreeterSkeleton
1426
+
1427
+ constructor(config?: GreeterSkeleton.ConstructorProperties)
1428
+ _init(config?: GreeterSkeleton.ConstructorProperties): void
1429
+ }
1430
+
1431
+ module ManagerProxy {
1432
+
1433
+ // Constructor properties interface
1434
+
1435
+ interface ConstructorProperties extends Manager.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
1436
+ }
1437
+
1438
+ }
1439
+
1440
+ interface ManagerProxy extends Manager, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
1441
+
1442
+ // Class property signals of Gdm-1.0.Gdm.ManagerProxy
1443
+
1444
+ connect(sigName: "notify::g-bus-type", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1445
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1446
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
1447
+ connect(sigName: "notify::g-connection", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1448
+ connect_after(sigName: "notify::g-connection", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1449
+ emit(sigName: "notify::g-connection", ...args: any[]): void
1450
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1451
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1452
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
1453
+ connect(sigName: "notify::g-flags", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1454
+ connect_after(sigName: "notify::g-flags", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1455
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1456
+ connect(sigName: "notify::g-interface-info", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1457
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1458
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
1459
+ connect(sigName: "notify::g-interface-name", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1460
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1461
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
1462
+ connect(sigName: "notify::g-name", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1463
+ connect_after(sigName: "notify::g-name", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1464
+ emit(sigName: "notify::g-name", ...args: any[]): void
1465
+ connect(sigName: "notify::g-name-owner", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1466
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1467
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
1468
+ connect(sigName: "notify::g-object-path", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1469
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1470
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
1471
+ connect(sigName: "notify::version", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1472
+ connect_after(sigName: "notify::version", callback: (($obj: ManagerProxy, pspec: GObject.ParamSpec) => void)): number
1473
+ emit(sigName: "notify::version", ...args: any[]): void
1474
+ connect(sigName: string, callback: (...args: any[]) => void): number
1475
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1476
+ emit(sigName: string, ...args: any[]): void
1477
+ disconnect(id: number): void
1478
+ }
1479
+
1480
+ class ManagerProxy extends Gio.DBusProxy {
1481
+
1482
+ // Own properties of Gdm-1.0.Gdm.ManagerProxy
1483
+
1484
+ static name: string
1485
+ static $gtype: GObject.GType<ManagerProxy>
1486
+
1487
+ // Constructors of Gdm-1.0.Gdm.ManagerProxy
1488
+
1489
+ constructor(config?: ManagerProxy.ConstructorProperties)
1490
+ _init(config?: ManagerProxy.ConstructorProperties): void
1491
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<ManagerProxy> | null): void
1492
+
1493
+ // Overloads of new
1494
+
1495
+ /**
1496
+ * Creates a proxy for accessing `interface_name` on the remote object
1497
+ * at `object_path` owned by `name` at `connection` and asynchronously
1498
+ * loads D-Bus properties unless the
1499
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
1500
+ * the #GDBusProxy::g-properties-changed signal to get notified about
1501
+ * property changes.
1502
+ *
1503
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
1504
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
1505
+ * to handle signals from the remote object.
1506
+ *
1507
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
1508
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
1509
+ * guaranteed to complete immediately without blocking.
1510
+ *
1511
+ * If `name` is a well-known name and the
1512
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
1513
+ * flags aren't set and no name owner currently exists, the message bus
1514
+ * will be requested to launch a name owner for the name.
1515
+ *
1516
+ * This is a failable asynchronous constructor - when the proxy is
1517
+ * ready, `callback` will be invoked and you can use
1518
+ * g_dbus_proxy_new_finish() to get the result.
1519
+ *
1520
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
1521
+ *
1522
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1523
+ * @param connection A #GDBusConnection.
1524
+ * @param flags Flags used when constructing the proxy.
1525
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1526
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
1527
+ * @param object_path An object path.
1528
+ * @param interface_name A D-Bus interface name.
1529
+ * @param cancellable A #GCancellable or %NULL.
1530
+ * @param callback Callback function to invoke when the proxy is ready.
1531
+ */
1532
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1533
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<ManagerProxy> | null): void
1534
+
1535
+ // Overloads of new_for_bus
1536
+
1537
+ /**
1538
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
1539
+ *
1540
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1541
+ * @param bus_type A #GBusType.
1542
+ * @param flags Flags used when constructing the proxy.
1543
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1544
+ * @param name A bus name (well-known or unique).
1545
+ * @param object_path An object path.
1546
+ * @param interface_name A D-Bus interface name.
1547
+ * @param cancellable A #GCancellable or %NULL.
1548
+ * @param callback Callback function to invoke when the proxy is ready.
1549
+ */
1550
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1551
+ }
1552
+
1553
+ module ManagerSkeleton {
1554
+
1555
+ // Constructor properties interface
1556
+
1557
+ interface ConstructorProperties extends Manager.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
1558
+ }
1559
+
1560
+ }
1561
+
1562
+ interface ManagerSkeleton extends Manager, Gio.DBusInterface {
1563
+
1564
+ // Class property signals of Gdm-1.0.Gdm.ManagerSkeleton
1565
+
1566
+ connect(sigName: "notify::g-flags", callback: (($obj: ManagerSkeleton, pspec: GObject.ParamSpec) => void)): number
1567
+ connect_after(sigName: "notify::g-flags", callback: (($obj: ManagerSkeleton, pspec: GObject.ParamSpec) => void)): number
1568
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1569
+ connect(sigName: "notify::version", callback: (($obj: ManagerSkeleton, pspec: GObject.ParamSpec) => void)): number
1570
+ connect_after(sigName: "notify::version", callback: (($obj: ManagerSkeleton, pspec: GObject.ParamSpec) => void)): number
1571
+ emit(sigName: "notify::version", ...args: any[]): void
1572
+ connect(sigName: string, callback: (...args: any[]) => void): number
1573
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1574
+ emit(sigName: string, ...args: any[]): void
1575
+ disconnect(id: number): void
1576
+ }
1577
+
1578
+ class ManagerSkeleton extends Gio.DBusInterfaceSkeleton {
1579
+
1580
+ // Own properties of Gdm-1.0.Gdm.ManagerSkeleton
1581
+
1582
+ static name: string
1583
+ static $gtype: GObject.GType<ManagerSkeleton>
1584
+
1585
+ // Constructors of Gdm-1.0.Gdm.ManagerSkeleton
1586
+
1587
+ constructor(config?: ManagerSkeleton.ConstructorProperties)
1588
+ _init(config?: ManagerSkeleton.ConstructorProperties): void
1589
+ }
1590
+
1591
+ module RemoteGreeterProxy {
1592
+
1593
+ // Constructor properties interface
1594
+
1595
+ interface ConstructorProperties extends RemoteGreeter.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
1596
+ }
1597
+
1598
+ }
1599
+
1600
+ interface RemoteGreeterProxy extends RemoteGreeter, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
1601
+
1602
+ // Class property signals of Gdm-1.0.Gdm.RemoteGreeterProxy
1603
+
1604
+ connect(sigName: "notify::g-bus-type", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1605
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1606
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
1607
+ connect(sigName: "notify::g-connection", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1608
+ connect_after(sigName: "notify::g-connection", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1609
+ emit(sigName: "notify::g-connection", ...args: any[]): void
1610
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1611
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1612
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
1613
+ connect(sigName: "notify::g-flags", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1614
+ connect_after(sigName: "notify::g-flags", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1615
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1616
+ connect(sigName: "notify::g-interface-info", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1617
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1618
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
1619
+ connect(sigName: "notify::g-interface-name", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1620
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1621
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
1622
+ connect(sigName: "notify::g-name", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1623
+ connect_after(sigName: "notify::g-name", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1624
+ emit(sigName: "notify::g-name", ...args: any[]): void
1625
+ connect(sigName: "notify::g-name-owner", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1626
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1627
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
1628
+ connect(sigName: "notify::g-object-path", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1629
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: RemoteGreeterProxy, pspec: GObject.ParamSpec) => void)): number
1630
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
1631
+ connect(sigName: string, callback: (...args: any[]) => void): number
1632
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1633
+ emit(sigName: string, ...args: any[]): void
1634
+ disconnect(id: number): void
1635
+ }
1636
+
1637
+ class RemoteGreeterProxy extends Gio.DBusProxy {
1638
+
1639
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterProxy
1640
+
1641
+ static name: string
1642
+ static $gtype: GObject.GType<RemoteGreeterProxy>
1643
+
1644
+ // Constructors of Gdm-1.0.Gdm.RemoteGreeterProxy
1645
+
1646
+ constructor(config?: RemoteGreeterProxy.ConstructorProperties)
1647
+ _init(config?: RemoteGreeterProxy.ConstructorProperties): void
1648
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<RemoteGreeterProxy> | null): void
1649
+
1650
+ // Overloads of new
1651
+
1652
+ /**
1653
+ * Creates a proxy for accessing `interface_name` on the remote object
1654
+ * at `object_path` owned by `name` at `connection` and asynchronously
1655
+ * loads D-Bus properties unless the
1656
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
1657
+ * the #GDBusProxy::g-properties-changed signal to get notified about
1658
+ * property changes.
1659
+ *
1660
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
1661
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
1662
+ * to handle signals from the remote object.
1663
+ *
1664
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
1665
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
1666
+ * guaranteed to complete immediately without blocking.
1667
+ *
1668
+ * If `name` is a well-known name and the
1669
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
1670
+ * flags aren't set and no name owner currently exists, the message bus
1671
+ * will be requested to launch a name owner for the name.
1672
+ *
1673
+ * This is a failable asynchronous constructor - when the proxy is
1674
+ * ready, `callback` will be invoked and you can use
1675
+ * g_dbus_proxy_new_finish() to get the result.
1676
+ *
1677
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
1678
+ *
1679
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1680
+ * @param connection A #GDBusConnection.
1681
+ * @param flags Flags used when constructing the proxy.
1682
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1683
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
1684
+ * @param object_path An object path.
1685
+ * @param interface_name A D-Bus interface name.
1686
+ * @param cancellable A #GCancellable or %NULL.
1687
+ * @param callback Callback function to invoke when the proxy is ready.
1688
+ */
1689
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1690
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<RemoteGreeterProxy> | null): void
1691
+
1692
+ // Overloads of new_for_bus
1693
+
1694
+ /**
1695
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
1696
+ *
1697
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1698
+ * @param bus_type A #GBusType.
1699
+ * @param flags Flags used when constructing the proxy.
1700
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1701
+ * @param name A bus name (well-known or unique).
1702
+ * @param object_path An object path.
1703
+ * @param interface_name A D-Bus interface name.
1704
+ * @param cancellable A #GCancellable or %NULL.
1705
+ * @param callback Callback function to invoke when the proxy is ready.
1706
+ */
1707
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1708
+ }
1709
+
1710
+ module RemoteGreeterSkeleton {
1711
+
1712
+ // Constructor properties interface
1713
+
1714
+ interface ConstructorProperties extends RemoteGreeter.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
1715
+ }
1716
+
1717
+ }
1718
+
1719
+ interface RemoteGreeterSkeleton extends RemoteGreeter, Gio.DBusInterface {
1720
+
1721
+ // Class property signals of Gdm-1.0.Gdm.RemoteGreeterSkeleton
1722
+
1723
+ connect(sigName: "notify::g-flags", callback: (($obj: RemoteGreeterSkeleton, pspec: GObject.ParamSpec) => void)): number
1724
+ connect_after(sigName: "notify::g-flags", callback: (($obj: RemoteGreeterSkeleton, pspec: GObject.ParamSpec) => void)): number
1725
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1726
+ connect(sigName: string, callback: (...args: any[]) => void): number
1727
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1728
+ emit(sigName: string, ...args: any[]): void
1729
+ disconnect(id: number): void
1730
+ }
1731
+
1732
+ class RemoteGreeterSkeleton extends Gio.DBusInterfaceSkeleton {
1733
+
1734
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterSkeleton
1735
+
1736
+ static name: string
1737
+ static $gtype: GObject.GType<RemoteGreeterSkeleton>
1738
+
1739
+ // Constructors of Gdm-1.0.Gdm.RemoteGreeterSkeleton
1740
+
1741
+ constructor(config?: RemoteGreeterSkeleton.ConstructorProperties)
1742
+ _init(config?: RemoteGreeterSkeleton.ConstructorProperties): void
1743
+ }
1744
+
1745
+ module UserVerifierChoiceListProxy {
1746
+
1747
+ // Constructor properties interface
1748
+
1749
+ interface ConstructorProperties extends UserVerifierChoiceList.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
1750
+ }
1751
+
1752
+ }
1753
+
1754
+ interface UserVerifierChoiceListProxy extends UserVerifierChoiceList, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
1755
+
1756
+ // Class property signals of Gdm-1.0.Gdm.UserVerifierChoiceListProxy
1757
+
1758
+ connect(sigName: "notify::g-bus-type", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1759
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1760
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
1761
+ connect(sigName: "notify::g-connection", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1762
+ connect_after(sigName: "notify::g-connection", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1763
+ emit(sigName: "notify::g-connection", ...args: any[]): void
1764
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1765
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1766
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
1767
+ connect(sigName: "notify::g-flags", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1768
+ connect_after(sigName: "notify::g-flags", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1769
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1770
+ connect(sigName: "notify::g-interface-info", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1771
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1772
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
1773
+ connect(sigName: "notify::g-interface-name", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1774
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1775
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
1776
+ connect(sigName: "notify::g-name", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1777
+ connect_after(sigName: "notify::g-name", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1778
+ emit(sigName: "notify::g-name", ...args: any[]): void
1779
+ connect(sigName: "notify::g-name-owner", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1780
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1781
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
1782
+ connect(sigName: "notify::g-object-path", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1783
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: UserVerifierChoiceListProxy, pspec: GObject.ParamSpec) => void)): number
1784
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
1785
+ connect(sigName: string, callback: (...args: any[]) => void): number
1786
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1787
+ emit(sigName: string, ...args: any[]): void
1788
+ disconnect(id: number): void
1789
+ }
1790
+
1791
+ class UserVerifierChoiceListProxy extends Gio.DBusProxy {
1792
+
1793
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListProxy
1794
+
1795
+ static name: string
1796
+ static $gtype: GObject.GType<UserVerifierChoiceListProxy>
1797
+
1798
+ // Constructors of Gdm-1.0.Gdm.UserVerifierChoiceListProxy
1799
+
1800
+ constructor(config?: UserVerifierChoiceListProxy.ConstructorProperties)
1801
+ _init(config?: UserVerifierChoiceListProxy.ConstructorProperties): void
1802
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<UserVerifierChoiceListProxy> | null): void
1803
+
1804
+ // Overloads of new
1805
+
1806
+ /**
1807
+ * Creates a proxy for accessing `interface_name` on the remote object
1808
+ * at `object_path` owned by `name` at `connection` and asynchronously
1809
+ * loads D-Bus properties unless the
1810
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
1811
+ * the #GDBusProxy::g-properties-changed signal to get notified about
1812
+ * property changes.
1813
+ *
1814
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
1815
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
1816
+ * to handle signals from the remote object.
1817
+ *
1818
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
1819
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
1820
+ * guaranteed to complete immediately without blocking.
1821
+ *
1822
+ * If `name` is a well-known name and the
1823
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
1824
+ * flags aren't set and no name owner currently exists, the message bus
1825
+ * will be requested to launch a name owner for the name.
1826
+ *
1827
+ * This is a failable asynchronous constructor - when the proxy is
1828
+ * ready, `callback` will be invoked and you can use
1829
+ * g_dbus_proxy_new_finish() to get the result.
1830
+ *
1831
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
1832
+ *
1833
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1834
+ * @param connection A #GDBusConnection.
1835
+ * @param flags Flags used when constructing the proxy.
1836
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1837
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
1838
+ * @param object_path An object path.
1839
+ * @param interface_name A D-Bus interface name.
1840
+ * @param cancellable A #GCancellable or %NULL.
1841
+ * @param callback Callback function to invoke when the proxy is ready.
1842
+ */
1843
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1844
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<UserVerifierChoiceListProxy> | null): void
1845
+
1846
+ // Overloads of new_for_bus
1847
+
1848
+ /**
1849
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
1850
+ *
1851
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1852
+ * @param bus_type A #GBusType.
1853
+ * @param flags Flags used when constructing the proxy.
1854
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1855
+ * @param name A bus name (well-known or unique).
1856
+ * @param object_path An object path.
1857
+ * @param interface_name A D-Bus interface name.
1858
+ * @param cancellable A #GCancellable or %NULL.
1859
+ * @param callback Callback function to invoke when the proxy is ready.
1860
+ */
1861
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1862
+ }
1863
+
1864
+ module UserVerifierChoiceListSkeleton {
1865
+
1866
+ // Constructor properties interface
1867
+
1868
+ interface ConstructorProperties extends UserVerifierChoiceList.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
1869
+ }
1870
+
1871
+ }
1872
+
1873
+ interface UserVerifierChoiceListSkeleton extends UserVerifierChoiceList, Gio.DBusInterface {
1874
+
1875
+ // Class property signals of Gdm-1.0.Gdm.UserVerifierChoiceListSkeleton
1876
+
1877
+ connect(sigName: "notify::g-flags", callback: (($obj: UserVerifierChoiceListSkeleton, pspec: GObject.ParamSpec) => void)): number
1878
+ connect_after(sigName: "notify::g-flags", callback: (($obj: UserVerifierChoiceListSkeleton, pspec: GObject.ParamSpec) => void)): number
1879
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1880
+ connect(sigName: string, callback: (...args: any[]) => void): number
1881
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1882
+ emit(sigName: string, ...args: any[]): void
1883
+ disconnect(id: number): void
1884
+ }
1885
+
1886
+ class UserVerifierChoiceListSkeleton extends Gio.DBusInterfaceSkeleton {
1887
+
1888
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListSkeleton
1889
+
1890
+ static name: string
1891
+ static $gtype: GObject.GType<UserVerifierChoiceListSkeleton>
1892
+
1893
+ // Constructors of Gdm-1.0.Gdm.UserVerifierChoiceListSkeleton
1894
+
1895
+ constructor(config?: UserVerifierChoiceListSkeleton.ConstructorProperties)
1896
+ _init(config?: UserVerifierChoiceListSkeleton.ConstructorProperties): void
1897
+ }
1898
+
1899
+ module UserVerifierProxy {
1900
+
1901
+ // Constructor properties interface
1902
+
1903
+ interface ConstructorProperties extends UserVerifier.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
1904
+ }
1905
+
1906
+ }
1907
+
1908
+ interface UserVerifierProxy extends UserVerifier, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
1909
+
1910
+ // Class property signals of Gdm-1.0.Gdm.UserVerifierProxy
1911
+
1912
+ connect(sigName: "notify::g-bus-type", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1913
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1914
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
1915
+ connect(sigName: "notify::g-connection", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1916
+ connect_after(sigName: "notify::g-connection", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1917
+ emit(sigName: "notify::g-connection", ...args: any[]): void
1918
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1919
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1920
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
1921
+ connect(sigName: "notify::g-flags", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1922
+ connect_after(sigName: "notify::g-flags", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1923
+ emit(sigName: "notify::g-flags", ...args: any[]): void
1924
+ connect(sigName: "notify::g-interface-info", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1925
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1926
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
1927
+ connect(sigName: "notify::g-interface-name", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1928
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1929
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
1930
+ connect(sigName: "notify::g-name", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1931
+ connect_after(sigName: "notify::g-name", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1932
+ emit(sigName: "notify::g-name", ...args: any[]): void
1933
+ connect(sigName: "notify::g-name-owner", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1934
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1935
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
1936
+ connect(sigName: "notify::g-object-path", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1937
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: UserVerifierProxy, pspec: GObject.ParamSpec) => void)): number
1938
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
1939
+ connect(sigName: string, callback: (...args: any[]) => void): number
1940
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1941
+ emit(sigName: string, ...args: any[]): void
1942
+ disconnect(id: number): void
1943
+ }
1944
+
1945
+ class UserVerifierProxy extends Gio.DBusProxy {
1946
+
1947
+ // Own properties of Gdm-1.0.Gdm.UserVerifierProxy
1948
+
1949
+ static name: string
1950
+ static $gtype: GObject.GType<UserVerifierProxy>
1951
+
1952
+ // Constructors of Gdm-1.0.Gdm.UserVerifierProxy
1953
+
1954
+ constructor(config?: UserVerifierProxy.ConstructorProperties)
1955
+ _init(config?: UserVerifierProxy.ConstructorProperties): void
1956
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<UserVerifierProxy> | null): void
1957
+
1958
+ // Overloads of new
1959
+
1960
+ /**
1961
+ * Creates a proxy for accessing `interface_name` on the remote object
1962
+ * at `object_path` owned by `name` at `connection` and asynchronously
1963
+ * loads D-Bus properties unless the
1964
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
1965
+ * the #GDBusProxy::g-properties-changed signal to get notified about
1966
+ * property changes.
1967
+ *
1968
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
1969
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
1970
+ * to handle signals from the remote object.
1971
+ *
1972
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
1973
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
1974
+ * guaranteed to complete immediately without blocking.
1975
+ *
1976
+ * If `name` is a well-known name and the
1977
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
1978
+ * flags aren't set and no name owner currently exists, the message bus
1979
+ * will be requested to launch a name owner for the name.
1980
+ *
1981
+ * This is a failable asynchronous constructor - when the proxy is
1982
+ * ready, `callback` will be invoked and you can use
1983
+ * g_dbus_proxy_new_finish() to get the result.
1984
+ *
1985
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
1986
+ *
1987
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
1988
+ * @param connection A #GDBusConnection.
1989
+ * @param flags Flags used when constructing the proxy.
1990
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
1991
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
1992
+ * @param object_path An object path.
1993
+ * @param interface_name A D-Bus interface name.
1994
+ * @param cancellable A #GCancellable or %NULL.
1995
+ * @param callback Callback function to invoke when the proxy is ready.
1996
+ */
1997
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
1998
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<UserVerifierProxy> | null): void
1999
+
2000
+ // Overloads of new_for_bus
2001
+
2002
+ /**
2003
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
2004
+ *
2005
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
2006
+ * @param bus_type A #GBusType.
2007
+ * @param flags Flags used when constructing the proxy.
2008
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
2009
+ * @param name A bus name (well-known or unique).
2010
+ * @param object_path An object path.
2011
+ * @param interface_name A D-Bus interface name.
2012
+ * @param cancellable A #GCancellable or %NULL.
2013
+ * @param callback Callback function to invoke when the proxy is ready.
2014
+ */
2015
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
2016
+ }
2017
+
2018
+ module UserVerifierSkeleton {
2019
+
2020
+ // Constructor properties interface
2021
+
2022
+ interface ConstructorProperties extends UserVerifier.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
2023
+ }
2024
+
2025
+ }
2026
+
2027
+ interface UserVerifierSkeleton extends UserVerifier, Gio.DBusInterface {
2028
+
2029
+ // Class property signals of Gdm-1.0.Gdm.UserVerifierSkeleton
2030
+
2031
+ connect(sigName: "notify::g-flags", callback: (($obj: UserVerifierSkeleton, pspec: GObject.ParamSpec) => void)): number
2032
+ connect_after(sigName: "notify::g-flags", callback: (($obj: UserVerifierSkeleton, pspec: GObject.ParamSpec) => void)): number
2033
+ emit(sigName: "notify::g-flags", ...args: any[]): void
2034
+ connect(sigName: string, callback: (...args: any[]) => void): number
2035
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2036
+ emit(sigName: string, ...args: any[]): void
2037
+ disconnect(id: number): void
2038
+ }
2039
+
2040
+ class UserVerifierSkeleton extends Gio.DBusInterfaceSkeleton {
2041
+
2042
+ // Own properties of Gdm-1.0.Gdm.UserVerifierSkeleton
2043
+
2044
+ static name: string
2045
+ static $gtype: GObject.GType<UserVerifierSkeleton>
2046
+
2047
+ // Constructors of Gdm-1.0.Gdm.UserVerifierSkeleton
2048
+
2049
+ constructor(config?: UserVerifierSkeleton.ConstructorProperties)
2050
+ _init(config?: UserVerifierSkeleton.ConstructorProperties): void
2051
+ }
2052
+
2053
+ module WorkerManagerProxy {
2054
+
2055
+ // Constructor properties interface
2056
+
2057
+ interface ConstructorProperties extends WorkerManager.ConstructorProperties, Gio.AsyncInitable.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.Initable.ConstructorProperties, Gio.DBusProxy.ConstructorProperties {
2058
+ }
2059
+
2060
+ }
2061
+
2062
+ interface WorkerManagerProxy extends WorkerManager, Gio.AsyncInitable, Gio.DBusInterface, Gio.Initable {
2063
+
2064
+ // Class property signals of Gdm-1.0.Gdm.WorkerManagerProxy
2065
+
2066
+ connect(sigName: "notify::g-bus-type", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2067
+ connect_after(sigName: "notify::g-bus-type", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2068
+ emit(sigName: "notify::g-bus-type", ...args: any[]): void
2069
+ connect(sigName: "notify::g-connection", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2070
+ connect_after(sigName: "notify::g-connection", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2071
+ emit(sigName: "notify::g-connection", ...args: any[]): void
2072
+ connect(sigName: "notify::g-default-timeout", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2073
+ connect_after(sigName: "notify::g-default-timeout", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2074
+ emit(sigName: "notify::g-default-timeout", ...args: any[]): void
2075
+ connect(sigName: "notify::g-flags", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2076
+ connect_after(sigName: "notify::g-flags", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2077
+ emit(sigName: "notify::g-flags", ...args: any[]): void
2078
+ connect(sigName: "notify::g-interface-info", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2079
+ connect_after(sigName: "notify::g-interface-info", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2080
+ emit(sigName: "notify::g-interface-info", ...args: any[]): void
2081
+ connect(sigName: "notify::g-interface-name", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2082
+ connect_after(sigName: "notify::g-interface-name", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2083
+ emit(sigName: "notify::g-interface-name", ...args: any[]): void
2084
+ connect(sigName: "notify::g-name", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2085
+ connect_after(sigName: "notify::g-name", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2086
+ emit(sigName: "notify::g-name", ...args: any[]): void
2087
+ connect(sigName: "notify::g-name-owner", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2088
+ connect_after(sigName: "notify::g-name-owner", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2089
+ emit(sigName: "notify::g-name-owner", ...args: any[]): void
2090
+ connect(sigName: "notify::g-object-path", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2091
+ connect_after(sigName: "notify::g-object-path", callback: (($obj: WorkerManagerProxy, pspec: GObject.ParamSpec) => void)): number
2092
+ emit(sigName: "notify::g-object-path", ...args: any[]): void
2093
+ connect(sigName: string, callback: (...args: any[]) => void): number
2094
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2095
+ emit(sigName: string, ...args: any[]): void
2096
+ disconnect(id: number): void
2097
+ }
2098
+
2099
+ class WorkerManagerProxy extends Gio.DBusProxy {
2100
+
2101
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerProxy
2102
+
2103
+ static name: string
2104
+ static $gtype: GObject.GType<WorkerManagerProxy>
2105
+
2106
+ // Constructors of Gdm-1.0.Gdm.WorkerManagerProxy
2107
+
2108
+ constructor(config?: WorkerManagerProxy.ConstructorProperties)
2109
+ _init(config?: WorkerManagerProxy.ConstructorProperties): void
2110
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<WorkerManagerProxy> | null): void
2111
+
2112
+ // Overloads of new
2113
+
2114
+ /**
2115
+ * Creates a proxy for accessing `interface_name` on the remote object
2116
+ * at `object_path` owned by `name` at `connection` and asynchronously
2117
+ * loads D-Bus properties unless the
2118
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES flag is used. Connect to
2119
+ * the #GDBusProxy::g-properties-changed signal to get notified about
2120
+ * property changes.
2121
+ *
2122
+ * If the %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS flag is not set, also sets up
2123
+ * match rules for signals. Connect to the #GDBusProxy::g-signal signal
2124
+ * to handle signals from the remote object.
2125
+ *
2126
+ * If both %G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES and
2127
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS are set, this constructor is
2128
+ * guaranteed to complete immediately without blocking.
2129
+ *
2130
+ * If `name` is a well-known name and the
2131
+ * %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START and %G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION
2132
+ * flags aren't set and no name owner currently exists, the message bus
2133
+ * will be requested to launch a name owner for the name.
2134
+ *
2135
+ * This is a failable asynchronous constructor - when the proxy is
2136
+ * ready, `callback` will be invoked and you can use
2137
+ * g_dbus_proxy_new_finish() to get the result.
2138
+ *
2139
+ * See g_dbus_proxy_new_sync() and for a synchronous version of this constructor.
2140
+ *
2141
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
2142
+ * @param connection A #GDBusConnection.
2143
+ * @param flags Flags used when constructing the proxy.
2144
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
2145
+ * @param name A bus name (well-known or unique) or %NULL if `connection` is not a message bus connection.
2146
+ * @param object_path An object path.
2147
+ * @param interface_name A D-Bus interface name.
2148
+ * @param cancellable A #GCancellable or %NULL.
2149
+ * @param callback Callback function to invoke when the proxy is ready.
2150
+ */
2151
+ static new(connection: Gio.DBusConnection, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
2152
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, name: string | null, object_path: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<WorkerManagerProxy> | null): void
2153
+
2154
+ // Overloads of new_for_bus
2155
+
2156
+ /**
2157
+ * Like g_dbus_proxy_new() but takes a #GBusType instead of a #GDBusConnection.
2158
+ *
2159
+ * #GDBusProxy is used in this [example][gdbus-wellknown-proxy].
2160
+ * @param bus_type A #GBusType.
2161
+ * @param flags Flags used when constructing the proxy.
2162
+ * @param info A #GDBusInterfaceInfo specifying the minimal interface that `proxy` conforms to or %NULL.
2163
+ * @param name A bus name (well-known or unique).
2164
+ * @param object_path An object path.
2165
+ * @param interface_name A D-Bus interface name.
2166
+ * @param cancellable A #GCancellable or %NULL.
2167
+ * @param callback Callback function to invoke when the proxy is ready.
2168
+ */
2169
+ static new_for_bus(bus_type: Gio.BusType, flags: Gio.DBusProxyFlags, info: Gio.DBusInterfaceInfo | null, name: string | null, object_path: string | null, interface_name: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<Gio.DBusProxy> | null): void
2170
+ }
2171
+
2172
+ module WorkerManagerSkeleton {
2173
+
2174
+ // Constructor properties interface
2175
+
2176
+ interface ConstructorProperties extends WorkerManager.ConstructorProperties, Gio.DBusInterface.ConstructorProperties, Gio.DBusInterfaceSkeleton.ConstructorProperties {
2177
+ }
2178
+
2179
+ }
2180
+
2181
+ interface WorkerManagerSkeleton extends WorkerManager, Gio.DBusInterface {
2182
+
2183
+ // Class property signals of Gdm-1.0.Gdm.WorkerManagerSkeleton
2184
+
2185
+ connect(sigName: "notify::g-flags", callback: (($obj: WorkerManagerSkeleton, pspec: GObject.ParamSpec) => void)): number
2186
+ connect_after(sigName: "notify::g-flags", callback: (($obj: WorkerManagerSkeleton, pspec: GObject.ParamSpec) => void)): number
2187
+ emit(sigName: "notify::g-flags", ...args: any[]): void
2188
+ connect(sigName: string, callback: (...args: any[]) => void): number
2189
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
2190
+ emit(sigName: string, ...args: any[]): void
2191
+ disconnect(id: number): void
2192
+ }
2193
+
2194
+ class WorkerManagerSkeleton extends Gio.DBusInterfaceSkeleton {
2195
+
2196
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerSkeleton
2197
+
2198
+ static name: string
2199
+ static $gtype: GObject.GType<WorkerManagerSkeleton>
2200
+
2201
+ // Constructors of Gdm-1.0.Gdm.WorkerManagerSkeleton
2202
+
2203
+ constructor(config?: WorkerManagerSkeleton.ConstructorProperties)
2204
+ _init(config?: WorkerManagerSkeleton.ConstructorProperties): void
2205
+ }
2206
+
2207
+ interface ChooserIface {
2208
+
2209
+ // Own fields of Gdm-1.0.Gdm.ChooserIface
2210
+
2211
+ parent_iface: GObject.TypeInterface
2212
+ handle_disconnect: (object: Chooser, invocation: Gio.DBusMethodInvocation) => boolean
2213
+ handle_select_hostname: (object: Chooser, invocation: Gio.DBusMethodInvocation, arg_hostname: string | null) => boolean
2214
+ }
2215
+
2216
+ abstract class ChooserIface {
2217
+
2218
+ // Own properties of Gdm-1.0.Gdm.ChooserIface
2219
+
2220
+ static name: string
2221
+ }
2222
+
2223
+ interface ChooserProxyClass {
2224
+
2225
+ // Own fields of Gdm-1.0.Gdm.ChooserProxyClass
2226
+
2227
+ parent_class: Gio.DBusProxyClass
2228
+ }
2229
+
2230
+ abstract class ChooserProxyClass {
2231
+
2232
+ // Own properties of Gdm-1.0.Gdm.ChooserProxyClass
2233
+
2234
+ static name: string
2235
+ }
2236
+
2237
+ interface ChooserProxyPrivate {
2238
+ }
2239
+
2240
+ class ChooserProxyPrivate {
2241
+
2242
+ // Own properties of Gdm-1.0.Gdm.ChooserProxyPrivate
2243
+
2244
+ static name: string
2245
+ }
2246
+
2247
+ interface ChooserSkeletonClass {
2248
+
2249
+ // Own fields of Gdm-1.0.Gdm.ChooserSkeletonClass
2250
+
2251
+ parent_class: Gio.DBusInterfaceSkeletonClass
2252
+ }
2253
+
2254
+ abstract class ChooserSkeletonClass {
2255
+
2256
+ // Own properties of Gdm-1.0.Gdm.ChooserSkeletonClass
2257
+
2258
+ static name: string
2259
+ }
2260
+
2261
+ interface ChooserSkeletonPrivate {
2262
+ }
2263
+
2264
+ class ChooserSkeletonPrivate {
2265
+
2266
+ // Own properties of Gdm-1.0.Gdm.ChooserSkeletonPrivate
2267
+
2268
+ static name: string
2269
+ }
2270
+
2271
+ interface ClientClass {
2272
+
2273
+ // Own fields of Gdm-1.0.Gdm.ClientClass
2274
+
2275
+ parent_class: GObject.ObjectClass
2276
+ }
2277
+
2278
+ abstract class ClientClass {
2279
+
2280
+ // Own properties of Gdm-1.0.Gdm.ClientClass
2281
+
2282
+ static name: string
2283
+ }
2284
+
2285
+ interface GreeterIface {
2286
+
2287
+ // Own fields of Gdm-1.0.Gdm.GreeterIface
2288
+
2289
+ parent_iface: GObject.TypeInterface
2290
+ handle_begin_auto_login: (object: Greeter, invocation: Gio.DBusMethodInvocation, arg_username: string | null) => boolean
2291
+ handle_get_timed_login_details: (object: Greeter, invocation: Gio.DBusMethodInvocation) => boolean
2292
+ handle_select_session: (object: Greeter, invocation: Gio.DBusMethodInvocation, arg_session: string | null) => boolean
2293
+ handle_select_user: (object: Greeter, invocation: Gio.DBusMethodInvocation, arg_username: string | null) => boolean
2294
+ handle_start_session_when_ready: (object: Greeter, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_should_start_session: boolean) => boolean
2295
+ default_language_name_changed: (object: Greeter, arg_language_name: string | null) => void
2296
+ default_session_name_changed: (object: Greeter, arg_session_name: string | null) => void
2297
+ reauthenticated: (object: Greeter, arg_service_name: string | null) => void
2298
+ selected_user_changed: (object: Greeter, arg_username: string | null) => void
2299
+ session_opened: (object: Greeter, arg_service_name: string | null) => void
2300
+ timed_login_requested: (object: Greeter, arg_username: string | null, arg_delay: number) => void
2301
+ }
2302
+
2303
+ abstract class GreeterIface {
2304
+
2305
+ // Own properties of Gdm-1.0.Gdm.GreeterIface
2306
+
2307
+ static name: string
2308
+ }
2309
+
2310
+ interface GreeterProxyClass {
2311
+
2312
+ // Own fields of Gdm-1.0.Gdm.GreeterProxyClass
2313
+
2314
+ parent_class: Gio.DBusProxyClass
2315
+ }
2316
+
2317
+ abstract class GreeterProxyClass {
2318
+
2319
+ // Own properties of Gdm-1.0.Gdm.GreeterProxyClass
2320
+
2321
+ static name: string
2322
+ }
2323
+
2324
+ interface GreeterProxyPrivate {
2325
+ }
2326
+
2327
+ class GreeterProxyPrivate {
2328
+
2329
+ // Own properties of Gdm-1.0.Gdm.GreeterProxyPrivate
2330
+
2331
+ static name: string
2332
+ }
2333
+
2334
+ interface GreeterSkeletonClass {
2335
+
2336
+ // Own fields of Gdm-1.0.Gdm.GreeterSkeletonClass
2337
+
2338
+ parent_class: Gio.DBusInterfaceSkeletonClass
2339
+ }
2340
+
2341
+ abstract class GreeterSkeletonClass {
2342
+
2343
+ // Own properties of Gdm-1.0.Gdm.GreeterSkeletonClass
2344
+
2345
+ static name: string
2346
+ }
2347
+
2348
+ interface GreeterSkeletonPrivate {
2349
+ }
2350
+
2351
+ class GreeterSkeletonPrivate {
2352
+
2353
+ // Own properties of Gdm-1.0.Gdm.GreeterSkeletonPrivate
2354
+
2355
+ static name: string
2356
+ }
2357
+
2358
+ interface ManagerIface {
2359
+
2360
+ // Own fields of Gdm-1.0.Gdm.ManagerIface
2361
+
2362
+ parent_iface: GObject.TypeInterface
2363
+ handle_open_reauthentication_channel: (object: Manager, invocation: Gio.DBusMethodInvocation, arg_username: string | null) => boolean
2364
+ handle_open_session: (object: Manager, invocation: Gio.DBusMethodInvocation) => boolean
2365
+ handle_register_display: (object: Manager, invocation: Gio.DBusMethodInvocation, arg_details: GLib.Variant) => boolean
2366
+ handle_register_session: (object: Manager, invocation: Gio.DBusMethodInvocation, arg_details: GLib.Variant) => boolean
2367
+ get_version: (object: Manager) => string | null
2368
+ }
2369
+
2370
+ abstract class ManagerIface {
2371
+
2372
+ // Own properties of Gdm-1.0.Gdm.ManagerIface
2373
+
2374
+ static name: string
2375
+ }
2376
+
2377
+ interface ManagerProxyClass {
2378
+
2379
+ // Own fields of Gdm-1.0.Gdm.ManagerProxyClass
2380
+
2381
+ parent_class: Gio.DBusProxyClass
2382
+ }
2383
+
2384
+ abstract class ManagerProxyClass {
2385
+
2386
+ // Own properties of Gdm-1.0.Gdm.ManagerProxyClass
2387
+
2388
+ static name: string
2389
+ }
2390
+
2391
+ interface ManagerProxyPrivate {
2392
+ }
2393
+
2394
+ class ManagerProxyPrivate {
2395
+
2396
+ // Own properties of Gdm-1.0.Gdm.ManagerProxyPrivate
2397
+
2398
+ static name: string
2399
+ }
2400
+
2401
+ interface ManagerSkeletonClass {
2402
+
2403
+ // Own fields of Gdm-1.0.Gdm.ManagerSkeletonClass
2404
+
2405
+ parent_class: Gio.DBusInterfaceSkeletonClass
2406
+ }
2407
+
2408
+ abstract class ManagerSkeletonClass {
2409
+
2410
+ // Own properties of Gdm-1.0.Gdm.ManagerSkeletonClass
2411
+
2412
+ static name: string
2413
+ }
2414
+
2415
+ interface ManagerSkeletonPrivate {
2416
+ }
2417
+
2418
+ class ManagerSkeletonPrivate {
2419
+
2420
+ // Own properties of Gdm-1.0.Gdm.ManagerSkeletonPrivate
2421
+
2422
+ static name: string
2423
+ }
2424
+
2425
+ interface RemoteGreeterIface {
2426
+
2427
+ // Own fields of Gdm-1.0.Gdm.RemoteGreeterIface
2428
+
2429
+ parent_iface: GObject.TypeInterface
2430
+ handle_disconnect: (object: RemoteGreeter, invocation: Gio.DBusMethodInvocation) => boolean
2431
+ }
2432
+
2433
+ abstract class RemoteGreeterIface {
2434
+
2435
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterIface
2436
+
2437
+ static name: string
2438
+ }
2439
+
2440
+ interface RemoteGreeterProxyClass {
2441
+
2442
+ // Own fields of Gdm-1.0.Gdm.RemoteGreeterProxyClass
2443
+
2444
+ parent_class: Gio.DBusProxyClass
2445
+ }
2446
+
2447
+ abstract class RemoteGreeterProxyClass {
2448
+
2449
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterProxyClass
2450
+
2451
+ static name: string
2452
+ }
2453
+
2454
+ interface RemoteGreeterProxyPrivate {
2455
+ }
2456
+
2457
+ class RemoteGreeterProxyPrivate {
2458
+
2459
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterProxyPrivate
2460
+
2461
+ static name: string
2462
+ }
2463
+
2464
+ interface RemoteGreeterSkeletonClass {
2465
+
2466
+ // Own fields of Gdm-1.0.Gdm.RemoteGreeterSkeletonClass
2467
+
2468
+ parent_class: Gio.DBusInterfaceSkeletonClass
2469
+ }
2470
+
2471
+ abstract class RemoteGreeterSkeletonClass {
2472
+
2473
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterSkeletonClass
2474
+
2475
+ static name: string
2476
+ }
2477
+
2478
+ interface RemoteGreeterSkeletonPrivate {
2479
+ }
2480
+
2481
+ class RemoteGreeterSkeletonPrivate {
2482
+
2483
+ // Own properties of Gdm-1.0.Gdm.RemoteGreeterSkeletonPrivate
2484
+
2485
+ static name: string
2486
+ }
2487
+
2488
+ interface UserVerifierChoiceListIface {
2489
+
2490
+ // Own fields of Gdm-1.0.Gdm.UserVerifierChoiceListIface
2491
+
2492
+ parent_iface: GObject.TypeInterface
2493
+ handle_select_choice: (object: UserVerifierChoiceList, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_choice: string | null) => boolean
2494
+ choice_query: (object: UserVerifierChoiceList, arg_service_name: string | null, arg_prompt_message: string | null, arg_list: GLib.Variant) => void
2495
+ }
2496
+
2497
+ abstract class UserVerifierChoiceListIface {
2498
+
2499
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListIface
2500
+
2501
+ static name: string
2502
+ }
2503
+
2504
+ interface UserVerifierChoiceListProxyClass {
2505
+
2506
+ // Own fields of Gdm-1.0.Gdm.UserVerifierChoiceListProxyClass
2507
+
2508
+ parent_class: Gio.DBusProxyClass
2509
+ }
2510
+
2511
+ abstract class UserVerifierChoiceListProxyClass {
2512
+
2513
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListProxyClass
2514
+
2515
+ static name: string
2516
+ }
2517
+
2518
+ interface UserVerifierChoiceListProxyPrivate {
2519
+ }
2520
+
2521
+ class UserVerifierChoiceListProxyPrivate {
2522
+
2523
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListProxyPrivate
2524
+
2525
+ static name: string
2526
+ }
2527
+
2528
+ interface UserVerifierChoiceListSkeletonClass {
2529
+
2530
+ // Own fields of Gdm-1.0.Gdm.UserVerifierChoiceListSkeletonClass
2531
+
2532
+ parent_class: Gio.DBusInterfaceSkeletonClass
2533
+ }
2534
+
2535
+ abstract class UserVerifierChoiceListSkeletonClass {
2536
+
2537
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListSkeletonClass
2538
+
2539
+ static name: string
2540
+ }
2541
+
2542
+ interface UserVerifierChoiceListSkeletonPrivate {
2543
+ }
2544
+
2545
+ class UserVerifierChoiceListSkeletonPrivate {
2546
+
2547
+ // Own properties of Gdm-1.0.Gdm.UserVerifierChoiceListSkeletonPrivate
2548
+
2549
+ static name: string
2550
+ }
2551
+
2552
+ interface UserVerifierIface {
2553
+
2554
+ // Own fields of Gdm-1.0.Gdm.UserVerifierIface
2555
+
2556
+ parent_iface: GObject.TypeInterface
2557
+ handle_answer_query: (object: UserVerifier, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_answer: string | null) => boolean
2558
+ handle_begin_verification: (object: UserVerifier, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null) => boolean
2559
+ handle_begin_verification_for_user: (object: UserVerifier, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_username: string | null) => boolean
2560
+ handle_cancel: (object: UserVerifier, invocation: Gio.DBusMethodInvocation) => boolean
2561
+ handle_enable_extensions: (object: UserVerifier, invocation: Gio.DBusMethodInvocation, arg_extensions: string | null) => boolean
2562
+ conversation_started: (object: UserVerifier, arg_service_name: string | null) => void
2563
+ conversation_stopped: (object: UserVerifier, arg_service_name: string | null) => void
2564
+ info: (object: UserVerifier, arg_service_name: string | null, arg_info: string | null) => void
2565
+ info_query: (object: UserVerifier, arg_service_name: string | null, arg_query: string | null) => void
2566
+ problem: (object: UserVerifier, arg_service_name: string | null, arg_problem: string | null) => void
2567
+ reauthentication_started: (object: UserVerifier, arg_pid_of_caller: number) => void
2568
+ reset: (object: UserVerifier) => void
2569
+ secret_info_query: (object: UserVerifier, arg_service_name: string | null, arg_query: string | null) => void
2570
+ service_unavailable: (object: UserVerifier, arg_service_name: string | null, arg_message: string | null) => void
2571
+ verification_complete: (object: UserVerifier, arg_service_name: string | null) => void
2572
+ verification_failed: (object: UserVerifier, arg_service_name: string | null) => void
2573
+ }
2574
+
2575
+ abstract class UserVerifierIface {
2576
+
2577
+ // Own properties of Gdm-1.0.Gdm.UserVerifierIface
2578
+
2579
+ static name: string
2580
+ }
2581
+
2582
+ interface UserVerifierProxyClass {
2583
+
2584
+ // Own fields of Gdm-1.0.Gdm.UserVerifierProxyClass
2585
+
2586
+ parent_class: Gio.DBusProxyClass
2587
+ }
2588
+
2589
+ abstract class UserVerifierProxyClass {
2590
+
2591
+ // Own properties of Gdm-1.0.Gdm.UserVerifierProxyClass
2592
+
2593
+ static name: string
2594
+ }
2595
+
2596
+ interface UserVerifierProxyPrivate {
2597
+ }
2598
+
2599
+ class UserVerifierProxyPrivate {
2600
+
2601
+ // Own properties of Gdm-1.0.Gdm.UserVerifierProxyPrivate
2602
+
2603
+ static name: string
2604
+ }
2605
+
2606
+ interface UserVerifierSkeletonClass {
2607
+
2608
+ // Own fields of Gdm-1.0.Gdm.UserVerifierSkeletonClass
2609
+
2610
+ parent_class: Gio.DBusInterfaceSkeletonClass
2611
+ }
2612
+
2613
+ abstract class UserVerifierSkeletonClass {
2614
+
2615
+ // Own properties of Gdm-1.0.Gdm.UserVerifierSkeletonClass
2616
+
2617
+ static name: string
2618
+ }
2619
+
2620
+ interface UserVerifierSkeletonPrivate {
2621
+ }
2622
+
2623
+ class UserVerifierSkeletonPrivate {
2624
+
2625
+ // Own properties of Gdm-1.0.Gdm.UserVerifierSkeletonPrivate
2626
+
2627
+ static name: string
2628
+ }
2629
+
2630
+ interface WorkerManagerIface {
2631
+
2632
+ // Own fields of Gdm-1.0.Gdm.WorkerManagerIface
2633
+
2634
+ parent_iface: GObject.TypeInterface
2635
+ handle_choice_list_query: (object: WorkerManager, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_prompt_message: string | null, arg_query: GLib.Variant) => boolean
2636
+ handle_hello: (object: WorkerManager, invocation: Gio.DBusMethodInvocation) => boolean
2637
+ handle_info: (object: WorkerManager, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_info: string | null) => boolean
2638
+ handle_info_query: (object: WorkerManager, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_query: string | null) => boolean
2639
+ handle_problem: (object: WorkerManager, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_problem: string | null) => boolean
2640
+ handle_secret_info_query: (object: WorkerManager, invocation: Gio.DBusMethodInvocation, arg_service_name: string | null, arg_query: string | null) => boolean
2641
+ }
2642
+
2643
+ abstract class WorkerManagerIface {
2644
+
2645
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerIface
2646
+
2647
+ static name: string
2648
+ }
2649
+
2650
+ interface WorkerManagerProxyClass {
2651
+
2652
+ // Own fields of Gdm-1.0.Gdm.WorkerManagerProxyClass
2653
+
2654
+ parent_class: Gio.DBusProxyClass
2655
+ }
2656
+
2657
+ abstract class WorkerManagerProxyClass {
2658
+
2659
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerProxyClass
2660
+
2661
+ static name: string
2662
+ }
2663
+
2664
+ interface WorkerManagerProxyPrivate {
2665
+ }
2666
+
2667
+ class WorkerManagerProxyPrivate {
2668
+
2669
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerProxyPrivate
2670
+
2671
+ static name: string
2672
+ }
2673
+
2674
+ interface WorkerManagerSkeletonClass {
2675
+
2676
+ // Own fields of Gdm-1.0.Gdm.WorkerManagerSkeletonClass
2677
+
2678
+ parent_class: Gio.DBusInterfaceSkeletonClass
2679
+ }
2680
+
2681
+ abstract class WorkerManagerSkeletonClass {
2682
+
2683
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerSkeletonClass
2684
+
2685
+ static name: string
2686
+ }
2687
+
2688
+ interface WorkerManagerSkeletonPrivate {
2689
+ }
2690
+
2691
+ class WorkerManagerSkeletonPrivate {
2692
+
2693
+ // Own properties of Gdm-1.0.Gdm.WorkerManagerSkeletonPrivate
2694
+
2695
+ static name: string
2696
+ }
2697
+
2698
+ /**
2699
+ * Name of the imported GIR library
2700
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
2701
+ */
2702
+ const __name__: string
2703
+ /**
2704
+ * Version of the imported GIR library
2705
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
2706
+ */
2707
+ const __version__: string
2708
+ }
2709
+
2710
+ export default Gdm;
2711
+ // END