@girs/nma-1.0 1.10.7-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/nma-1.0.d.ts ADDED
@@ -0,0 +1,2177 @@
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
+ * NMA-1.0
10
+ */
11
+
12
+ import type NM from '@girs/nm-1.0';
13
+ import type Gio from '@girs/gio-2.0';
14
+ import type GObject from '@girs/gobject-2.0';
15
+ import type GLib from '@girs/glib-2.0';
16
+ import type Gtk from '@girs/gtk-3.0';
17
+ import type xlib from '@girs/xlib-2.0';
18
+ import type Gdk from '@girs/gdk-3.0';
19
+ import type cairo from '@girs/cairo-1.0';
20
+ import type Pango from '@girs/pango-1.0';
21
+ import type HarfBuzz from '@girs/harfbuzz-0.0';
22
+ import type freetype2 from '@girs/freetype2-2.0';
23
+ import type GdkPixbuf from '@girs/gdkpixbuf-2.0';
24
+ import type GModule from '@girs/gmodule-2.0';
25
+ import type Atk from '@girs/atk-1.0';
26
+
27
+ export namespace NMA {
28
+
29
+ /**
30
+ * Flags that controls what is the certificate chooser button able to pick.
31
+ * Currently only local files are supported, but might be extended to use URIs,
32
+ * such as PKCS\#11 certificate URIs in future as well.
33
+ */
34
+ enum CertChooserFlags {
35
+ /**
36
+ * No flags
37
+ */
38
+ NONE,
39
+ /**
40
+ * Only pick a certificate, not a key
41
+ */
42
+ CERT,
43
+ /**
44
+ * Hide all controls but the secrets entries
45
+ */
46
+ PASSWORDS,
47
+ /**
48
+ * Ensure the chooser only selects regular PEM files
49
+ */
50
+ PEM,
51
+ /**
52
+ * Do not show password entries (Since: 1.8.34)
53
+ */
54
+ NO_PASSWORDS,
55
+ }
56
+ enum MobileFamily {
57
+ /**
58
+ * Unknown or invalid network access method
59
+ */
60
+ UNKNOWN,
61
+ /**
62
+ * 3rd Generation Partnership Project (3GPP) network
63
+ */
64
+ TODO_3GPP,
65
+ /**
66
+ * A CDMA network
67
+ */
68
+ CDMA,
69
+ }
70
+ const BAR_CODE_SIZE: string | null
71
+ const BAR_CODE_TEXT: string | null
72
+ const BAR_CODE_WIDGET_CONNECTION: string | null
73
+ /**
74
+ * Evaluates to the major version number of NetworkManager which this source
75
+ * is compiled against.
76
+ */
77
+ const MAJOR_VERSION: number
78
+ /**
79
+ * Evaluates to the micro version number of NetworkManager which this source
80
+ * compiled against.
81
+ */
82
+ const MICRO_VERSION: number
83
+ /**
84
+ * Evaluates to the minor version number of NetworkManager which this source
85
+ * is compiled against.
86
+ */
87
+ const MINOR_VERSION: number
88
+ /**
89
+ * Splits the input MCCMNC string into separate MCC and MNC strings.
90
+ * @param mccmnc input MCCMNC string.
91
+ * @returns %TRUE if correctly split and @mcc and @mnc are set; %FALSE otherwise.
92
+ */
93
+ function mobile_providers_split_3gpp_mcc_mnc(mccmnc: string | null): [ /* returnType */ boolean, /* mcc */ string | null, /* mnc */ string | null ]
94
+ /**
95
+ * Returns secret flags corresponding to the selected password storage menu
96
+ * in the attached icon
97
+ * @param passwd_entry password #GtkEntry which the password icon/menu is attached to
98
+ * @returns secret flags corresponding to the active item in password menu
99
+ */
100
+ function utils_menu_to_secret_flags(passwd_entry: Gtk.Widget): NM.SettingSecretFlags
101
+ /**
102
+ * Adds a secondary icon and creates a popup menu for password entry.
103
+ * The active menu item is set up according to initial_flags, or
104
+ * from `setting/``password_flags_name` (if they are not NULL).
105
+ * If the `setting/``password_flags_name` are not NULL, secret flags will
106
+ * be automatically updated in the setting when menu is changed.
107
+ * @param passwd_entry password #GtkEntry which the icon is attached to
108
+ * @param initial_flags initial secret flags to setup password menu from
109
+ * @param setting #NMSetting containing the password, or NULL
110
+ * @param password_flags_name name of the secret flags (like psk-flags), or NULL
111
+ * @param with_not_required whether to include "Not required" menu item
112
+ * @param ask_mode %TRUE if the entry is shown in ASK mode. That means, while prompting for a password, contrary to being inside the editor mode. If %TRUE, the entry should be sensivive on selected "always-ask" icon (this is e.f. for nm-applet asking for password), otherwise not. If %FALSE, it shall not be possible to select a different storage, because we only prompt for a password, we cannot change the password location.
113
+ */
114
+ function utils_setup_password_storage(passwd_entry: Gtk.Widget, initial_flags: NM.SettingSecretFlags, setting: NM.Setting, password_flags_name: string | null, with_not_required: boolean, ask_mode: boolean): void
115
+ /**
116
+ * Updates secret flags in the password storage popup menu and also
117
+ * in the `setting` (if `setting` and `password_flags_name` are not NULL).
118
+ * @param passwd_entry #GtkEntry with the password
119
+ * @param secret_flags secret flags to set
120
+ * @param setting #NMSetting containing the password, or NULL
121
+ * @param password_flags_name name of the secret flags (like psk-flags), or NULL
122
+ */
123
+ function utils_update_password_storage(passwd_entry: Gtk.Widget, secret_flags: NM.SettingSecretFlags, setting: NM.Setting, password_flags_name: string | null): void
124
+ interface MobileWizardCallback {
125
+ (self: MobileWizard, canceled: boolean, method: MobileWizardAccessMethod): void
126
+ }
127
+ module BarCode {
128
+
129
+ // Constructor properties interface
130
+
131
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
132
+
133
+ // Own constructor properties of NMA-1.0.NMA.BarCode
134
+
135
+ text?: string | null
136
+ }
137
+
138
+ }
139
+
140
+ interface BarCode {
141
+
142
+ // Own properties of NMA-1.0.NMA.BarCode
143
+
144
+ readonly size: number
145
+ text: string | null
146
+
147
+ // Owm methods of NMA-1.0.NMA.BarCode
148
+
149
+ /**
150
+ * Draws the QR code onto the given context.
151
+ * @param cr cairo context
152
+ */
153
+ draw(cr: cairo.Context): void
154
+ get_size(): number
155
+ /**
156
+ * Regenerates the QR code for a different text.
157
+ * @param text new bar code text
158
+ */
159
+ set_text(text: string | null): void
160
+
161
+ // Class property signals of NMA-1.0.NMA.BarCode
162
+
163
+ connect(sigName: "notify::size", callback: (($obj: BarCode, pspec: GObject.ParamSpec) => void)): number
164
+ connect_after(sigName: "notify::size", callback: (($obj: BarCode, pspec: GObject.ParamSpec) => void)): number
165
+ emit(sigName: "notify::size", ...args: any[]): void
166
+ connect(sigName: "notify::text", callback: (($obj: BarCode, pspec: GObject.ParamSpec) => void)): number
167
+ connect_after(sigName: "notify::text", callback: (($obj: BarCode, pspec: GObject.ParamSpec) => void)): number
168
+ emit(sigName: "notify::text", ...args: any[]): void
169
+ connect(sigName: string, callback: (...args: any[]) => void): number
170
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
171
+ emit(sigName: string, ...args: any[]): void
172
+ disconnect(id: number): void
173
+ }
174
+
175
+ class BarCode extends GObject.Object {
176
+
177
+ // Own properties of NMA-1.0.NMA.BarCode
178
+
179
+ static name: string
180
+ static $gtype: GObject.GType<BarCode>
181
+
182
+ // Constructors of NMA-1.0.NMA.BarCode
183
+
184
+ constructor(config?: BarCode.ConstructorProperties)
185
+ constructor(text: string | null)
186
+ static new(text: string | null): BarCode
187
+ _init(config?: BarCode.ConstructorProperties): void
188
+ }
189
+
190
+ module BarCodeWidget {
191
+
192
+ // Constructor properties interface
193
+
194
+ interface ConstructorProperties extends Atk.ImplementorIface.ConstructorProperties, Gtk.Buildable.ConstructorProperties, Gtk.Orientable.ConstructorProperties, Gtk.Box.ConstructorProperties {
195
+
196
+ // Own constructor properties of NMA-1.0.NMA.BarCodeWidget
197
+
198
+ connection?: NM.Connection | null
199
+ }
200
+
201
+ }
202
+
203
+ interface BarCodeWidget extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
204
+
205
+ // Own properties of NMA-1.0.NMA.BarCodeWidget
206
+
207
+ connection: NM.Connection
208
+
209
+ // Conflicting methods
210
+
211
+ /**
212
+ * Emits a #GtkWidget::child-notify signal for the
213
+ * [child property][child-properties]
214
+ * `child_property` on the child.
215
+ *
216
+ * This is an analogue of g_object_notify() for child properties.
217
+ *
218
+ * Also see gtk_widget_child_notify().
219
+ * @param child the child widget
220
+ * @param child_property the name of a child property installed on the class of `container`
221
+ */
222
+ child_notify(child: Gtk.Widget, child_property: string | null): void
223
+
224
+ // Overloads of child_notify
225
+
226
+ /**
227
+ * Emits a #GtkWidget::child-notify signal for the
228
+ * [child property][child-properties] `child_property`
229
+ * on `widget`.
230
+ *
231
+ * This is the analogue of g_object_notify() for child properties.
232
+ *
233
+ * Also see gtk_container_child_notify().
234
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
235
+ */
236
+ child_notify(child_property: string | null): void
237
+ /**
238
+ * Emits a #GtkWidget::child-notify signal for the
239
+ * [child property][child-properties] `child_property`
240
+ * on `widget`.
241
+ *
242
+ * This is the analogue of g_object_notify() for child properties.
243
+ *
244
+ * Also see gtk_container_child_notify().
245
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
246
+ */
247
+ child_notify(child_property: string | null): void
248
+
249
+ // Class property signals of NMA-1.0.NMA.BarCodeWidget
250
+
251
+ connect(sigName: "notify::connection", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
252
+ connect_after(sigName: "notify::connection", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
253
+ emit(sigName: "notify::connection", ...args: any[]): void
254
+ connect(sigName: "notify::baseline-position", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
255
+ connect_after(sigName: "notify::baseline-position", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
256
+ emit(sigName: "notify::baseline-position", ...args: any[]): void
257
+ connect(sigName: "notify::homogeneous", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
258
+ connect_after(sigName: "notify::homogeneous", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
259
+ emit(sigName: "notify::homogeneous", ...args: any[]): void
260
+ connect(sigName: "notify::spacing", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
261
+ connect_after(sigName: "notify::spacing", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
262
+ emit(sigName: "notify::spacing", ...args: any[]): void
263
+ connect(sigName: "notify::border-width", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
264
+ connect_after(sigName: "notify::border-width", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
265
+ emit(sigName: "notify::border-width", ...args: any[]): void
266
+ connect(sigName: "notify::child", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
267
+ connect_after(sigName: "notify::child", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
268
+ emit(sigName: "notify::child", ...args: any[]): void
269
+ connect(sigName: "notify::resize-mode", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
270
+ connect_after(sigName: "notify::resize-mode", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
271
+ emit(sigName: "notify::resize-mode", ...args: any[]): void
272
+ connect(sigName: "notify::app-paintable", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
273
+ connect_after(sigName: "notify::app-paintable", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
274
+ emit(sigName: "notify::app-paintable", ...args: any[]): void
275
+ connect(sigName: "notify::can-default", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
276
+ connect_after(sigName: "notify::can-default", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
277
+ emit(sigName: "notify::can-default", ...args: any[]): void
278
+ connect(sigName: "notify::can-focus", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
279
+ connect_after(sigName: "notify::can-focus", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
280
+ emit(sigName: "notify::can-focus", ...args: any[]): void
281
+ connect(sigName: "notify::composite-child", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
282
+ connect_after(sigName: "notify::composite-child", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
283
+ emit(sigName: "notify::composite-child", ...args: any[]): void
284
+ connect(sigName: "notify::double-buffered", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
285
+ connect_after(sigName: "notify::double-buffered", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
286
+ emit(sigName: "notify::double-buffered", ...args: any[]): void
287
+ connect(sigName: "notify::events", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
288
+ connect_after(sigName: "notify::events", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
289
+ emit(sigName: "notify::events", ...args: any[]): void
290
+ connect(sigName: "notify::expand", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
291
+ connect_after(sigName: "notify::expand", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
292
+ emit(sigName: "notify::expand", ...args: any[]): void
293
+ connect(sigName: "notify::focus-on-click", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
294
+ connect_after(sigName: "notify::focus-on-click", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
295
+ emit(sigName: "notify::focus-on-click", ...args: any[]): void
296
+ connect(sigName: "notify::halign", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
297
+ connect_after(sigName: "notify::halign", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
298
+ emit(sigName: "notify::halign", ...args: any[]): void
299
+ connect(sigName: "notify::has-default", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
300
+ connect_after(sigName: "notify::has-default", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
301
+ emit(sigName: "notify::has-default", ...args: any[]): void
302
+ connect(sigName: "notify::has-focus", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
303
+ connect_after(sigName: "notify::has-focus", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
304
+ emit(sigName: "notify::has-focus", ...args: any[]): void
305
+ connect(sigName: "notify::has-tooltip", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
306
+ connect_after(sigName: "notify::has-tooltip", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
307
+ emit(sigName: "notify::has-tooltip", ...args: any[]): void
308
+ connect(sigName: "notify::height-request", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
309
+ connect_after(sigName: "notify::height-request", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
310
+ emit(sigName: "notify::height-request", ...args: any[]): void
311
+ connect(sigName: "notify::hexpand", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
312
+ connect_after(sigName: "notify::hexpand", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
313
+ emit(sigName: "notify::hexpand", ...args: any[]): void
314
+ connect(sigName: "notify::hexpand-set", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
315
+ connect_after(sigName: "notify::hexpand-set", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
316
+ emit(sigName: "notify::hexpand-set", ...args: any[]): void
317
+ connect(sigName: "notify::is-focus", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
318
+ connect_after(sigName: "notify::is-focus", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
319
+ emit(sigName: "notify::is-focus", ...args: any[]): void
320
+ connect(sigName: "notify::margin", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
321
+ connect_after(sigName: "notify::margin", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
322
+ emit(sigName: "notify::margin", ...args: any[]): void
323
+ connect(sigName: "notify::margin-bottom", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
324
+ connect_after(sigName: "notify::margin-bottom", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
325
+ emit(sigName: "notify::margin-bottom", ...args: any[]): void
326
+ connect(sigName: "notify::margin-end", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
327
+ connect_after(sigName: "notify::margin-end", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
328
+ emit(sigName: "notify::margin-end", ...args: any[]): void
329
+ connect(sigName: "notify::margin-left", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
330
+ connect_after(sigName: "notify::margin-left", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
331
+ emit(sigName: "notify::margin-left", ...args: any[]): void
332
+ connect(sigName: "notify::margin-right", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
333
+ connect_after(sigName: "notify::margin-right", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
334
+ emit(sigName: "notify::margin-right", ...args: any[]): void
335
+ connect(sigName: "notify::margin-start", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
336
+ connect_after(sigName: "notify::margin-start", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
337
+ emit(sigName: "notify::margin-start", ...args: any[]): void
338
+ connect(sigName: "notify::margin-top", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
339
+ connect_after(sigName: "notify::margin-top", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
340
+ emit(sigName: "notify::margin-top", ...args: any[]): void
341
+ connect(sigName: "notify::name", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
342
+ connect_after(sigName: "notify::name", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
343
+ emit(sigName: "notify::name", ...args: any[]): void
344
+ connect(sigName: "notify::no-show-all", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
345
+ connect_after(sigName: "notify::no-show-all", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
346
+ emit(sigName: "notify::no-show-all", ...args: any[]): void
347
+ connect(sigName: "notify::opacity", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
348
+ connect_after(sigName: "notify::opacity", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
349
+ emit(sigName: "notify::opacity", ...args: any[]): void
350
+ connect(sigName: "notify::parent", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
351
+ connect_after(sigName: "notify::parent", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
352
+ emit(sigName: "notify::parent", ...args: any[]): void
353
+ connect(sigName: "notify::receives-default", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
354
+ connect_after(sigName: "notify::receives-default", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
355
+ emit(sigName: "notify::receives-default", ...args: any[]): void
356
+ connect(sigName: "notify::scale-factor", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
357
+ connect_after(sigName: "notify::scale-factor", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
358
+ emit(sigName: "notify::scale-factor", ...args: any[]): void
359
+ connect(sigName: "notify::sensitive", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
360
+ connect_after(sigName: "notify::sensitive", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
361
+ emit(sigName: "notify::sensitive", ...args: any[]): void
362
+ connect(sigName: "notify::style", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
363
+ connect_after(sigName: "notify::style", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
364
+ emit(sigName: "notify::style", ...args: any[]): void
365
+ connect(sigName: "notify::tooltip-markup", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
366
+ connect_after(sigName: "notify::tooltip-markup", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
367
+ emit(sigName: "notify::tooltip-markup", ...args: any[]): void
368
+ connect(sigName: "notify::tooltip-text", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
369
+ connect_after(sigName: "notify::tooltip-text", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
370
+ emit(sigName: "notify::tooltip-text", ...args: any[]): void
371
+ connect(sigName: "notify::valign", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
372
+ connect_after(sigName: "notify::valign", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
373
+ emit(sigName: "notify::valign", ...args: any[]): void
374
+ connect(sigName: "notify::vexpand", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
375
+ connect_after(sigName: "notify::vexpand", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
376
+ emit(sigName: "notify::vexpand", ...args: any[]): void
377
+ connect(sigName: "notify::vexpand-set", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
378
+ connect_after(sigName: "notify::vexpand-set", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
379
+ emit(sigName: "notify::vexpand-set", ...args: any[]): void
380
+ connect(sigName: "notify::visible", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
381
+ connect_after(sigName: "notify::visible", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
382
+ emit(sigName: "notify::visible", ...args: any[]): void
383
+ connect(sigName: "notify::width-request", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
384
+ connect_after(sigName: "notify::width-request", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
385
+ emit(sigName: "notify::width-request", ...args: any[]): void
386
+ connect(sigName: "notify::window", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
387
+ connect_after(sigName: "notify::window", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
388
+ emit(sigName: "notify::window", ...args: any[]): void
389
+ connect(sigName: "notify::orientation", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
390
+ connect_after(sigName: "notify::orientation", callback: (($obj: BarCodeWidget, pspec: GObject.ParamSpec) => void)): number
391
+ emit(sigName: "notify::orientation", ...args: any[]): void
392
+ connect(sigName: string, callback: (...args: any[]) => void): number
393
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
394
+ emit(sigName: string, ...args: any[]): void
395
+ disconnect(id: number): void
396
+ }
397
+
398
+ class BarCodeWidget extends Gtk.Box {
399
+
400
+ // Own properties of NMA-1.0.NMA.BarCodeWidget
401
+
402
+ static name: string
403
+ static $gtype: GObject.GType<BarCodeWidget>
404
+
405
+ // Constructors of NMA-1.0.NMA.BarCodeWidget
406
+
407
+ constructor(config?: BarCodeWidget.ConstructorProperties)
408
+ _init(config?: BarCodeWidget.ConstructorProperties): void
409
+ }
410
+
411
+ module CertChooser {
412
+
413
+ // Signal callback interfaces
414
+
415
+ /**
416
+ * Signal callback interface for `cert-password-validate`
417
+ */
418
+ interface CertPasswordValidateSignalCallback {
419
+ ($obj: CertChooser): GLib.Error
420
+ }
421
+
422
+ /**
423
+ * Signal callback interface for `cert-validate`
424
+ */
425
+ interface CertValidateSignalCallback {
426
+ ($obj: CertChooser): GLib.Error
427
+ }
428
+
429
+ /**
430
+ * Signal callback interface for `changed`
431
+ */
432
+ interface ChangedSignalCallback {
433
+ ($obj: CertChooser): void
434
+ }
435
+
436
+ /**
437
+ * Signal callback interface for `key-password-validate`
438
+ */
439
+ interface KeyPasswordValidateSignalCallback {
440
+ ($obj: CertChooser): GLib.Error
441
+ }
442
+
443
+ /**
444
+ * Signal callback interface for `key-validate`
445
+ */
446
+ interface KeyValidateSignalCallback {
447
+ ($obj: CertChooser): GLib.Error
448
+ }
449
+
450
+
451
+ // Constructor properties interface
452
+
453
+ interface ConstructorProperties extends Atk.ImplementorIface.ConstructorProperties, Gtk.Buildable.ConstructorProperties, Gtk.Orientable.ConstructorProperties, Gtk.Grid.ConstructorProperties {
454
+
455
+ // Own constructor properties of NMA-1.0.NMA.CertChooser
456
+
457
+ flags?: number | null
458
+ title?: string | null
459
+ }
460
+
461
+ }
462
+
463
+ interface CertChooser extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
464
+
465
+ // Own properties of NMA-1.0.NMA.CertChooser
466
+
467
+ readonly flags: number
468
+ readonly title: string | null
469
+
470
+ // Owm methods of NMA-1.0.NMA.CertChooser
471
+
472
+ /**
473
+ * Adds the labels to the specified size group so that they are aligned
474
+ * nicely with other entries in a form.
475
+ *
476
+ * It is expected that the NMACertChooser is a GtkGrid with two columns
477
+ * with the labels in the first one.
478
+ * @param group a size group
479
+ */
480
+ add_to_size_group(group: Gtk.SizeGroup): void
481
+ /**
482
+ * Gets the real certificate location from the chooser button along with the scheme.
483
+ * @returns the certificate path
484
+ */
485
+ get_cert(): [ /* returnType */ string | null, /* scheme */ NM.Setting8021xCKScheme ]
486
+ /**
487
+ * Obtains the password or a PIN that was be required to access the certificate.
488
+ * @returns the certificate PIN or password
489
+ */
490
+ get_cert_password(): string | null
491
+ /**
492
+ * Returns secret flags corresponding to the certificate password
493
+ * if one is present. The chooser would typically call into
494
+ * nma_utils_menu_to_secret_flags() for the certificate password
495
+ * entry.
496
+ * @returns secret flags corresponding to the certificate password
497
+ */
498
+ get_cert_password_flags(): NM.SettingSecretFlags
499
+ /**
500
+ * Gets the real certificate URI from the chooser button along with the scheme.
501
+ * @returns the certificate URI
502
+ */
503
+ get_cert_uri(): string | null
504
+ /**
505
+ * Gets the real key location from the chooser button along with the scheme.
506
+ * @returns the key path
507
+ */
508
+ get_key(): [ /* returnType */ string | null, /* scheme */ NM.Setting8021xCKScheme ]
509
+ /**
510
+ * Obtains the password or a PIN that was be required to access the key.
511
+ * @returns the key PIN or password
512
+ */
513
+ get_key_password(): string | null
514
+ /**
515
+ * Returns secret flags corresponding to the key password
516
+ * if one is present. The chooser would typically call into
517
+ * nma_utils_menu_to_secret_flags() for the key password
518
+ * entry.
519
+ * @returns secret flags corresponding to the key password
520
+ */
521
+ get_key_password_flags(): NM.SettingSecretFlags
522
+ /**
523
+ * Gets the real key URI from the chooser button along with the scheme.
524
+ * @returns the key URI
525
+ */
526
+ get_key_uri(): string | null
527
+ /**
528
+ * Sets the certificate location for the chooser button.
529
+ * @param value the path or URI of a certificate
530
+ * @param scheme the scheme of the certificate path
531
+ */
532
+ set_cert(value: string | null, scheme: NM.Setting8021xCKScheme): void
533
+ /**
534
+ * Sets the password or a PIN that might be required to access the certificate.
535
+ * @param password the certificate PIN or password
536
+ */
537
+ set_cert_password(password: string | null): void
538
+ /**
539
+ * Sets the certificate URI for the chooser button.
540
+ * @param uri the path or URI of a certificate
541
+ */
542
+ set_cert_uri(uri: string | null): void
543
+ /**
544
+ * Sets the key location for the chooser button.
545
+ * @param value the path or URI of a key
546
+ * @param scheme the scheme of the key path
547
+ */
548
+ set_key(value: string | null, scheme: NM.Setting8021xCKScheme): void
549
+ /**
550
+ * Sets the password or a PIN that might be required to access the key.
551
+ * @param password the key PIN or password
552
+ */
553
+ set_key_password(password: string | null): void
554
+ /**
555
+ * Sets the key URI for the chooser button.
556
+ * @param uri the URI of a key
557
+ */
558
+ set_key_uri(uri: string | null): void
559
+ /**
560
+ * This method basically calls nma_utils_setup_password_storage()
561
+ * on the certificate password entry, in case one is present.
562
+ * @param initial_flags initial secret flags to setup password menu from
563
+ * @param setting #NMSetting containing the password, or NULL
564
+ * @param password_flags_name name of the secret flags (like psk-flags), or NULL
565
+ * @param with_not_required whether to include "Not required" menu item
566
+ * @param ask_mode %TRUE if the entry is shown in ASK mode
567
+ */
568
+ setup_cert_password_storage(initial_flags: NM.SettingSecretFlags, setting: NM.Setting, password_flags_name: string | null, with_not_required: boolean, ask_mode: boolean): void
569
+ /**
570
+ * This method basically calls nma_utils_setup_password_storage()
571
+ * on the key password entry, in case one is present.
572
+ * @param initial_flags initial secret flags to setup password menu from
573
+ * @param setting #NMSetting containing the password, or NULL
574
+ * @param password_flags_name name of the secret flags (like psk-flags), or NULL
575
+ * @param with_not_required whether to include "Not required" menu item
576
+ * @param ask_mode %TRUE if the entry is shown in ASK mode
577
+ */
578
+ setup_key_password_storage(initial_flags: NM.SettingSecretFlags, setting: NM.Setting, password_flags_name: string | null, with_not_required: boolean, ask_mode: boolean): void
579
+ /**
580
+ * This method basically calls nma_utils_update_password_storage()
581
+ * on the certificate password entry, in case one is present.
582
+ * @param secret_flags secret flags to set
583
+ * @param setting #NMSetting containing the password, or NULL
584
+ * @param password_flags_name name of the secret flags (like psk-flags), or NULL
585
+ */
586
+ update_cert_password_storage(secret_flags: NM.SettingSecretFlags, setting: NM.Setting, password_flags_name: string | null): void
587
+ /**
588
+ * This method basically calls nma_utils_update_password_storage()
589
+ * on the key password entry, in case one is present.
590
+ * @param secret_flags secret flags to set
591
+ * @param setting #NMSetting containing the password, or NULL
592
+ * @param password_flags_name name of the secret flags (like psk-flags), or NULL
593
+ */
594
+ update_key_password_storage(secret_flags: NM.SettingSecretFlags, setting: NM.Setting, password_flags_name: string | null): void
595
+ /**
596
+ * Validates whether the chosen values make sense. The users can do further
597
+ * validation by subscribing to the "*-changed" signals and returning an
598
+ * error themselves.
599
+ * @returns %TRUE if validation passes, %FALSE otherwise
600
+ */
601
+ validate(): boolean
602
+
603
+ // Conflicting methods
604
+
605
+ /**
606
+ * Emits a #GtkWidget::child-notify signal for the
607
+ * [child property][child-properties]
608
+ * `child_property` on the child.
609
+ *
610
+ * This is an analogue of g_object_notify() for child properties.
611
+ *
612
+ * Also see gtk_widget_child_notify().
613
+ * @param child the child widget
614
+ * @param child_property the name of a child property installed on the class of `container`
615
+ */
616
+ child_notify(child: Gtk.Widget, child_property: string | null): void
617
+
618
+ // Overloads of child_notify
619
+
620
+ /**
621
+ * Emits a #GtkWidget::child-notify signal for the
622
+ * [child property][child-properties] `child_property`
623
+ * on `widget`.
624
+ *
625
+ * This is the analogue of g_object_notify() for child properties.
626
+ *
627
+ * Also see gtk_container_child_notify().
628
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
629
+ */
630
+ child_notify(child_property: string | null): void
631
+ /**
632
+ * Emits a #GtkWidget::child-notify signal for the
633
+ * [child property][child-properties] `child_property`
634
+ * on `widget`.
635
+ *
636
+ * This is the analogue of g_object_notify() for child properties.
637
+ *
638
+ * Also see gtk_container_child_notify().
639
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
640
+ */
641
+ child_notify(child_property: string | null): void
642
+
643
+ // Own signals of NMA-1.0.NMA.CertChooser
644
+
645
+ connect(sigName: "cert-password-validate", callback: CertChooser.CertPasswordValidateSignalCallback): number
646
+ connect_after(sigName: "cert-password-validate", callback: CertChooser.CertPasswordValidateSignalCallback): number
647
+ emit(sigName: "cert-password-validate", ...args: any[]): void
648
+ connect(sigName: "cert-validate", callback: CertChooser.CertValidateSignalCallback): number
649
+ connect_after(sigName: "cert-validate", callback: CertChooser.CertValidateSignalCallback): number
650
+ emit(sigName: "cert-validate", ...args: any[]): void
651
+ connect(sigName: "changed", callback: CertChooser.ChangedSignalCallback): number
652
+ connect_after(sigName: "changed", callback: CertChooser.ChangedSignalCallback): number
653
+ emit(sigName: "changed", ...args: any[]): void
654
+ connect(sigName: "key-password-validate", callback: CertChooser.KeyPasswordValidateSignalCallback): number
655
+ connect_after(sigName: "key-password-validate", callback: CertChooser.KeyPasswordValidateSignalCallback): number
656
+ emit(sigName: "key-password-validate", ...args: any[]): void
657
+ connect(sigName: "key-validate", callback: CertChooser.KeyValidateSignalCallback): number
658
+ connect_after(sigName: "key-validate", callback: CertChooser.KeyValidateSignalCallback): number
659
+ emit(sigName: "key-validate", ...args: any[]): void
660
+
661
+ // Class property signals of NMA-1.0.NMA.CertChooser
662
+
663
+ connect(sigName: "notify::flags", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
664
+ connect_after(sigName: "notify::flags", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
665
+ emit(sigName: "notify::flags", ...args: any[]): void
666
+ connect(sigName: "notify::title", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
667
+ connect_after(sigName: "notify::title", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
668
+ emit(sigName: "notify::title", ...args: any[]): void
669
+ connect(sigName: "notify::baseline-row", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
670
+ connect_after(sigName: "notify::baseline-row", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
671
+ emit(sigName: "notify::baseline-row", ...args: any[]): void
672
+ connect(sigName: "notify::column-homogeneous", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
673
+ connect_after(sigName: "notify::column-homogeneous", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
674
+ emit(sigName: "notify::column-homogeneous", ...args: any[]): void
675
+ connect(sigName: "notify::column-spacing", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
676
+ connect_after(sigName: "notify::column-spacing", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
677
+ emit(sigName: "notify::column-spacing", ...args: any[]): void
678
+ connect(sigName: "notify::row-homogeneous", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
679
+ connect_after(sigName: "notify::row-homogeneous", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
680
+ emit(sigName: "notify::row-homogeneous", ...args: any[]): void
681
+ connect(sigName: "notify::row-spacing", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
682
+ connect_after(sigName: "notify::row-spacing", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
683
+ emit(sigName: "notify::row-spacing", ...args: any[]): void
684
+ connect(sigName: "notify::border-width", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
685
+ connect_after(sigName: "notify::border-width", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
686
+ emit(sigName: "notify::border-width", ...args: any[]): void
687
+ connect(sigName: "notify::child", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
688
+ connect_after(sigName: "notify::child", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
689
+ emit(sigName: "notify::child", ...args: any[]): void
690
+ connect(sigName: "notify::resize-mode", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
691
+ connect_after(sigName: "notify::resize-mode", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
692
+ emit(sigName: "notify::resize-mode", ...args: any[]): void
693
+ connect(sigName: "notify::app-paintable", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
694
+ connect_after(sigName: "notify::app-paintable", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
695
+ emit(sigName: "notify::app-paintable", ...args: any[]): void
696
+ connect(sigName: "notify::can-default", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
697
+ connect_after(sigName: "notify::can-default", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
698
+ emit(sigName: "notify::can-default", ...args: any[]): void
699
+ connect(sigName: "notify::can-focus", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
700
+ connect_after(sigName: "notify::can-focus", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
701
+ emit(sigName: "notify::can-focus", ...args: any[]): void
702
+ connect(sigName: "notify::composite-child", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
703
+ connect_after(sigName: "notify::composite-child", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
704
+ emit(sigName: "notify::composite-child", ...args: any[]): void
705
+ connect(sigName: "notify::double-buffered", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
706
+ connect_after(sigName: "notify::double-buffered", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
707
+ emit(sigName: "notify::double-buffered", ...args: any[]): void
708
+ connect(sigName: "notify::events", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
709
+ connect_after(sigName: "notify::events", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
710
+ emit(sigName: "notify::events", ...args: any[]): void
711
+ connect(sigName: "notify::expand", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
712
+ connect_after(sigName: "notify::expand", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
713
+ emit(sigName: "notify::expand", ...args: any[]): void
714
+ connect(sigName: "notify::focus-on-click", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
715
+ connect_after(sigName: "notify::focus-on-click", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
716
+ emit(sigName: "notify::focus-on-click", ...args: any[]): void
717
+ connect(sigName: "notify::halign", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
718
+ connect_after(sigName: "notify::halign", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
719
+ emit(sigName: "notify::halign", ...args: any[]): void
720
+ connect(sigName: "notify::has-default", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
721
+ connect_after(sigName: "notify::has-default", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
722
+ emit(sigName: "notify::has-default", ...args: any[]): void
723
+ connect(sigName: "notify::has-focus", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
724
+ connect_after(sigName: "notify::has-focus", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
725
+ emit(sigName: "notify::has-focus", ...args: any[]): void
726
+ connect(sigName: "notify::has-tooltip", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
727
+ connect_after(sigName: "notify::has-tooltip", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
728
+ emit(sigName: "notify::has-tooltip", ...args: any[]): void
729
+ connect(sigName: "notify::height-request", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
730
+ connect_after(sigName: "notify::height-request", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
731
+ emit(sigName: "notify::height-request", ...args: any[]): void
732
+ connect(sigName: "notify::hexpand", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
733
+ connect_after(sigName: "notify::hexpand", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
734
+ emit(sigName: "notify::hexpand", ...args: any[]): void
735
+ connect(sigName: "notify::hexpand-set", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
736
+ connect_after(sigName: "notify::hexpand-set", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
737
+ emit(sigName: "notify::hexpand-set", ...args: any[]): void
738
+ connect(sigName: "notify::is-focus", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
739
+ connect_after(sigName: "notify::is-focus", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
740
+ emit(sigName: "notify::is-focus", ...args: any[]): void
741
+ connect(sigName: "notify::margin", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
742
+ connect_after(sigName: "notify::margin", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
743
+ emit(sigName: "notify::margin", ...args: any[]): void
744
+ connect(sigName: "notify::margin-bottom", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
745
+ connect_after(sigName: "notify::margin-bottom", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
746
+ emit(sigName: "notify::margin-bottom", ...args: any[]): void
747
+ connect(sigName: "notify::margin-end", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
748
+ connect_after(sigName: "notify::margin-end", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
749
+ emit(sigName: "notify::margin-end", ...args: any[]): void
750
+ connect(sigName: "notify::margin-left", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
751
+ connect_after(sigName: "notify::margin-left", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
752
+ emit(sigName: "notify::margin-left", ...args: any[]): void
753
+ connect(sigName: "notify::margin-right", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
754
+ connect_after(sigName: "notify::margin-right", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
755
+ emit(sigName: "notify::margin-right", ...args: any[]): void
756
+ connect(sigName: "notify::margin-start", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
757
+ connect_after(sigName: "notify::margin-start", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
758
+ emit(sigName: "notify::margin-start", ...args: any[]): void
759
+ connect(sigName: "notify::margin-top", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
760
+ connect_after(sigName: "notify::margin-top", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
761
+ emit(sigName: "notify::margin-top", ...args: any[]): void
762
+ connect(sigName: "notify::name", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
763
+ connect_after(sigName: "notify::name", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
764
+ emit(sigName: "notify::name", ...args: any[]): void
765
+ connect(sigName: "notify::no-show-all", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
766
+ connect_after(sigName: "notify::no-show-all", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
767
+ emit(sigName: "notify::no-show-all", ...args: any[]): void
768
+ connect(sigName: "notify::opacity", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
769
+ connect_after(sigName: "notify::opacity", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
770
+ emit(sigName: "notify::opacity", ...args: any[]): void
771
+ connect(sigName: "notify::parent", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
772
+ connect_after(sigName: "notify::parent", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
773
+ emit(sigName: "notify::parent", ...args: any[]): void
774
+ connect(sigName: "notify::receives-default", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
775
+ connect_after(sigName: "notify::receives-default", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
776
+ emit(sigName: "notify::receives-default", ...args: any[]): void
777
+ connect(sigName: "notify::scale-factor", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
778
+ connect_after(sigName: "notify::scale-factor", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
779
+ emit(sigName: "notify::scale-factor", ...args: any[]): void
780
+ connect(sigName: "notify::sensitive", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
781
+ connect_after(sigName: "notify::sensitive", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
782
+ emit(sigName: "notify::sensitive", ...args: any[]): void
783
+ connect(sigName: "notify::style", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
784
+ connect_after(sigName: "notify::style", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
785
+ emit(sigName: "notify::style", ...args: any[]): void
786
+ connect(sigName: "notify::tooltip-markup", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
787
+ connect_after(sigName: "notify::tooltip-markup", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
788
+ emit(sigName: "notify::tooltip-markup", ...args: any[]): void
789
+ connect(sigName: "notify::tooltip-text", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
790
+ connect_after(sigName: "notify::tooltip-text", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
791
+ emit(sigName: "notify::tooltip-text", ...args: any[]): void
792
+ connect(sigName: "notify::valign", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
793
+ connect_after(sigName: "notify::valign", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
794
+ emit(sigName: "notify::valign", ...args: any[]): void
795
+ connect(sigName: "notify::vexpand", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
796
+ connect_after(sigName: "notify::vexpand", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
797
+ emit(sigName: "notify::vexpand", ...args: any[]): void
798
+ connect(sigName: "notify::vexpand-set", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
799
+ connect_after(sigName: "notify::vexpand-set", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
800
+ emit(sigName: "notify::vexpand-set", ...args: any[]): void
801
+ connect(sigName: "notify::visible", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
802
+ connect_after(sigName: "notify::visible", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
803
+ emit(sigName: "notify::visible", ...args: any[]): void
804
+ connect(sigName: "notify::width-request", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
805
+ connect_after(sigName: "notify::width-request", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
806
+ emit(sigName: "notify::width-request", ...args: any[]): void
807
+ connect(sigName: "notify::window", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
808
+ connect_after(sigName: "notify::window", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
809
+ emit(sigName: "notify::window", ...args: any[]): void
810
+ connect(sigName: "notify::orientation", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
811
+ connect_after(sigName: "notify::orientation", callback: (($obj: CertChooser, pspec: GObject.ParamSpec) => void)): number
812
+ emit(sigName: "notify::orientation", ...args: any[]): void
813
+ connect(sigName: string, callback: (...args: any[]) => void): number
814
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
815
+ emit(sigName: string, ...args: any[]): void
816
+ disconnect(id: number): void
817
+ }
818
+
819
+ class CertChooser extends Gtk.Grid {
820
+
821
+ // Own properties of NMA-1.0.NMA.CertChooser
822
+
823
+ static name: string
824
+ static $gtype: GObject.GType<CertChooser>
825
+
826
+ // Constructors of NMA-1.0.NMA.CertChooser
827
+
828
+ constructor(config?: CertChooser.ConstructorProperties)
829
+ /**
830
+ * Constructs the button that is capable of selecting a certificate
831
+ * and a key.
832
+ * @constructor
833
+ * @param title title of the certificate chooser dialog
834
+ * @param flags the flags that configure the capabilities of the button
835
+ * @returns the certificate chooser button instance
836
+ */
837
+ constructor(title: string | null, flags: CertChooserFlags)
838
+ /**
839
+ * Constructs the button that is capable of selecting a certificate
840
+ * and a key.
841
+ * @constructor
842
+ * @param title title of the certificate chooser dialog
843
+ * @param flags the flags that configure the capabilities of the button
844
+ * @returns the certificate chooser button instance
845
+ */
846
+ static new(title: string | null, flags: CertChooserFlags): CertChooser
847
+
848
+ // Overloads of new
849
+
850
+ /**
851
+ * Creates a new grid widget.
852
+ * @constructor
853
+ * @returns the new #GtkGrid
854
+ */
855
+ static new(): Gtk.Grid
856
+ _init(config?: CertChooser.ConstructorProperties): void
857
+ }
858
+
859
+ module MobileProvidersDatabase {
860
+
861
+ // Constructor properties interface
862
+
863
+ interface ConstructorProperties extends Gio.AsyncInitable.ConstructorProperties, Gio.Initable.ConstructorProperties, GObject.Object.ConstructorProperties {
864
+
865
+ // Own constructor properties of NMA-1.0.NMA.MobileProvidersDatabase
866
+
867
+ country_codes?: string | null
868
+ service_providers?: string | null
869
+ }
870
+
871
+ }
872
+
873
+ interface MobileProvidersDatabase extends Gio.AsyncInitable, Gio.Initable {
874
+
875
+ // Own properties of NMA-1.0.NMA.MobileProvidersDatabase
876
+
877
+ readonly country_codes: string | null
878
+ readonly service_providers: string | null
879
+
880
+ // Own fields of NMA-1.0.NMA.MobileProvidersDatabase
881
+
882
+ parent: GObject.Object
883
+ priv: MobileProvidersDatabasePrivate
884
+
885
+ // Owm methods of NMA-1.0.NMA.MobileProvidersDatabase
886
+
887
+ dump(): void
888
+ get_countries(): GLib.HashTable
889
+ lookup_3gpp_mcc_mnc(mccmnc: string | null): MobileProvider
890
+ lookup_cdma_sid(sid: number): MobileProvider
891
+ lookup_country(country_code: string | null): CountryInfo
892
+
893
+ // Class property signals of NMA-1.0.NMA.MobileProvidersDatabase
894
+
895
+ connect(sigName: "notify::country-codes", callback: (($obj: MobileProvidersDatabase, pspec: GObject.ParamSpec) => void)): number
896
+ connect_after(sigName: "notify::country-codes", callback: (($obj: MobileProvidersDatabase, pspec: GObject.ParamSpec) => void)): number
897
+ emit(sigName: "notify::country-codes", ...args: any[]): void
898
+ connect(sigName: "notify::service-providers", callback: (($obj: MobileProvidersDatabase, pspec: GObject.ParamSpec) => void)): number
899
+ connect_after(sigName: "notify::service-providers", callback: (($obj: MobileProvidersDatabase, pspec: GObject.ParamSpec) => void)): number
900
+ emit(sigName: "notify::service-providers", ...args: any[]): void
901
+ connect(sigName: string, callback: (...args: any[]) => void): number
902
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
903
+ emit(sigName: string, ...args: any[]): void
904
+ disconnect(id: number): void
905
+ }
906
+
907
+ class MobileProvidersDatabase extends GObject.Object {
908
+
909
+ // Own properties of NMA-1.0.NMA.MobileProvidersDatabase
910
+
911
+ static name: string
912
+ static $gtype: GObject.GType<MobileProvidersDatabase>
913
+
914
+ // Constructors of NMA-1.0.NMA.MobileProvidersDatabase
915
+
916
+ constructor(config?: MobileProvidersDatabase.ConstructorProperties)
917
+ static new_finish(res: Gio.AsyncResult): MobileProvidersDatabase
918
+ static new_sync(country_codes: string | null, service_providers: string | null, cancellable: Gio.Cancellable | null): MobileProvidersDatabase
919
+ _init(config?: MobileProvidersDatabase.ConstructorProperties): void
920
+ static new(country_codes: string | null, service_providers: string | null, cancellable: Gio.Cancellable | null, callback: Gio.AsyncReadyCallback<MobileProvidersDatabase> | null): void
921
+ }
922
+
923
+ module MobileWizard {
924
+
925
+ // Constructor properties interface
926
+
927
+ interface ConstructorProperties extends GObject.Object.ConstructorProperties {
928
+ }
929
+
930
+ }
931
+
932
+ interface MobileWizard {
933
+
934
+ // Owm methods of NMA-1.0.NMA.MobileWizard
935
+
936
+ destroy(): void
937
+ present(): void
938
+
939
+ // Class property signals of NMA-1.0.NMA.MobileWizard
940
+
941
+ connect(sigName: string, callback: (...args: any[]) => void): number
942
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
943
+ emit(sigName: string, ...args: any[]): void
944
+ disconnect(id: number): void
945
+ }
946
+
947
+ class MobileWizard extends GObject.Object {
948
+
949
+ // Own properties of NMA-1.0.NMA.MobileWizard
950
+
951
+ static name: string
952
+ static $gtype: GObject.GType<MobileWizard>
953
+
954
+ // Constructors of NMA-1.0.NMA.MobileWizard
955
+
956
+ constructor(config?: MobileWizard.ConstructorProperties)
957
+ _init(config?: MobileWizard.ConstructorProperties): void
958
+ }
959
+
960
+ module VpnPasswordDialog {
961
+
962
+ // Constructor properties interface
963
+
964
+ interface ConstructorProperties extends Atk.ImplementorIface.ConstructorProperties, Gtk.Buildable.ConstructorProperties, Gtk.Dialog.ConstructorProperties {
965
+ }
966
+
967
+ }
968
+
969
+ interface VpnPasswordDialog extends Atk.ImplementorIface, Gtk.Buildable {
970
+
971
+ // Conflicting properties
972
+
973
+ readonly window: Gtk.Window & Gdk.Window & Gdk.Window
974
+
975
+ // Own fields of NMA-1.0.NMA.VpnPasswordDialog
976
+
977
+ parent: Gtk.Dialog & Gtk.Container
978
+
979
+ // Owm methods of NMA-1.0.NMA.VpnPasswordDialog
980
+
981
+ focus_password(): void
982
+ focus_password_secondary(): void
983
+ focus_password_ternary(): void
984
+ get_password(): string | null
985
+ get_password_secondary(): string | null
986
+ get_password_ternary(): string | null
987
+ run_and_block(): boolean
988
+ set_password(password: string | null): void
989
+ set_password_label(label: string | null): void
990
+ set_password_secondary(password_secondary: string | null): void
991
+ set_password_secondary_label(label: string | null): void
992
+ set_password_ternary(password_ternary: string | null): void
993
+ set_password_ternary_label(label: string | null): void
994
+ set_show_password(show: boolean): void
995
+ set_show_password_secondary(show: boolean): void
996
+ set_show_password_ternary(show: boolean): void
997
+
998
+ // Conflicting methods
999
+
1000
+ /**
1001
+ * Activates the targets associated with the mnemonic.
1002
+ * @param keyval the mnemonic
1003
+ * @param modifier the modifiers
1004
+ * @returns %TRUE if the activation is done.
1005
+ */
1006
+ mnemonic_activate(keyval: number, modifier: Gdk.ModifierType): boolean
1007
+
1008
+ // Overloads of mnemonic_activate
1009
+
1010
+ /**
1011
+ * Emits the #GtkWidget::mnemonic-activate signal.
1012
+ * @param group_cycling %TRUE if there are other widgets with the same mnemonic
1013
+ * @returns %TRUE if the signal has been handled
1014
+ */
1015
+ mnemonic_activate(group_cycling: boolean): boolean
1016
+ /**
1017
+ * Emits the #GtkWidget::mnemonic-activate signal.
1018
+ * @param group_cycling %TRUE if there are other widgets with the same mnemonic
1019
+ * @returns %TRUE if the signal has been handled
1020
+ */
1021
+ mnemonic_activate(group_cycling: boolean): boolean
1022
+ /**
1023
+ * Emits a #GtkWidget::child-notify signal for the
1024
+ * [child property][child-properties]
1025
+ * `child_property` on the child.
1026
+ *
1027
+ * This is an analogue of g_object_notify() for child properties.
1028
+ *
1029
+ * Also see gtk_widget_child_notify().
1030
+ * @param child the child widget
1031
+ * @param child_property the name of a child property installed on the class of `container`
1032
+ */
1033
+ child_notify(child: Gtk.Widget, child_property: string | null): void
1034
+
1035
+ // Overloads of child_notify
1036
+
1037
+ /**
1038
+ * Emits a #GtkWidget::child-notify signal for the
1039
+ * [child property][child-properties] `child_property`
1040
+ * on `widget`.
1041
+ *
1042
+ * This is the analogue of g_object_notify() for child properties.
1043
+ *
1044
+ * Also see gtk_container_child_notify().
1045
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
1046
+ */
1047
+ child_notify(child_property: string | null): void
1048
+ /**
1049
+ * Emits a #GtkWidget::child-notify signal for the
1050
+ * [child property][child-properties] `child_property`
1051
+ * on `widget`.
1052
+ *
1053
+ * This is the analogue of g_object_notify() for child properties.
1054
+ *
1055
+ * Also see gtk_container_child_notify().
1056
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
1057
+ */
1058
+ child_notify(child_property: string | null): void
1059
+
1060
+ // Class property signals of NMA-1.0.NMA.VpnPasswordDialog
1061
+
1062
+ connect(sigName: "notify::use-header-bar", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1063
+ connect_after(sigName: "notify::use-header-bar", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1064
+ emit(sigName: "notify::use-header-bar", ...args: any[]): void
1065
+ connect(sigName: "notify::accept-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1066
+ connect_after(sigName: "notify::accept-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1067
+ emit(sigName: "notify::accept-focus", ...args: any[]): void
1068
+ connect(sigName: "notify::application", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1069
+ connect_after(sigName: "notify::application", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1070
+ emit(sigName: "notify::application", ...args: any[]): void
1071
+ connect(sigName: "notify::attached-to", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1072
+ connect_after(sigName: "notify::attached-to", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1073
+ emit(sigName: "notify::attached-to", ...args: any[]): void
1074
+ connect(sigName: "notify::decorated", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1075
+ connect_after(sigName: "notify::decorated", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1076
+ emit(sigName: "notify::decorated", ...args: any[]): void
1077
+ connect(sigName: "notify::default-height", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1078
+ connect_after(sigName: "notify::default-height", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1079
+ emit(sigName: "notify::default-height", ...args: any[]): void
1080
+ connect(sigName: "notify::default-width", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1081
+ connect_after(sigName: "notify::default-width", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1082
+ emit(sigName: "notify::default-width", ...args: any[]): void
1083
+ connect(sigName: "notify::deletable", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1084
+ connect_after(sigName: "notify::deletable", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1085
+ emit(sigName: "notify::deletable", ...args: any[]): void
1086
+ connect(sigName: "notify::destroy-with-parent", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1087
+ connect_after(sigName: "notify::destroy-with-parent", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1088
+ emit(sigName: "notify::destroy-with-parent", ...args: any[]): void
1089
+ connect(sigName: "notify::focus-on-map", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1090
+ connect_after(sigName: "notify::focus-on-map", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1091
+ emit(sigName: "notify::focus-on-map", ...args: any[]): void
1092
+ connect(sigName: "notify::focus-visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1093
+ connect_after(sigName: "notify::focus-visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1094
+ emit(sigName: "notify::focus-visible", ...args: any[]): void
1095
+ connect(sigName: "notify::gravity", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1096
+ connect_after(sigName: "notify::gravity", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1097
+ emit(sigName: "notify::gravity", ...args: any[]): void
1098
+ connect(sigName: "notify::has-resize-grip", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1099
+ connect_after(sigName: "notify::has-resize-grip", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1100
+ emit(sigName: "notify::has-resize-grip", ...args: any[]): void
1101
+ connect(sigName: "notify::has-toplevel-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1102
+ connect_after(sigName: "notify::has-toplevel-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1103
+ emit(sigName: "notify::has-toplevel-focus", ...args: any[]): void
1104
+ connect(sigName: "notify::hide-titlebar-when-maximized", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1105
+ connect_after(sigName: "notify::hide-titlebar-when-maximized", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1106
+ emit(sigName: "notify::hide-titlebar-when-maximized", ...args: any[]): void
1107
+ connect(sigName: "notify::icon", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1108
+ connect_after(sigName: "notify::icon", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1109
+ emit(sigName: "notify::icon", ...args: any[]): void
1110
+ connect(sigName: "notify::icon-name", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1111
+ connect_after(sigName: "notify::icon-name", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1112
+ emit(sigName: "notify::icon-name", ...args: any[]): void
1113
+ connect(sigName: "notify::is-active", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1114
+ connect_after(sigName: "notify::is-active", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1115
+ emit(sigName: "notify::is-active", ...args: any[]): void
1116
+ connect(sigName: "notify::is-maximized", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1117
+ connect_after(sigName: "notify::is-maximized", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1118
+ emit(sigName: "notify::is-maximized", ...args: any[]): void
1119
+ connect(sigName: "notify::mnemonics-visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1120
+ connect_after(sigName: "notify::mnemonics-visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1121
+ emit(sigName: "notify::mnemonics-visible", ...args: any[]): void
1122
+ connect(sigName: "notify::modal", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1123
+ connect_after(sigName: "notify::modal", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1124
+ emit(sigName: "notify::modal", ...args: any[]): void
1125
+ connect(sigName: "notify::resizable", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1126
+ connect_after(sigName: "notify::resizable", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1127
+ emit(sigName: "notify::resizable", ...args: any[]): void
1128
+ connect(sigName: "notify::resize-grip-visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1129
+ connect_after(sigName: "notify::resize-grip-visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1130
+ emit(sigName: "notify::resize-grip-visible", ...args: any[]): void
1131
+ connect(sigName: "notify::role", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1132
+ connect_after(sigName: "notify::role", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1133
+ emit(sigName: "notify::role", ...args: any[]): void
1134
+ connect(sigName: "notify::screen", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1135
+ connect_after(sigName: "notify::screen", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1136
+ emit(sigName: "notify::screen", ...args: any[]): void
1137
+ connect(sigName: "notify::skip-pager-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1138
+ connect_after(sigName: "notify::skip-pager-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1139
+ emit(sigName: "notify::skip-pager-hint", ...args: any[]): void
1140
+ connect(sigName: "notify::skip-taskbar-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1141
+ connect_after(sigName: "notify::skip-taskbar-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1142
+ emit(sigName: "notify::skip-taskbar-hint", ...args: any[]): void
1143
+ connect(sigName: "notify::startup-id", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1144
+ connect_after(sigName: "notify::startup-id", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1145
+ emit(sigName: "notify::startup-id", ...args: any[]): void
1146
+ connect(sigName: "notify::title", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1147
+ connect_after(sigName: "notify::title", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1148
+ emit(sigName: "notify::title", ...args: any[]): void
1149
+ connect(sigName: "notify::transient-for", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1150
+ connect_after(sigName: "notify::transient-for", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1151
+ emit(sigName: "notify::transient-for", ...args: any[]): void
1152
+ connect(sigName: "notify::type", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1153
+ connect_after(sigName: "notify::type", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1154
+ emit(sigName: "notify::type", ...args: any[]): void
1155
+ connect(sigName: "notify::type-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1156
+ connect_after(sigName: "notify::type-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1157
+ emit(sigName: "notify::type-hint", ...args: any[]): void
1158
+ connect(sigName: "notify::urgency-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1159
+ connect_after(sigName: "notify::urgency-hint", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1160
+ emit(sigName: "notify::urgency-hint", ...args: any[]): void
1161
+ connect(sigName: "notify::window-position", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1162
+ connect_after(sigName: "notify::window-position", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1163
+ emit(sigName: "notify::window-position", ...args: any[]): void
1164
+ connect(sigName: "notify::border-width", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1165
+ connect_after(sigName: "notify::border-width", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1166
+ emit(sigName: "notify::border-width", ...args: any[]): void
1167
+ connect(sigName: "notify::child", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1168
+ connect_after(sigName: "notify::child", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1169
+ emit(sigName: "notify::child", ...args: any[]): void
1170
+ connect(sigName: "notify::resize-mode", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1171
+ connect_after(sigName: "notify::resize-mode", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1172
+ emit(sigName: "notify::resize-mode", ...args: any[]): void
1173
+ connect(sigName: "notify::app-paintable", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1174
+ connect_after(sigName: "notify::app-paintable", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1175
+ emit(sigName: "notify::app-paintable", ...args: any[]): void
1176
+ connect(sigName: "notify::can-default", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1177
+ connect_after(sigName: "notify::can-default", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1178
+ emit(sigName: "notify::can-default", ...args: any[]): void
1179
+ connect(sigName: "notify::can-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1180
+ connect_after(sigName: "notify::can-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1181
+ emit(sigName: "notify::can-focus", ...args: any[]): void
1182
+ connect(sigName: "notify::composite-child", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1183
+ connect_after(sigName: "notify::composite-child", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1184
+ emit(sigName: "notify::composite-child", ...args: any[]): void
1185
+ connect(sigName: "notify::double-buffered", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1186
+ connect_after(sigName: "notify::double-buffered", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1187
+ emit(sigName: "notify::double-buffered", ...args: any[]): void
1188
+ connect(sigName: "notify::events", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1189
+ connect_after(sigName: "notify::events", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1190
+ emit(sigName: "notify::events", ...args: any[]): void
1191
+ connect(sigName: "notify::expand", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1192
+ connect_after(sigName: "notify::expand", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1193
+ emit(sigName: "notify::expand", ...args: any[]): void
1194
+ connect(sigName: "notify::focus-on-click", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1195
+ connect_after(sigName: "notify::focus-on-click", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1196
+ emit(sigName: "notify::focus-on-click", ...args: any[]): void
1197
+ connect(sigName: "notify::halign", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1198
+ connect_after(sigName: "notify::halign", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1199
+ emit(sigName: "notify::halign", ...args: any[]): void
1200
+ connect(sigName: "notify::has-default", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1201
+ connect_after(sigName: "notify::has-default", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1202
+ emit(sigName: "notify::has-default", ...args: any[]): void
1203
+ connect(sigName: "notify::has-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1204
+ connect_after(sigName: "notify::has-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1205
+ emit(sigName: "notify::has-focus", ...args: any[]): void
1206
+ connect(sigName: "notify::has-tooltip", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1207
+ connect_after(sigName: "notify::has-tooltip", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1208
+ emit(sigName: "notify::has-tooltip", ...args: any[]): void
1209
+ connect(sigName: "notify::height-request", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1210
+ connect_after(sigName: "notify::height-request", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1211
+ emit(sigName: "notify::height-request", ...args: any[]): void
1212
+ connect(sigName: "notify::hexpand", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1213
+ connect_after(sigName: "notify::hexpand", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1214
+ emit(sigName: "notify::hexpand", ...args: any[]): void
1215
+ connect(sigName: "notify::hexpand-set", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1216
+ connect_after(sigName: "notify::hexpand-set", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1217
+ emit(sigName: "notify::hexpand-set", ...args: any[]): void
1218
+ connect(sigName: "notify::is-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1219
+ connect_after(sigName: "notify::is-focus", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1220
+ emit(sigName: "notify::is-focus", ...args: any[]): void
1221
+ connect(sigName: "notify::margin", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1222
+ connect_after(sigName: "notify::margin", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1223
+ emit(sigName: "notify::margin", ...args: any[]): void
1224
+ connect(sigName: "notify::margin-bottom", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1225
+ connect_after(sigName: "notify::margin-bottom", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1226
+ emit(sigName: "notify::margin-bottom", ...args: any[]): void
1227
+ connect(sigName: "notify::margin-end", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1228
+ connect_after(sigName: "notify::margin-end", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1229
+ emit(sigName: "notify::margin-end", ...args: any[]): void
1230
+ connect(sigName: "notify::margin-left", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1231
+ connect_after(sigName: "notify::margin-left", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1232
+ emit(sigName: "notify::margin-left", ...args: any[]): void
1233
+ connect(sigName: "notify::margin-right", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1234
+ connect_after(sigName: "notify::margin-right", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1235
+ emit(sigName: "notify::margin-right", ...args: any[]): void
1236
+ connect(sigName: "notify::margin-start", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1237
+ connect_after(sigName: "notify::margin-start", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1238
+ emit(sigName: "notify::margin-start", ...args: any[]): void
1239
+ connect(sigName: "notify::margin-top", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1240
+ connect_after(sigName: "notify::margin-top", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1241
+ emit(sigName: "notify::margin-top", ...args: any[]): void
1242
+ connect(sigName: "notify::name", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1243
+ connect_after(sigName: "notify::name", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1244
+ emit(sigName: "notify::name", ...args: any[]): void
1245
+ connect(sigName: "notify::no-show-all", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1246
+ connect_after(sigName: "notify::no-show-all", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1247
+ emit(sigName: "notify::no-show-all", ...args: any[]): void
1248
+ connect(sigName: "notify::opacity", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1249
+ connect_after(sigName: "notify::opacity", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1250
+ emit(sigName: "notify::opacity", ...args: any[]): void
1251
+ connect(sigName: "notify::parent", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1252
+ connect_after(sigName: "notify::parent", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1253
+ emit(sigName: "notify::parent", ...args: any[]): void
1254
+ connect(sigName: "notify::receives-default", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1255
+ connect_after(sigName: "notify::receives-default", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1256
+ emit(sigName: "notify::receives-default", ...args: any[]): void
1257
+ connect(sigName: "notify::scale-factor", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1258
+ connect_after(sigName: "notify::scale-factor", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1259
+ emit(sigName: "notify::scale-factor", ...args: any[]): void
1260
+ connect(sigName: "notify::sensitive", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1261
+ connect_after(sigName: "notify::sensitive", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1262
+ emit(sigName: "notify::sensitive", ...args: any[]): void
1263
+ connect(sigName: "notify::style", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1264
+ connect_after(sigName: "notify::style", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1265
+ emit(sigName: "notify::style", ...args: any[]): void
1266
+ connect(sigName: "notify::tooltip-markup", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1267
+ connect_after(sigName: "notify::tooltip-markup", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1268
+ emit(sigName: "notify::tooltip-markup", ...args: any[]): void
1269
+ connect(sigName: "notify::tooltip-text", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1270
+ connect_after(sigName: "notify::tooltip-text", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1271
+ emit(sigName: "notify::tooltip-text", ...args: any[]): void
1272
+ connect(sigName: "notify::valign", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1273
+ connect_after(sigName: "notify::valign", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1274
+ emit(sigName: "notify::valign", ...args: any[]): void
1275
+ connect(sigName: "notify::vexpand", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1276
+ connect_after(sigName: "notify::vexpand", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1277
+ emit(sigName: "notify::vexpand", ...args: any[]): void
1278
+ connect(sigName: "notify::vexpand-set", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1279
+ connect_after(sigName: "notify::vexpand-set", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1280
+ emit(sigName: "notify::vexpand-set", ...args: any[]): void
1281
+ connect(sigName: "notify::visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1282
+ connect_after(sigName: "notify::visible", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1283
+ emit(sigName: "notify::visible", ...args: any[]): void
1284
+ connect(sigName: "notify::width-request", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1285
+ connect_after(sigName: "notify::width-request", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1286
+ emit(sigName: "notify::width-request", ...args: any[]): void
1287
+ connect(sigName: "notify::window", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1288
+ connect_after(sigName: "notify::window", callback: (($obj: VpnPasswordDialog, pspec: GObject.ParamSpec) => void)): number
1289
+ emit(sigName: "notify::window", ...args: any[]): void
1290
+ connect(sigName: string, callback: (...args: any[]) => void): number
1291
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1292
+ emit(sigName: string, ...args: any[]): void
1293
+ disconnect(id: number): void
1294
+ }
1295
+
1296
+ class VpnPasswordDialog extends Gtk.Dialog {
1297
+
1298
+ // Own properties of NMA-1.0.NMA.VpnPasswordDialog
1299
+
1300
+ static name: string
1301
+ static $gtype: GObject.GType<VpnPasswordDialog>
1302
+
1303
+ // Constructors of NMA-1.0.NMA.VpnPasswordDialog
1304
+
1305
+ constructor(config?: VpnPasswordDialog.ConstructorProperties)
1306
+ constructor(title: string | null, message: string | null, password: string | null)
1307
+ static new(title: string | null, message: string | null, password: string | null): VpnPasswordDialog
1308
+
1309
+ // Overloads of new
1310
+
1311
+ /**
1312
+ * Creates a new dialog box.
1313
+ *
1314
+ * Widgets should not be packed into this #GtkWindow
1315
+ * directly, but into the `vbox` and `action_area,` as described above.
1316
+ * @constructor
1317
+ * @returns the new dialog as a #GtkWidget
1318
+ */
1319
+ static new(): Gtk.Dialog
1320
+ /**
1321
+ * Creates a new #GtkWindow, which is a toplevel window that can
1322
+ * contain other widgets. Nearly always, the type of the window should
1323
+ * be #GTK_WINDOW_TOPLEVEL. If you’re implementing something like a
1324
+ * popup menu from scratch (which is a bad idea, just use #GtkMenu),
1325
+ * you might use #GTK_WINDOW_POPUP. #GTK_WINDOW_POPUP is not for
1326
+ * dialogs, though in some other toolkits dialogs are called “popups”.
1327
+ * In GTK+, #GTK_WINDOW_POPUP means a pop-up menu or pop-up tooltip.
1328
+ * On X11, popup windows are not controlled by the
1329
+ * [window manager][gtk-X11-arch].
1330
+ *
1331
+ * If you simply want an undecorated window (no window borders), use
1332
+ * gtk_window_set_decorated(), don’t use #GTK_WINDOW_POPUP.
1333
+ *
1334
+ * All top-level windows created by gtk_window_new() are stored in
1335
+ * an internal top-level window list. This list can be obtained from
1336
+ * gtk_window_list_toplevels(). Due to Gtk+ keeping a reference to
1337
+ * the window internally, gtk_window_new() does not return a reference
1338
+ * to the caller.
1339
+ *
1340
+ * To delete a #GtkWindow, call gtk_widget_destroy().
1341
+ * @constructor
1342
+ * @param type type of window
1343
+ * @returns a new #GtkWindow.
1344
+ */
1345
+ static new(type: Gtk.WindowType): Gtk.Window
1346
+ _init(config?: VpnPasswordDialog.ConstructorProperties): void
1347
+ }
1348
+
1349
+ module WifiDialog {
1350
+
1351
+ // Constructor properties interface
1352
+
1353
+ interface ConstructorProperties extends Atk.ImplementorIface.ConstructorProperties, Gtk.Buildable.ConstructorProperties, Gtk.Dialog.ConstructorProperties {
1354
+ }
1355
+
1356
+ }
1357
+
1358
+ interface WifiDialog extends Atk.ImplementorIface, Gtk.Buildable {
1359
+
1360
+ // Conflicting properties
1361
+
1362
+ readonly window: Gtk.Window & Gdk.Window & Gdk.Window
1363
+
1364
+ // Own fields of NMA-1.0.NMA.WifiDialog
1365
+
1366
+ parent: Gtk.Dialog & Gtk.Container
1367
+
1368
+ // Owm methods of NMA-1.0.NMA.WifiDialog
1369
+
1370
+ get_connection(): [ /* returnType */ NM.Connection, /* device */ NM.Device, /* ap */ NM.AccessPoint ]
1371
+ get_nag_ignored(): boolean
1372
+ nag_user(): Gtk.Widget
1373
+ set_nag_ignored(ignored: boolean): void
1374
+
1375
+ // Conflicting methods
1376
+
1377
+ /**
1378
+ * Activates the targets associated with the mnemonic.
1379
+ * @param keyval the mnemonic
1380
+ * @param modifier the modifiers
1381
+ * @returns %TRUE if the activation is done.
1382
+ */
1383
+ mnemonic_activate(keyval: number, modifier: Gdk.ModifierType): boolean
1384
+
1385
+ // Overloads of mnemonic_activate
1386
+
1387
+ /**
1388
+ * Emits the #GtkWidget::mnemonic-activate signal.
1389
+ * @param group_cycling %TRUE if there are other widgets with the same mnemonic
1390
+ * @returns %TRUE if the signal has been handled
1391
+ */
1392
+ mnemonic_activate(group_cycling: boolean): boolean
1393
+ /**
1394
+ * Emits the #GtkWidget::mnemonic-activate signal.
1395
+ * @param group_cycling %TRUE if there are other widgets with the same mnemonic
1396
+ * @returns %TRUE if the signal has been handled
1397
+ */
1398
+ mnemonic_activate(group_cycling: boolean): boolean
1399
+ /**
1400
+ * Emits a #GtkWidget::child-notify signal for the
1401
+ * [child property][child-properties]
1402
+ * `child_property` on the child.
1403
+ *
1404
+ * This is an analogue of g_object_notify() for child properties.
1405
+ *
1406
+ * Also see gtk_widget_child_notify().
1407
+ * @param child the child widget
1408
+ * @param child_property the name of a child property installed on the class of `container`
1409
+ */
1410
+ child_notify(child: Gtk.Widget, child_property: string | null): void
1411
+
1412
+ // Overloads of child_notify
1413
+
1414
+ /**
1415
+ * Emits a #GtkWidget::child-notify signal for the
1416
+ * [child property][child-properties] `child_property`
1417
+ * on `widget`.
1418
+ *
1419
+ * This is the analogue of g_object_notify() for child properties.
1420
+ *
1421
+ * Also see gtk_container_child_notify().
1422
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
1423
+ */
1424
+ child_notify(child_property: string | null): void
1425
+ /**
1426
+ * Emits a #GtkWidget::child-notify signal for the
1427
+ * [child property][child-properties] `child_property`
1428
+ * on `widget`.
1429
+ *
1430
+ * This is the analogue of g_object_notify() for child properties.
1431
+ *
1432
+ * Also see gtk_container_child_notify().
1433
+ * @param child_property the name of a child property installed on the class of `widget’`s parent
1434
+ */
1435
+ child_notify(child_property: string | null): void
1436
+
1437
+ // Class property signals of NMA-1.0.NMA.WifiDialog
1438
+
1439
+ connect(sigName: "notify::use-header-bar", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1440
+ connect_after(sigName: "notify::use-header-bar", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1441
+ emit(sigName: "notify::use-header-bar", ...args: any[]): void
1442
+ connect(sigName: "notify::accept-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1443
+ connect_after(sigName: "notify::accept-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1444
+ emit(sigName: "notify::accept-focus", ...args: any[]): void
1445
+ connect(sigName: "notify::application", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1446
+ connect_after(sigName: "notify::application", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1447
+ emit(sigName: "notify::application", ...args: any[]): void
1448
+ connect(sigName: "notify::attached-to", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1449
+ connect_after(sigName: "notify::attached-to", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1450
+ emit(sigName: "notify::attached-to", ...args: any[]): void
1451
+ connect(sigName: "notify::decorated", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1452
+ connect_after(sigName: "notify::decorated", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1453
+ emit(sigName: "notify::decorated", ...args: any[]): void
1454
+ connect(sigName: "notify::default-height", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1455
+ connect_after(sigName: "notify::default-height", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1456
+ emit(sigName: "notify::default-height", ...args: any[]): void
1457
+ connect(sigName: "notify::default-width", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1458
+ connect_after(sigName: "notify::default-width", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1459
+ emit(sigName: "notify::default-width", ...args: any[]): void
1460
+ connect(sigName: "notify::deletable", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1461
+ connect_after(sigName: "notify::deletable", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1462
+ emit(sigName: "notify::deletable", ...args: any[]): void
1463
+ connect(sigName: "notify::destroy-with-parent", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1464
+ connect_after(sigName: "notify::destroy-with-parent", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1465
+ emit(sigName: "notify::destroy-with-parent", ...args: any[]): void
1466
+ connect(sigName: "notify::focus-on-map", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1467
+ connect_after(sigName: "notify::focus-on-map", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1468
+ emit(sigName: "notify::focus-on-map", ...args: any[]): void
1469
+ connect(sigName: "notify::focus-visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1470
+ connect_after(sigName: "notify::focus-visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1471
+ emit(sigName: "notify::focus-visible", ...args: any[]): void
1472
+ connect(sigName: "notify::gravity", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1473
+ connect_after(sigName: "notify::gravity", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1474
+ emit(sigName: "notify::gravity", ...args: any[]): void
1475
+ connect(sigName: "notify::has-resize-grip", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1476
+ connect_after(sigName: "notify::has-resize-grip", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1477
+ emit(sigName: "notify::has-resize-grip", ...args: any[]): void
1478
+ connect(sigName: "notify::has-toplevel-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1479
+ connect_after(sigName: "notify::has-toplevel-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1480
+ emit(sigName: "notify::has-toplevel-focus", ...args: any[]): void
1481
+ connect(sigName: "notify::hide-titlebar-when-maximized", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1482
+ connect_after(sigName: "notify::hide-titlebar-when-maximized", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1483
+ emit(sigName: "notify::hide-titlebar-when-maximized", ...args: any[]): void
1484
+ connect(sigName: "notify::icon", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1485
+ connect_after(sigName: "notify::icon", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1486
+ emit(sigName: "notify::icon", ...args: any[]): void
1487
+ connect(sigName: "notify::icon-name", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1488
+ connect_after(sigName: "notify::icon-name", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1489
+ emit(sigName: "notify::icon-name", ...args: any[]): void
1490
+ connect(sigName: "notify::is-active", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1491
+ connect_after(sigName: "notify::is-active", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1492
+ emit(sigName: "notify::is-active", ...args: any[]): void
1493
+ connect(sigName: "notify::is-maximized", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1494
+ connect_after(sigName: "notify::is-maximized", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1495
+ emit(sigName: "notify::is-maximized", ...args: any[]): void
1496
+ connect(sigName: "notify::mnemonics-visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1497
+ connect_after(sigName: "notify::mnemonics-visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1498
+ emit(sigName: "notify::mnemonics-visible", ...args: any[]): void
1499
+ connect(sigName: "notify::modal", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1500
+ connect_after(sigName: "notify::modal", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1501
+ emit(sigName: "notify::modal", ...args: any[]): void
1502
+ connect(sigName: "notify::resizable", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1503
+ connect_after(sigName: "notify::resizable", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1504
+ emit(sigName: "notify::resizable", ...args: any[]): void
1505
+ connect(sigName: "notify::resize-grip-visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1506
+ connect_after(sigName: "notify::resize-grip-visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1507
+ emit(sigName: "notify::resize-grip-visible", ...args: any[]): void
1508
+ connect(sigName: "notify::role", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1509
+ connect_after(sigName: "notify::role", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1510
+ emit(sigName: "notify::role", ...args: any[]): void
1511
+ connect(sigName: "notify::screen", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1512
+ connect_after(sigName: "notify::screen", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1513
+ emit(sigName: "notify::screen", ...args: any[]): void
1514
+ connect(sigName: "notify::skip-pager-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1515
+ connect_after(sigName: "notify::skip-pager-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1516
+ emit(sigName: "notify::skip-pager-hint", ...args: any[]): void
1517
+ connect(sigName: "notify::skip-taskbar-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1518
+ connect_after(sigName: "notify::skip-taskbar-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1519
+ emit(sigName: "notify::skip-taskbar-hint", ...args: any[]): void
1520
+ connect(sigName: "notify::startup-id", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1521
+ connect_after(sigName: "notify::startup-id", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1522
+ emit(sigName: "notify::startup-id", ...args: any[]): void
1523
+ connect(sigName: "notify::title", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1524
+ connect_after(sigName: "notify::title", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1525
+ emit(sigName: "notify::title", ...args: any[]): void
1526
+ connect(sigName: "notify::transient-for", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1527
+ connect_after(sigName: "notify::transient-for", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1528
+ emit(sigName: "notify::transient-for", ...args: any[]): void
1529
+ connect(sigName: "notify::type", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1530
+ connect_after(sigName: "notify::type", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1531
+ emit(sigName: "notify::type", ...args: any[]): void
1532
+ connect(sigName: "notify::type-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1533
+ connect_after(sigName: "notify::type-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1534
+ emit(sigName: "notify::type-hint", ...args: any[]): void
1535
+ connect(sigName: "notify::urgency-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1536
+ connect_after(sigName: "notify::urgency-hint", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1537
+ emit(sigName: "notify::urgency-hint", ...args: any[]): void
1538
+ connect(sigName: "notify::window-position", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1539
+ connect_after(sigName: "notify::window-position", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1540
+ emit(sigName: "notify::window-position", ...args: any[]): void
1541
+ connect(sigName: "notify::border-width", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1542
+ connect_after(sigName: "notify::border-width", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1543
+ emit(sigName: "notify::border-width", ...args: any[]): void
1544
+ connect(sigName: "notify::child", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1545
+ connect_after(sigName: "notify::child", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1546
+ emit(sigName: "notify::child", ...args: any[]): void
1547
+ connect(sigName: "notify::resize-mode", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1548
+ connect_after(sigName: "notify::resize-mode", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1549
+ emit(sigName: "notify::resize-mode", ...args: any[]): void
1550
+ connect(sigName: "notify::app-paintable", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1551
+ connect_after(sigName: "notify::app-paintable", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1552
+ emit(sigName: "notify::app-paintable", ...args: any[]): void
1553
+ connect(sigName: "notify::can-default", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1554
+ connect_after(sigName: "notify::can-default", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1555
+ emit(sigName: "notify::can-default", ...args: any[]): void
1556
+ connect(sigName: "notify::can-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1557
+ connect_after(sigName: "notify::can-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1558
+ emit(sigName: "notify::can-focus", ...args: any[]): void
1559
+ connect(sigName: "notify::composite-child", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1560
+ connect_after(sigName: "notify::composite-child", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1561
+ emit(sigName: "notify::composite-child", ...args: any[]): void
1562
+ connect(sigName: "notify::double-buffered", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1563
+ connect_after(sigName: "notify::double-buffered", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1564
+ emit(sigName: "notify::double-buffered", ...args: any[]): void
1565
+ connect(sigName: "notify::events", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1566
+ connect_after(sigName: "notify::events", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1567
+ emit(sigName: "notify::events", ...args: any[]): void
1568
+ connect(sigName: "notify::expand", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1569
+ connect_after(sigName: "notify::expand", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1570
+ emit(sigName: "notify::expand", ...args: any[]): void
1571
+ connect(sigName: "notify::focus-on-click", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1572
+ connect_after(sigName: "notify::focus-on-click", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1573
+ emit(sigName: "notify::focus-on-click", ...args: any[]): void
1574
+ connect(sigName: "notify::halign", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1575
+ connect_after(sigName: "notify::halign", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1576
+ emit(sigName: "notify::halign", ...args: any[]): void
1577
+ connect(sigName: "notify::has-default", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1578
+ connect_after(sigName: "notify::has-default", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1579
+ emit(sigName: "notify::has-default", ...args: any[]): void
1580
+ connect(sigName: "notify::has-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1581
+ connect_after(sigName: "notify::has-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1582
+ emit(sigName: "notify::has-focus", ...args: any[]): void
1583
+ connect(sigName: "notify::has-tooltip", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1584
+ connect_after(sigName: "notify::has-tooltip", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1585
+ emit(sigName: "notify::has-tooltip", ...args: any[]): void
1586
+ connect(sigName: "notify::height-request", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1587
+ connect_after(sigName: "notify::height-request", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1588
+ emit(sigName: "notify::height-request", ...args: any[]): void
1589
+ connect(sigName: "notify::hexpand", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1590
+ connect_after(sigName: "notify::hexpand", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1591
+ emit(sigName: "notify::hexpand", ...args: any[]): void
1592
+ connect(sigName: "notify::hexpand-set", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1593
+ connect_after(sigName: "notify::hexpand-set", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1594
+ emit(sigName: "notify::hexpand-set", ...args: any[]): void
1595
+ connect(sigName: "notify::is-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1596
+ connect_after(sigName: "notify::is-focus", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1597
+ emit(sigName: "notify::is-focus", ...args: any[]): void
1598
+ connect(sigName: "notify::margin", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1599
+ connect_after(sigName: "notify::margin", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1600
+ emit(sigName: "notify::margin", ...args: any[]): void
1601
+ connect(sigName: "notify::margin-bottom", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1602
+ connect_after(sigName: "notify::margin-bottom", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1603
+ emit(sigName: "notify::margin-bottom", ...args: any[]): void
1604
+ connect(sigName: "notify::margin-end", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1605
+ connect_after(sigName: "notify::margin-end", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1606
+ emit(sigName: "notify::margin-end", ...args: any[]): void
1607
+ connect(sigName: "notify::margin-left", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1608
+ connect_after(sigName: "notify::margin-left", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1609
+ emit(sigName: "notify::margin-left", ...args: any[]): void
1610
+ connect(sigName: "notify::margin-right", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1611
+ connect_after(sigName: "notify::margin-right", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1612
+ emit(sigName: "notify::margin-right", ...args: any[]): void
1613
+ connect(sigName: "notify::margin-start", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1614
+ connect_after(sigName: "notify::margin-start", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1615
+ emit(sigName: "notify::margin-start", ...args: any[]): void
1616
+ connect(sigName: "notify::margin-top", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1617
+ connect_after(sigName: "notify::margin-top", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1618
+ emit(sigName: "notify::margin-top", ...args: any[]): void
1619
+ connect(sigName: "notify::name", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1620
+ connect_after(sigName: "notify::name", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1621
+ emit(sigName: "notify::name", ...args: any[]): void
1622
+ connect(sigName: "notify::no-show-all", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1623
+ connect_after(sigName: "notify::no-show-all", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1624
+ emit(sigName: "notify::no-show-all", ...args: any[]): void
1625
+ connect(sigName: "notify::opacity", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1626
+ connect_after(sigName: "notify::opacity", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1627
+ emit(sigName: "notify::opacity", ...args: any[]): void
1628
+ connect(sigName: "notify::parent", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1629
+ connect_after(sigName: "notify::parent", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1630
+ emit(sigName: "notify::parent", ...args: any[]): void
1631
+ connect(sigName: "notify::receives-default", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1632
+ connect_after(sigName: "notify::receives-default", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1633
+ emit(sigName: "notify::receives-default", ...args: any[]): void
1634
+ connect(sigName: "notify::scale-factor", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1635
+ connect_after(sigName: "notify::scale-factor", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1636
+ emit(sigName: "notify::scale-factor", ...args: any[]): void
1637
+ connect(sigName: "notify::sensitive", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1638
+ connect_after(sigName: "notify::sensitive", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1639
+ emit(sigName: "notify::sensitive", ...args: any[]): void
1640
+ connect(sigName: "notify::style", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1641
+ connect_after(sigName: "notify::style", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1642
+ emit(sigName: "notify::style", ...args: any[]): void
1643
+ connect(sigName: "notify::tooltip-markup", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1644
+ connect_after(sigName: "notify::tooltip-markup", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1645
+ emit(sigName: "notify::tooltip-markup", ...args: any[]): void
1646
+ connect(sigName: "notify::tooltip-text", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1647
+ connect_after(sigName: "notify::tooltip-text", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1648
+ emit(sigName: "notify::tooltip-text", ...args: any[]): void
1649
+ connect(sigName: "notify::valign", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1650
+ connect_after(sigName: "notify::valign", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1651
+ emit(sigName: "notify::valign", ...args: any[]): void
1652
+ connect(sigName: "notify::vexpand", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1653
+ connect_after(sigName: "notify::vexpand", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1654
+ emit(sigName: "notify::vexpand", ...args: any[]): void
1655
+ connect(sigName: "notify::vexpand-set", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1656
+ connect_after(sigName: "notify::vexpand-set", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1657
+ emit(sigName: "notify::vexpand-set", ...args: any[]): void
1658
+ connect(sigName: "notify::visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1659
+ connect_after(sigName: "notify::visible", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1660
+ emit(sigName: "notify::visible", ...args: any[]): void
1661
+ connect(sigName: "notify::width-request", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1662
+ connect_after(sigName: "notify::width-request", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1663
+ emit(sigName: "notify::width-request", ...args: any[]): void
1664
+ connect(sigName: "notify::window", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1665
+ connect_after(sigName: "notify::window", callback: (($obj: WifiDialog, pspec: GObject.ParamSpec) => void)): number
1666
+ emit(sigName: "notify::window", ...args: any[]): void
1667
+ connect(sigName: string, callback: (...args: any[]) => void): number
1668
+ connect_after(sigName: string, callback: (...args: any[]) => void): number
1669
+ emit(sigName: string, ...args: any[]): void
1670
+ disconnect(id: number): void
1671
+ }
1672
+
1673
+ class WifiDialog extends Gtk.Dialog {
1674
+
1675
+ // Own properties of NMA-1.0.NMA.WifiDialog
1676
+
1677
+ static name: string
1678
+ static $gtype: GObject.GType<WifiDialog>
1679
+
1680
+ // Constructors of NMA-1.0.NMA.WifiDialog
1681
+
1682
+ constructor(config?: WifiDialog.ConstructorProperties)
1683
+ /**
1684
+ * Creates a wifi connection dialog and populates it with settings from
1685
+ * `connection` if given. If `device` is not given a device selection combo box
1686
+ * will be included. If `connection` is not given a connection selection combo
1687
+ * box will be included. If `secrets_only` is %FALSE a complete connection
1688
+ * creator/editor dialog is returned, otherwise only wifi security secrets
1689
+ * relevant to the security settings in `connection` are going to be shown and
1690
+ * will be editable.
1691
+ * @constructor
1692
+ * @param client client to retrieve list of devices or connections from
1693
+ * @param connection connection to be shown/edited or %NULL
1694
+ * @param device device to check connection compatibility against
1695
+ * @param ap AP to check connection compatibility against
1696
+ * @param secrets_only whether to only ask for secrets for given connection
1697
+ * @returns the dialog widget or %NULL in case of error
1698
+ */
1699
+ constructor(client: NM.Client, connection: NM.Connection, device: NM.Device, ap: NM.AccessPoint, secrets_only: boolean)
1700
+ /**
1701
+ * Creates a wifi connection dialog and populates it with settings from
1702
+ * `connection` if given. If `device` is not given a device selection combo box
1703
+ * will be included. If `connection` is not given a connection selection combo
1704
+ * box will be included. If `secrets_only` is %FALSE a complete connection
1705
+ * creator/editor dialog is returned, otherwise only wifi security secrets
1706
+ * relevant to the security settings in `connection` are going to be shown and
1707
+ * will be editable.
1708
+ * @constructor
1709
+ * @param client client to retrieve list of devices or connections from
1710
+ * @param connection connection to be shown/edited or %NULL
1711
+ * @param device device to check connection compatibility against
1712
+ * @param ap AP to check connection compatibility against
1713
+ * @param secrets_only whether to only ask for secrets for given connection
1714
+ * @returns the dialog widget or %NULL in case of error
1715
+ */
1716
+ static new(client: NM.Client, connection: NM.Connection, device: NM.Device, ap: NM.AccessPoint, secrets_only: boolean): WifiDialog
1717
+
1718
+ // Overloads of new
1719
+
1720
+ /**
1721
+ * Creates a new dialog box.
1722
+ *
1723
+ * Widgets should not be packed into this #GtkWindow
1724
+ * directly, but into the `vbox` and `action_area,` as described above.
1725
+ * @constructor
1726
+ * @returns the new dialog as a #GtkWidget
1727
+ */
1728
+ static new(): Gtk.Dialog
1729
+ /**
1730
+ * Creates a new #GtkWindow, which is a toplevel window that can
1731
+ * contain other widgets. Nearly always, the type of the window should
1732
+ * be #GTK_WINDOW_TOPLEVEL. If you’re implementing something like a
1733
+ * popup menu from scratch (which is a bad idea, just use #GtkMenu),
1734
+ * you might use #GTK_WINDOW_POPUP. #GTK_WINDOW_POPUP is not for
1735
+ * dialogs, though in some other toolkits dialogs are called “popups”.
1736
+ * In GTK+, #GTK_WINDOW_POPUP means a pop-up menu or pop-up tooltip.
1737
+ * On X11, popup windows are not controlled by the
1738
+ * [window manager][gtk-X11-arch].
1739
+ *
1740
+ * If you simply want an undecorated window (no window borders), use
1741
+ * gtk_window_set_decorated(), don’t use #GTK_WINDOW_POPUP.
1742
+ *
1743
+ * All top-level windows created by gtk_window_new() are stored in
1744
+ * an internal top-level window list. This list can be obtained from
1745
+ * gtk_window_list_toplevels(). Due to Gtk+ keeping a reference to
1746
+ * the window internally, gtk_window_new() does not return a reference
1747
+ * to the caller.
1748
+ *
1749
+ * To delete a #GtkWindow, call gtk_widget_destroy().
1750
+ * @constructor
1751
+ * @param type type of window
1752
+ * @returns a new #GtkWindow.
1753
+ */
1754
+ static new(type: Gtk.WindowType): Gtk.Window
1755
+ static new_for_create(client: NM.Client): WifiDialog
1756
+ static new_for_hidden(client: NM.Client): WifiDialog
1757
+ static new_for_other(client: NM.Client): WifiDialog
1758
+ /**
1759
+ * Creates a wifi secrets dialog and populates it with setting values from
1760
+ * `connection`. If `secrets_setting_name` and `secrets_hints` are not given
1761
+ * this function creates an identical dialog as nma_wifi_dialog_new() would
1762
+ * create with the `secrets_only` parameter %TRUE. Otherwise
1763
+ * `secrets_setting_name` and `secrets_hints` determine the list of specific
1764
+ * secrets that are being requested from the user and no editable entries
1765
+ * are shown for any other settings.
1766
+ *
1767
+ * Note: only a subset of all settings and setting keys is supported as
1768
+ * `secrets_setting_name` and `secrets_hints`.
1769
+ * @constructor
1770
+ * @param client client to retrieve list of devices or connections from
1771
+ * @param connection connection for which secrets are requested
1772
+ * @param secrets_setting_name setting name whose secrets are requested or %NULL
1773
+ * @param secrets_hints array of setting key names within the setting given in `secrets_setting_name` which are requested or %NULL
1774
+ * @returns the dialog widget or %NULL in case of error
1775
+ */
1776
+ static new_for_secrets(client: NM.Client, connection: NM.Connection, secrets_setting_name: string | null, secrets_hints: string | null): WifiDialog
1777
+ _init(config?: WifiDialog.ConstructorProperties): void
1778
+ }
1779
+
1780
+ interface BarCodeClass {
1781
+ }
1782
+
1783
+ abstract class BarCodeClass {
1784
+
1785
+ // Own properties of NMA-1.0.NMA.BarCodeClass
1786
+
1787
+ static name: string
1788
+ }
1789
+
1790
+ interface BarCodeWidgetClass {
1791
+ }
1792
+
1793
+ abstract class BarCodeWidgetClass {
1794
+
1795
+ // Own properties of NMA-1.0.NMA.BarCodeWidgetClass
1796
+
1797
+ static name: string
1798
+ }
1799
+
1800
+ interface CertChooserClass {
1801
+ }
1802
+
1803
+ abstract class CertChooserClass {
1804
+
1805
+ // Own properties of NMA-1.0.NMA.CertChooserClass
1806
+
1807
+ static name: string
1808
+ }
1809
+
1810
+ interface CountryInfo {
1811
+
1812
+ // Owm methods of NMA-1.0.NMA.CountryInfo
1813
+
1814
+ get_country_code(): string | null
1815
+ get_country_name(): string | null
1816
+ get_providers(): MobileProvider[]
1817
+ ref(): CountryInfo
1818
+ unref(): void
1819
+ }
1820
+
1821
+ class CountryInfo {
1822
+
1823
+ // Own properties of NMA-1.0.NMA.CountryInfo
1824
+
1825
+ static name: string
1826
+ }
1827
+
1828
+ interface MobileAccessMethod {
1829
+
1830
+ // Owm methods of NMA-1.0.NMA.MobileAccessMethod
1831
+
1832
+ get_3gpp_apn(): string | null
1833
+ get_dns(): string[]
1834
+ get_family(): MobileFamily
1835
+ get_gateway(): string | null
1836
+ get_name(): string | null
1837
+ get_password(): string | null
1838
+ get_username(): string | null
1839
+ ref(): MobileAccessMethod
1840
+ unref(): void
1841
+ }
1842
+
1843
+ class MobileAccessMethod {
1844
+
1845
+ // Own properties of NMA-1.0.NMA.MobileAccessMethod
1846
+
1847
+ static name: string
1848
+ }
1849
+
1850
+ interface MobileProvider {
1851
+
1852
+ // Owm methods of NMA-1.0.NMA.MobileProvider
1853
+
1854
+ get_3gpp_mcc_mnc(): string[]
1855
+ get_cdma_sid(): number[]
1856
+ get_methods(): MobileAccessMethod[]
1857
+ get_name(): string | null
1858
+ ref(): MobileProvider
1859
+ unref(): void
1860
+ }
1861
+
1862
+ class MobileProvider {
1863
+
1864
+ // Own properties of NMA-1.0.NMA.MobileProvider
1865
+
1866
+ static name: string
1867
+ }
1868
+
1869
+ interface MobileProvidersDatabaseClass {
1870
+
1871
+ // Own fields of NMA-1.0.NMA.MobileProvidersDatabaseClass
1872
+
1873
+ parent: GObject.ObjectClass
1874
+ }
1875
+
1876
+ abstract class MobileProvidersDatabaseClass {
1877
+
1878
+ // Own properties of NMA-1.0.NMA.MobileProvidersDatabaseClass
1879
+
1880
+ static name: string
1881
+ }
1882
+
1883
+ interface MobileProvidersDatabasePrivate {
1884
+ }
1885
+
1886
+ class MobileProvidersDatabasePrivate {
1887
+
1888
+ // Own properties of NMA-1.0.NMA.MobileProvidersDatabasePrivate
1889
+
1890
+ static name: string
1891
+ }
1892
+
1893
+ interface MobileWizardAccessMethod {
1894
+
1895
+ // Own fields of NMA-1.0.NMA.MobileWizardAccessMethod
1896
+
1897
+ /**
1898
+ * The mobile network provider name
1899
+ * @field
1900
+ */
1901
+ provider_name: string | null
1902
+ /**
1903
+ * The provided network access billing plan
1904
+ * @field
1905
+ */
1906
+ plan_name: string | null
1907
+ /**
1908
+ * Required NetworkManager device capabilities
1909
+ * @field
1910
+ */
1911
+ devtype: NM.DeviceModemCapabilities
1912
+ /**
1913
+ * User login
1914
+ * @field
1915
+ */
1916
+ username: string | null
1917
+ /**
1918
+ * User secret
1919
+ * @field
1920
+ */
1921
+ password: string | null
1922
+ /**
1923
+ * The GSM Access Point Name
1924
+ * @field
1925
+ */
1926
+ gsm_apn: string | null
1927
+ }
1928
+
1929
+ /**
1930
+ * Network access method details.
1931
+ * @record
1932
+ */
1933
+ class MobileWizardAccessMethod {
1934
+
1935
+ // Own properties of NMA-1.0.NMA.MobileWizardAccessMethod
1936
+
1937
+ static name: string
1938
+ }
1939
+
1940
+ interface MobileWizardClass {
1941
+ }
1942
+
1943
+ abstract class MobileWizardClass {
1944
+
1945
+ // Own properties of NMA-1.0.NMA.MobileWizardClass
1946
+
1947
+ static name: string
1948
+ }
1949
+
1950
+ interface VpnPasswordDialogClass {
1951
+
1952
+ // Own fields of NMA-1.0.NMA.VpnPasswordDialogClass
1953
+
1954
+ parent_class: Gtk.DialogClass
1955
+ }
1956
+
1957
+ abstract class VpnPasswordDialogClass {
1958
+
1959
+ // Own properties of NMA-1.0.NMA.VpnPasswordDialogClass
1960
+
1961
+ static name: string
1962
+ }
1963
+
1964
+ interface WifiDialogClass {
1965
+
1966
+ // Own fields of NMA-1.0.NMA.WifiDialogClass
1967
+
1968
+ parent: Gtk.DialogClass
1969
+ }
1970
+
1971
+ abstract class WifiDialogClass {
1972
+
1973
+ // Own properties of NMA-1.0.NMA.WifiDialogClass
1974
+
1975
+ static name: string
1976
+ }
1977
+
1978
+ interface Ws {
1979
+
1980
+ // Owm methods of NMA-1.0.NMA.Ws
1981
+
1982
+ adhoc_compatible(): boolean
1983
+ hotspot_compatible(): boolean
1984
+ validate(): boolean
1985
+ }
1986
+
1987
+ class Ws {
1988
+
1989
+ // Own properties of NMA-1.0.NMA.Ws
1990
+
1991
+ static name: string
1992
+ }
1993
+
1994
+ interface Ws8021x {
1995
+ }
1996
+
1997
+ class Ws8021x {
1998
+
1999
+ // Own properties of NMA-1.0.NMA.Ws8021x
2000
+
2001
+ static name: string
2002
+ }
2003
+
2004
+ interface Ws8021xClass {
2005
+ }
2006
+
2007
+ class Ws8021xClass {
2008
+
2009
+ // Own properties of NMA-1.0.NMA.Ws8021xClass
2010
+
2011
+ static name: string
2012
+ }
2013
+
2014
+ interface WsDynamicWep {
2015
+ }
2016
+
2017
+ class WsDynamicWep {
2018
+
2019
+ // Own properties of NMA-1.0.NMA.WsDynamicWep
2020
+
2021
+ static name: string
2022
+ }
2023
+
2024
+ interface WsDynamicWepClass {
2025
+ }
2026
+
2027
+ class WsDynamicWepClass {
2028
+
2029
+ // Own properties of NMA-1.0.NMA.WsDynamicWepClass
2030
+
2031
+ static name: string
2032
+ }
2033
+
2034
+ interface WsInterface {
2035
+ }
2036
+
2037
+ class WsInterface {
2038
+
2039
+ // Own properties of NMA-1.0.NMA.WsInterface
2040
+
2041
+ static name: string
2042
+ }
2043
+
2044
+ interface WsLeap {
2045
+ }
2046
+
2047
+ class WsLeap {
2048
+
2049
+ // Own properties of NMA-1.0.NMA.WsLeap
2050
+
2051
+ static name: string
2052
+ }
2053
+
2054
+ interface WsLeapClass {
2055
+ }
2056
+
2057
+ class WsLeapClass {
2058
+
2059
+ // Own properties of NMA-1.0.NMA.WsLeapClass
2060
+
2061
+ static name: string
2062
+ }
2063
+
2064
+ interface WsOwe {
2065
+ }
2066
+
2067
+ class WsOwe {
2068
+
2069
+ // Own properties of NMA-1.0.NMA.WsOwe
2070
+
2071
+ static name: string
2072
+ }
2073
+
2074
+ interface WsOweClass {
2075
+ }
2076
+
2077
+ class WsOweClass {
2078
+
2079
+ // Own properties of NMA-1.0.NMA.WsOweClass
2080
+
2081
+ static name: string
2082
+ }
2083
+
2084
+ interface WsSae {
2085
+ }
2086
+
2087
+ class WsSae {
2088
+
2089
+ // Own properties of NMA-1.0.NMA.WsSae
2090
+
2091
+ static name: string
2092
+ }
2093
+
2094
+ interface WsSaeClass {
2095
+ }
2096
+
2097
+ class WsSaeClass {
2098
+
2099
+ // Own properties of NMA-1.0.NMA.WsSaeClass
2100
+
2101
+ static name: string
2102
+ }
2103
+
2104
+ interface WsWepKey {
2105
+ }
2106
+
2107
+ class WsWepKey {
2108
+
2109
+ // Own properties of NMA-1.0.NMA.WsWepKey
2110
+
2111
+ static name: string
2112
+ }
2113
+
2114
+ interface WsWepKeyClass {
2115
+ }
2116
+
2117
+ class WsWepKeyClass {
2118
+
2119
+ // Own properties of NMA-1.0.NMA.WsWepKeyClass
2120
+
2121
+ static name: string
2122
+ }
2123
+
2124
+ interface WsWpaEap {
2125
+ }
2126
+
2127
+ class WsWpaEap {
2128
+
2129
+ // Own properties of NMA-1.0.NMA.WsWpaEap
2130
+
2131
+ static name: string
2132
+ }
2133
+
2134
+ interface WsWpaEapClass {
2135
+ }
2136
+
2137
+ class WsWpaEapClass {
2138
+
2139
+ // Own properties of NMA-1.0.NMA.WsWpaEapClass
2140
+
2141
+ static name: string
2142
+ }
2143
+
2144
+ interface WsWpaPsk {
2145
+ }
2146
+
2147
+ class WsWpaPsk {
2148
+
2149
+ // Own properties of NMA-1.0.NMA.WsWpaPsk
2150
+
2151
+ static name: string
2152
+ }
2153
+
2154
+ interface WsWpaPskClass {
2155
+ }
2156
+
2157
+ class WsWpaPskClass {
2158
+
2159
+ // Own properties of NMA-1.0.NMA.WsWpaPskClass
2160
+
2161
+ static name: string
2162
+ }
2163
+
2164
+ /**
2165
+ * Name of the imported GIR library
2166
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
2167
+ */
2168
+ const __name__: string
2169
+ /**
2170
+ * Version of the imported GIR library
2171
+ * @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
2172
+ */
2173
+ const __version__: string
2174
+ }
2175
+
2176
+ export default NMA;
2177
+ // END