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