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