@girs/gcalc-2 2.0.0-3.0.0-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/gcalc-2.cjs +9 -0
- package/gcalc-2.d.cts +4390 -0
- package/gcalc-2.d.ts +4395 -0
- package/gcalc-2.js +8 -0
- package/package.json +55 -0
- package/tsconfig.doc.json +19 -0
package/gcalc-2.d.ts
ADDED
|
@@ -0,0 +1,4395 @@
|
|
|
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
|
+
* GCalc-2
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
import type Gio from '@girs/gio-2.0';
|
|
13
|
+
import type GObject from '@girs/gobject-2.0';
|
|
14
|
+
import type GLib from '@girs/glib-2.0';
|
|
15
|
+
import type Gee from '@girs/gee-0.8';
|
|
16
|
+
|
|
17
|
+
export namespace GCalc {
|
|
18
|
+
|
|
19
|
+
enum AngleUnit {
|
|
20
|
+
RADIANS,
|
|
21
|
+
DEGREES,
|
|
22
|
+
GRADIANS,
|
|
23
|
+
}
|
|
24
|
+
enum AssigError {
|
|
25
|
+
INVALID_STRUCTURE_ERROR,
|
|
26
|
+
}
|
|
27
|
+
enum FunctionError {
|
|
28
|
+
INVALID_PARAMETERS_ERROR,
|
|
29
|
+
INVOCATION_ERROR,
|
|
30
|
+
}
|
|
31
|
+
enum GroupError {
|
|
32
|
+
INVALID_POLYNOMIAL,
|
|
33
|
+
INVALID_INTERNAL_TERM,
|
|
34
|
+
}
|
|
35
|
+
enum TermError {
|
|
36
|
+
INVALID_OPERATOR,
|
|
37
|
+
EVALUATION_FAIL,
|
|
38
|
+
}
|
|
39
|
+
enum VariableError {
|
|
40
|
+
INVALID_PARENT,
|
|
41
|
+
INVALID_EXPRESSION_DEFINITION,
|
|
42
|
+
EVALUATION_FAIL,
|
|
43
|
+
}
|
|
44
|
+
enum ParserError {
|
|
45
|
+
INVALID_TOKEN_ERROR,
|
|
46
|
+
INVALID_EXPRESSION_ERROR,
|
|
47
|
+
}
|
|
48
|
+
enum SolverError {
|
|
49
|
+
EXPRESSION_ERROR,
|
|
50
|
+
}
|
|
51
|
+
enum ParserTokenType {
|
|
52
|
+
NONE,
|
|
53
|
+
EOF,
|
|
54
|
+
IDENTIFIER,
|
|
55
|
+
INTEGER_LITERAL,
|
|
56
|
+
REAL_LITERAL,
|
|
57
|
+
STAR,
|
|
58
|
+
PLUS,
|
|
59
|
+
DIV,
|
|
60
|
+
MINUS,
|
|
61
|
+
ASSIGN,
|
|
62
|
+
OPEN_PARENS,
|
|
63
|
+
CLOSE_PARENS,
|
|
64
|
+
CARRET,
|
|
65
|
+
CLOSE_BRACE,
|
|
66
|
+
CLOSE_BRACKET,
|
|
67
|
+
OPEN_BRACE,
|
|
68
|
+
OPEN_BRACKET,
|
|
69
|
+
STRING_LITERAL,
|
|
70
|
+
OP_AND,
|
|
71
|
+
OP_COALESCING,
|
|
72
|
+
OP_DEC,
|
|
73
|
+
OP_EQ,
|
|
74
|
+
OP_GE,
|
|
75
|
+
OP_GT,
|
|
76
|
+
OP_INC,
|
|
77
|
+
OP_LE,
|
|
78
|
+
OP_LT,
|
|
79
|
+
OP_NE,
|
|
80
|
+
OP_NEG,
|
|
81
|
+
OP_OR,
|
|
82
|
+
OP_PTR,
|
|
83
|
+
OP_SHIFT_LEFT,
|
|
84
|
+
SEMICOLON,
|
|
85
|
+
TILDE,
|
|
86
|
+
COLON,
|
|
87
|
+
COMMA,
|
|
88
|
+
DOUBLE_COLON,
|
|
89
|
+
DOT,
|
|
90
|
+
ELLIPSIS,
|
|
91
|
+
INTERR,
|
|
92
|
+
HASH,
|
|
93
|
+
CURRENCY_SYMBOL,
|
|
94
|
+
}
|
|
95
|
+
enum MathGroupLevel {
|
|
96
|
+
ONE,
|
|
97
|
+
TWO,
|
|
98
|
+
THREE,
|
|
99
|
+
}
|
|
100
|
+
module Hashable {
|
|
101
|
+
|
|
102
|
+
// Constructor properties interface
|
|
103
|
+
|
|
104
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
interface Hashable extends GObject.Object {
|
|
110
|
+
|
|
111
|
+
// Owm methods of GCalc-2.GCalc.Hashable
|
|
112
|
+
|
|
113
|
+
hash(): number
|
|
114
|
+
|
|
115
|
+
// Own virtual methods of GCalc-2.GCalc.Hashable
|
|
116
|
+
|
|
117
|
+
vfunc_hash(): number
|
|
118
|
+
|
|
119
|
+
// Class property signals of GCalc-2.GCalc.Hashable
|
|
120
|
+
|
|
121
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
122
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
123
|
+
emit(sigName: string, ...args: any[]): void
|
|
124
|
+
disconnect(id: number): void
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
class Hashable {
|
|
128
|
+
|
|
129
|
+
// Own properties of GCalc-2.GCalc.Hashable
|
|
130
|
+
|
|
131
|
+
static name: string
|
|
132
|
+
static $gtype: GObject.GType<Hashable>
|
|
133
|
+
|
|
134
|
+
// Constructors of GCalc-2.GCalc.Hashable
|
|
135
|
+
|
|
136
|
+
constructor(config?: Hashable.ConstructorProperties)
|
|
137
|
+
_init(config?: Hashable.ConstructorProperties): void
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
module MathAssign {
|
|
141
|
+
|
|
142
|
+
// Constructor properties interface
|
|
143
|
+
|
|
144
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties {
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
interface MathAssign extends GObject.Object, MathExpression, MathOperator, MathBinaryOperator {
|
|
150
|
+
|
|
151
|
+
// Owm methods of GCalc-2.GCalc.MathAssign
|
|
152
|
+
|
|
153
|
+
evaluate(): MathExpression
|
|
154
|
+
|
|
155
|
+
// Class property signals of GCalc-2.GCalc.MathAssign
|
|
156
|
+
|
|
157
|
+
connect(sigName: "notify::parent", callback: (($obj: MathAssign, pspec: GObject.ParamSpec) => void)): number
|
|
158
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathAssign, pspec: GObject.ParamSpec) => void)): number
|
|
159
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
160
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathAssign, pspec: GObject.ParamSpec) => void)): number
|
|
161
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathAssign, pspec: GObject.ParamSpec) => void)): number
|
|
162
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
163
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
164
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
165
|
+
emit(sigName: string, ...args: any[]): void
|
|
166
|
+
disconnect(id: number): void
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
class MathAssign {
|
|
170
|
+
|
|
171
|
+
// Own properties of GCalc-2.GCalc.MathAssign
|
|
172
|
+
|
|
173
|
+
static name: string
|
|
174
|
+
static $gtype: GObject.GType<MathAssign>
|
|
175
|
+
|
|
176
|
+
// Constructors of GCalc-2.GCalc.MathAssign
|
|
177
|
+
|
|
178
|
+
constructor(config?: MathAssign.ConstructorProperties)
|
|
179
|
+
_init(config?: MathAssign.ConstructorProperties): void
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
module MathBinaryOperator {
|
|
183
|
+
|
|
184
|
+
// Constructor properties interface
|
|
185
|
+
|
|
186
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties {
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
interface MathBinaryOperator extends GObject.Object, MathExpression, MathOperator {
|
|
192
|
+
|
|
193
|
+
// Class property signals of GCalc-2.GCalc.MathBinaryOperator
|
|
194
|
+
|
|
195
|
+
connect(sigName: "notify::parent", callback: (($obj: MathBinaryOperator, pspec: GObject.ParamSpec) => void)): number
|
|
196
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathBinaryOperator, pspec: GObject.ParamSpec) => void)): number
|
|
197
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
198
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathBinaryOperator, pspec: GObject.ParamSpec) => void)): number
|
|
199
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathBinaryOperator, pspec: GObject.ParamSpec) => void)): number
|
|
200
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
201
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
202
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
203
|
+
emit(sigName: string, ...args: any[]): void
|
|
204
|
+
disconnect(id: number): void
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
class MathBinaryOperator {
|
|
208
|
+
|
|
209
|
+
// Own properties of GCalc-2.GCalc.MathBinaryOperator
|
|
210
|
+
|
|
211
|
+
static name: string
|
|
212
|
+
static $gtype: GObject.GType<MathBinaryOperator>
|
|
213
|
+
|
|
214
|
+
// Constructors of GCalc-2.GCalc.MathBinaryOperator
|
|
215
|
+
|
|
216
|
+
constructor(config?: MathBinaryOperator.ConstructorProperties)
|
|
217
|
+
_init(config?: MathBinaryOperator.ConstructorProperties): void
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
module MathConstant {
|
|
221
|
+
|
|
222
|
+
// Constructor properties interface
|
|
223
|
+
|
|
224
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
interface MathConstant extends GObject.Object, MathExpression {
|
|
230
|
+
|
|
231
|
+
// Owm methods of GCalc-2.GCalc.MathConstant
|
|
232
|
+
|
|
233
|
+
add(c: MathConstant): MathConstant
|
|
234
|
+
subtract(c: MathConstant): MathConstant
|
|
235
|
+
multiply(c: MathConstant): MathConstant
|
|
236
|
+
divide(c: MathConstant): MathConstant
|
|
237
|
+
neg(): MathConstant
|
|
238
|
+
pow(c: MathConstant): MathConstant
|
|
239
|
+
|
|
240
|
+
// Own virtual methods of GCalc-2.GCalc.MathConstant
|
|
241
|
+
|
|
242
|
+
vfunc_add(c: MathConstant): MathConstant
|
|
243
|
+
vfunc_subtract(c: MathConstant): MathConstant
|
|
244
|
+
vfunc_multiply(c: MathConstant): MathConstant
|
|
245
|
+
vfunc_divide(c: MathConstant): MathConstant
|
|
246
|
+
vfunc_neg(): MathConstant
|
|
247
|
+
vfunc_pow(c: MathConstant): MathConstant
|
|
248
|
+
|
|
249
|
+
// Class property signals of GCalc-2.GCalc.MathConstant
|
|
250
|
+
|
|
251
|
+
connect(sigName: "notify::parent", callback: (($obj: MathConstant, pspec: GObject.ParamSpec) => void)): number
|
|
252
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathConstant, pspec: GObject.ParamSpec) => void)): number
|
|
253
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
254
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathConstant, pspec: GObject.ParamSpec) => void)): number
|
|
255
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathConstant, pspec: GObject.ParamSpec) => void)): number
|
|
256
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
257
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
258
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
259
|
+
emit(sigName: string, ...args: any[]): void
|
|
260
|
+
disconnect(id: number): void
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
class MathConstant {
|
|
264
|
+
|
|
265
|
+
// Own properties of GCalc-2.GCalc.MathConstant
|
|
266
|
+
|
|
267
|
+
static name: string
|
|
268
|
+
static $gtype: GObject.GType<MathConstant>
|
|
269
|
+
|
|
270
|
+
// Constructors of GCalc-2.GCalc.MathConstant
|
|
271
|
+
|
|
272
|
+
constructor(config?: MathConstant.ConstructorProperties)
|
|
273
|
+
_init(config?: MathConstant.ConstructorProperties): void
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
module MathConstantComplex {
|
|
277
|
+
|
|
278
|
+
// Constructor properties interface
|
|
279
|
+
|
|
280
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathConstant.ConstructorProperties {
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
interface MathConstantComplex extends GObject.Object, MathExpression, MathConstant {
|
|
286
|
+
|
|
287
|
+
// Owm methods of GCalc-2.GCalc.MathConstantComplex
|
|
288
|
+
|
|
289
|
+
real(): number
|
|
290
|
+
imag(): number
|
|
291
|
+
zero(): void
|
|
292
|
+
|
|
293
|
+
// Own virtual methods of GCalc-2.GCalc.MathConstantComplex
|
|
294
|
+
|
|
295
|
+
vfunc_real(): number
|
|
296
|
+
vfunc_imag(): number
|
|
297
|
+
vfunc_zero(): void
|
|
298
|
+
|
|
299
|
+
// Class property signals of GCalc-2.GCalc.MathConstantComplex
|
|
300
|
+
|
|
301
|
+
connect(sigName: "notify::parent", callback: (($obj: MathConstantComplex, pspec: GObject.ParamSpec) => void)): number
|
|
302
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathConstantComplex, pspec: GObject.ParamSpec) => void)): number
|
|
303
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
304
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathConstantComplex, pspec: GObject.ParamSpec) => void)): number
|
|
305
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathConstantComplex, pspec: GObject.ParamSpec) => void)): number
|
|
306
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
307
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
308
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
309
|
+
emit(sigName: string, ...args: any[]): void
|
|
310
|
+
disconnect(id: number): void
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
class MathConstantComplex {
|
|
314
|
+
|
|
315
|
+
// Own properties of GCalc-2.GCalc.MathConstantComplex
|
|
316
|
+
|
|
317
|
+
static name: string
|
|
318
|
+
static $gtype: GObject.GType<MathConstantComplex>
|
|
319
|
+
|
|
320
|
+
// Constructors of GCalc-2.GCalc.MathConstantComplex
|
|
321
|
+
|
|
322
|
+
constructor(config?: MathConstantComplex.ConstructorProperties)
|
|
323
|
+
_init(config?: MathConstantComplex.ConstructorProperties): void
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
module MathConstantNumber {
|
|
327
|
+
|
|
328
|
+
// Constructor properties interface
|
|
329
|
+
|
|
330
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathConstant.ConstructorProperties {
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
interface MathConstantNumber extends GObject.Object, MathExpression, MathConstant {
|
|
336
|
+
|
|
337
|
+
// Owm methods of GCalc-2.GCalc.MathConstantNumber
|
|
338
|
+
|
|
339
|
+
value(): number
|
|
340
|
+
|
|
341
|
+
// Own virtual methods of GCalc-2.GCalc.MathConstantNumber
|
|
342
|
+
|
|
343
|
+
vfunc_value(): number
|
|
344
|
+
|
|
345
|
+
// Class property signals of GCalc-2.GCalc.MathConstantNumber
|
|
346
|
+
|
|
347
|
+
connect(sigName: "notify::parent", callback: (($obj: MathConstantNumber, pspec: GObject.ParamSpec) => void)): number
|
|
348
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathConstantNumber, pspec: GObject.ParamSpec) => void)): number
|
|
349
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
350
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathConstantNumber, pspec: GObject.ParamSpec) => void)): number
|
|
351
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathConstantNumber, pspec: GObject.ParamSpec) => void)): number
|
|
352
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
353
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
354
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
355
|
+
emit(sigName: string, ...args: any[]): void
|
|
356
|
+
disconnect(id: number): void
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
class MathConstantNumber {
|
|
360
|
+
|
|
361
|
+
// Own properties of GCalc-2.GCalc.MathConstantNumber
|
|
362
|
+
|
|
363
|
+
static name: string
|
|
364
|
+
static $gtype: GObject.GType<MathConstantNumber>
|
|
365
|
+
|
|
366
|
+
// Constructors of GCalc-2.GCalc.MathConstantNumber
|
|
367
|
+
|
|
368
|
+
constructor(config?: MathConstantNumber.ConstructorProperties)
|
|
369
|
+
_init(config?: MathConstantNumber.ConstructorProperties): void
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
module MathConstantVector {
|
|
373
|
+
|
|
374
|
+
// Constructor properties interface
|
|
375
|
+
|
|
376
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathConstant.ConstructorProperties {
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
interface MathConstantVector extends GObject.Object, MathExpression, MathConstant {
|
|
382
|
+
|
|
383
|
+
// Owm methods of GCalc-2.GCalc.MathConstantVector
|
|
384
|
+
|
|
385
|
+
mag(): MathConstant
|
|
386
|
+
ang(): MathConstant
|
|
387
|
+
x(): MathConstant
|
|
388
|
+
y(): MathConstant
|
|
389
|
+
|
|
390
|
+
// Own virtual methods of GCalc-2.GCalc.MathConstantVector
|
|
391
|
+
|
|
392
|
+
vfunc_mag(): MathConstant
|
|
393
|
+
vfunc_ang(): MathConstant
|
|
394
|
+
vfunc_x(): MathConstant
|
|
395
|
+
vfunc_y(): MathConstant
|
|
396
|
+
|
|
397
|
+
// Class property signals of GCalc-2.GCalc.MathConstantVector
|
|
398
|
+
|
|
399
|
+
connect(sigName: "notify::parent", callback: (($obj: MathConstantVector, pspec: GObject.ParamSpec) => void)): number
|
|
400
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathConstantVector, pspec: GObject.ParamSpec) => void)): number
|
|
401
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
402
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathConstantVector, pspec: GObject.ParamSpec) => void)): number
|
|
403
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathConstantVector, pspec: GObject.ParamSpec) => void)): number
|
|
404
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
405
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
406
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
407
|
+
emit(sigName: string, ...args: any[]): void
|
|
408
|
+
disconnect(id: number): void
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
class MathConstantVector {
|
|
412
|
+
|
|
413
|
+
// Own properties of GCalc-2.GCalc.MathConstantVector
|
|
414
|
+
|
|
415
|
+
static name: string
|
|
416
|
+
static $gtype: GObject.GType<MathConstantVector>
|
|
417
|
+
|
|
418
|
+
// Constructors of GCalc-2.GCalc.MathConstantVector
|
|
419
|
+
|
|
420
|
+
constructor(config?: MathConstantVector.ConstructorProperties)
|
|
421
|
+
_init(config?: MathConstantVector.ConstructorProperties): void
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
module MathDivision {
|
|
425
|
+
|
|
426
|
+
// Constructor properties interface
|
|
427
|
+
|
|
428
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties {
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
interface MathDivision extends GObject.Object, MathExpression, MathOperator, MathBinaryOperator {
|
|
434
|
+
|
|
435
|
+
// Class property signals of GCalc-2.GCalc.MathDivision
|
|
436
|
+
|
|
437
|
+
connect(sigName: "notify::parent", callback: (($obj: MathDivision, pspec: GObject.ParamSpec) => void)): number
|
|
438
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathDivision, pspec: GObject.ParamSpec) => void)): number
|
|
439
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
440
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathDivision, pspec: GObject.ParamSpec) => void)): number
|
|
441
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathDivision, pspec: GObject.ParamSpec) => void)): number
|
|
442
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
443
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
444
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
445
|
+
emit(sigName: string, ...args: any[]): void
|
|
446
|
+
disconnect(id: number): void
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
class MathDivision {
|
|
450
|
+
|
|
451
|
+
// Own properties of GCalc-2.GCalc.MathDivision
|
|
452
|
+
|
|
453
|
+
static name: string
|
|
454
|
+
static $gtype: GObject.GType<MathDivision>
|
|
455
|
+
|
|
456
|
+
// Constructors of GCalc-2.GCalc.MathDivision
|
|
457
|
+
|
|
458
|
+
constructor(config?: MathDivision.ConstructorProperties)
|
|
459
|
+
_init(config?: MathDivision.ConstructorProperties): void
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
module MathEquation {
|
|
463
|
+
|
|
464
|
+
// Constructor properties interface
|
|
465
|
+
|
|
466
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
interface MathEquation extends GObject.Object, MathExpression {
|
|
472
|
+
|
|
473
|
+
// Own properties of GCalc-2.GCalc.MathEquation
|
|
474
|
+
|
|
475
|
+
readonly variables: ExpressionHashMap
|
|
476
|
+
|
|
477
|
+
// Owm methods of GCalc-2.GCalc.MathEquation
|
|
478
|
+
|
|
479
|
+
get_variables(): ExpressionHashMap
|
|
480
|
+
|
|
481
|
+
// Own virtual methods of GCalc-2.GCalc.MathEquation
|
|
482
|
+
|
|
483
|
+
vfunc_get_variables(): ExpressionHashMap
|
|
484
|
+
|
|
485
|
+
// Class property signals of GCalc-2.GCalc.MathEquation
|
|
486
|
+
|
|
487
|
+
connect(sigName: "notify::variables", callback: (($obj: MathEquation, pspec: GObject.ParamSpec) => void)): number
|
|
488
|
+
connect_after(sigName: "notify::variables", callback: (($obj: MathEquation, pspec: GObject.ParamSpec) => void)): number
|
|
489
|
+
emit(sigName: "notify::variables", ...args: any[]): void
|
|
490
|
+
connect(sigName: "notify::parent", callback: (($obj: MathEquation, pspec: GObject.ParamSpec) => void)): number
|
|
491
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathEquation, pspec: GObject.ParamSpec) => void)): number
|
|
492
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
493
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathEquation, pspec: GObject.ParamSpec) => void)): number
|
|
494
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathEquation, pspec: GObject.ParamSpec) => void)): number
|
|
495
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
496
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
497
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
498
|
+
emit(sigName: string, ...args: any[]): void
|
|
499
|
+
disconnect(id: number): void
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
class MathEquation {
|
|
503
|
+
|
|
504
|
+
// Own properties of GCalc-2.GCalc.MathEquation
|
|
505
|
+
|
|
506
|
+
static name: string
|
|
507
|
+
static $gtype: GObject.GType<MathEquation>
|
|
508
|
+
|
|
509
|
+
// Constructors of GCalc-2.GCalc.MathEquation
|
|
510
|
+
|
|
511
|
+
constructor(config?: MathEquation.ConstructorProperties)
|
|
512
|
+
_init(config?: MathEquation.ConstructorProperties): void
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
module MathEquationManager {
|
|
516
|
+
|
|
517
|
+
// Constructor properties interface
|
|
518
|
+
|
|
519
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
interface MathEquationManager extends GObject.Object {
|
|
525
|
+
|
|
526
|
+
// Own properties of GCalc-2.GCalc.MathEquationManager
|
|
527
|
+
|
|
528
|
+
readonly equations: ExpressionContainer
|
|
529
|
+
readonly functions: ExpressionContainer
|
|
530
|
+
|
|
531
|
+
// Owm methods of GCalc-2.GCalc.MathEquationManager
|
|
532
|
+
|
|
533
|
+
find_variable(name: string | null): MathVariable
|
|
534
|
+
get_equations(): ExpressionContainer
|
|
535
|
+
get_functions(): ExpressionContainer
|
|
536
|
+
|
|
537
|
+
// Own virtual methods of GCalc-2.GCalc.MathEquationManager
|
|
538
|
+
|
|
539
|
+
vfunc_find_variable(name: string | null): MathVariable
|
|
540
|
+
vfunc_get_equations(): ExpressionContainer
|
|
541
|
+
vfunc_get_functions(): ExpressionContainer
|
|
542
|
+
|
|
543
|
+
// Class property signals of GCalc-2.GCalc.MathEquationManager
|
|
544
|
+
|
|
545
|
+
connect(sigName: "notify::equations", callback: (($obj: MathEquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
546
|
+
connect_after(sigName: "notify::equations", callback: (($obj: MathEquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
547
|
+
emit(sigName: "notify::equations", ...args: any[]): void
|
|
548
|
+
connect(sigName: "notify::functions", callback: (($obj: MathEquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
549
|
+
connect_after(sigName: "notify::functions", callback: (($obj: MathEquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
550
|
+
emit(sigName: "notify::functions", ...args: any[]): void
|
|
551
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
552
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
553
|
+
emit(sigName: string, ...args: any[]): void
|
|
554
|
+
disconnect(id: number): void
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
class MathEquationManager {
|
|
558
|
+
|
|
559
|
+
// Own properties of GCalc-2.GCalc.MathEquationManager
|
|
560
|
+
|
|
561
|
+
static name: string
|
|
562
|
+
static $gtype: GObject.GType<MathEquationManager>
|
|
563
|
+
|
|
564
|
+
// Constructors of GCalc-2.GCalc.MathEquationManager
|
|
565
|
+
|
|
566
|
+
constructor(config?: MathEquationManager.ConstructorProperties)
|
|
567
|
+
_init(config?: MathEquationManager.ConstructorProperties): void
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
module MathErrorResult {
|
|
571
|
+
|
|
572
|
+
// Constructor properties interface
|
|
573
|
+
|
|
574
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathResult.ConstructorProperties {
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
interface MathErrorResult extends GObject.Object, MathResult {
|
|
580
|
+
|
|
581
|
+
// Own properties of GCalc-2.GCalc.MathErrorResult
|
|
582
|
+
|
|
583
|
+
readonly message: string | null
|
|
584
|
+
|
|
585
|
+
// Owm methods of GCalc-2.GCalc.MathErrorResult
|
|
586
|
+
|
|
587
|
+
get_message(): string | null
|
|
588
|
+
|
|
589
|
+
// Own virtual methods of GCalc-2.GCalc.MathErrorResult
|
|
590
|
+
|
|
591
|
+
vfunc_get_message(): string | null
|
|
592
|
+
|
|
593
|
+
// Class property signals of GCalc-2.GCalc.MathErrorResult
|
|
594
|
+
|
|
595
|
+
connect(sigName: "notify::message", callback: (($obj: MathErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
596
|
+
connect_after(sigName: "notify::message", callback: (($obj: MathErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
597
|
+
emit(sigName: "notify::message", ...args: any[]): void
|
|
598
|
+
connect(sigName: "notify::expression", callback: (($obj: MathErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
599
|
+
connect_after(sigName: "notify::expression", callback: (($obj: MathErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
600
|
+
emit(sigName: "notify::expression", ...args: any[]): void
|
|
601
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
602
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
603
|
+
emit(sigName: string, ...args: any[]): void
|
|
604
|
+
disconnect(id: number): void
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
class MathErrorResult {
|
|
608
|
+
|
|
609
|
+
// Own properties of GCalc-2.GCalc.MathErrorResult
|
|
610
|
+
|
|
611
|
+
static name: string
|
|
612
|
+
static $gtype: GObject.GType<MathErrorResult>
|
|
613
|
+
|
|
614
|
+
// Constructors of GCalc-2.GCalc.MathErrorResult
|
|
615
|
+
|
|
616
|
+
constructor(config?: MathErrorResult.ConstructorProperties)
|
|
617
|
+
_init(config?: MathErrorResult.ConstructorProperties): void
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
module MathExpression {
|
|
621
|
+
|
|
622
|
+
// Constructor properties interface
|
|
623
|
+
|
|
624
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
625
|
+
|
|
626
|
+
// Own constructor properties of GCalc-2.GCalc.MathExpression
|
|
627
|
+
|
|
628
|
+
parent?: MathExpression | null
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
interface MathExpression extends GObject.Object {
|
|
634
|
+
|
|
635
|
+
// Own properties of GCalc-2.GCalc.MathExpression
|
|
636
|
+
|
|
637
|
+
parent: MathExpression
|
|
638
|
+
readonly expressions: ExpressionContainer
|
|
639
|
+
|
|
640
|
+
// Owm methods of GCalc-2.GCalc.MathExpression
|
|
641
|
+
|
|
642
|
+
to_string(): string | null
|
|
643
|
+
solve(): MathResult
|
|
644
|
+
get_parent(): MathExpression
|
|
645
|
+
set_parent(value: MathExpression): void
|
|
646
|
+
get_expressions(): ExpressionContainer
|
|
647
|
+
|
|
648
|
+
// Own virtual methods of GCalc-2.GCalc.MathExpression
|
|
649
|
+
|
|
650
|
+
vfunc_to_string(): string | null
|
|
651
|
+
vfunc_solve(): MathResult
|
|
652
|
+
vfunc_get_parent(): MathExpression
|
|
653
|
+
vfunc_set_parent(value: MathExpression): void
|
|
654
|
+
vfunc_get_expressions(): ExpressionContainer
|
|
655
|
+
|
|
656
|
+
// Class property signals of GCalc-2.GCalc.MathExpression
|
|
657
|
+
|
|
658
|
+
connect(sigName: "notify::parent", callback: (($obj: MathExpression, pspec: GObject.ParamSpec) => void)): number
|
|
659
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathExpression, pspec: GObject.ParamSpec) => void)): number
|
|
660
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
661
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathExpression, pspec: GObject.ParamSpec) => void)): number
|
|
662
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathExpression, pspec: GObject.ParamSpec) => void)): number
|
|
663
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
664
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
665
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
666
|
+
emit(sigName: string, ...args: any[]): void
|
|
667
|
+
disconnect(id: number): void
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
class MathExpression {
|
|
671
|
+
|
|
672
|
+
// Own properties of GCalc-2.GCalc.MathExpression
|
|
673
|
+
|
|
674
|
+
static name: string
|
|
675
|
+
static $gtype: GObject.GType<MathExpression>
|
|
676
|
+
|
|
677
|
+
// Constructors of GCalc-2.GCalc.MathExpression
|
|
678
|
+
|
|
679
|
+
constructor(config?: MathExpression.ConstructorProperties)
|
|
680
|
+
_init(config?: MathExpression.ConstructorProperties): void
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
module MathFunction {
|
|
684
|
+
|
|
685
|
+
// Constructor properties interface
|
|
686
|
+
|
|
687
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
688
|
+
|
|
689
|
+
// Own constructor properties of GCalc-2.GCalc.MathFunction
|
|
690
|
+
|
|
691
|
+
name?: string | null
|
|
692
|
+
n_params?: number | null
|
|
693
|
+
closed?: boolean | null
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
interface MathFunction extends GObject.Object, MathExpression {
|
|
699
|
+
|
|
700
|
+
// Own properties of GCalc-2.GCalc.MathFunction
|
|
701
|
+
|
|
702
|
+
readonly param_types: ExpressionContainer
|
|
703
|
+
name: string | null
|
|
704
|
+
n_params: number
|
|
705
|
+
closed: boolean
|
|
706
|
+
|
|
707
|
+
// Owm methods of GCalc-2.GCalc.MathFunction
|
|
708
|
+
|
|
709
|
+
evaluate(): MathExpression
|
|
710
|
+
verify_params(): boolean
|
|
711
|
+
get_param_types(): ExpressionContainer
|
|
712
|
+
get_name(): string | null
|
|
713
|
+
set_name(value: string | null): void
|
|
714
|
+
get_n_params(): number
|
|
715
|
+
set_n_params(value: number): void
|
|
716
|
+
get_closed(): boolean
|
|
717
|
+
set_closed(value: boolean): void
|
|
718
|
+
|
|
719
|
+
// Own virtual methods of GCalc-2.GCalc.MathFunction
|
|
720
|
+
|
|
721
|
+
vfunc_evaluate(): MathExpression
|
|
722
|
+
vfunc_verify_params(): boolean
|
|
723
|
+
vfunc_get_param_types(): ExpressionContainer
|
|
724
|
+
vfunc_get_name(): string | null
|
|
725
|
+
vfunc_set_name(value: string | null): void
|
|
726
|
+
vfunc_get_n_params(): number
|
|
727
|
+
vfunc_set_n_params(value: number): void
|
|
728
|
+
vfunc_get_closed(): boolean
|
|
729
|
+
vfunc_set_closed(value: boolean): void
|
|
730
|
+
|
|
731
|
+
// Class property signals of GCalc-2.GCalc.MathFunction
|
|
732
|
+
|
|
733
|
+
connect(sigName: "notify::param-types", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
734
|
+
connect_after(sigName: "notify::param-types", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
735
|
+
emit(sigName: "notify::param-types", ...args: any[]): void
|
|
736
|
+
connect(sigName: "notify::name", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
737
|
+
connect_after(sigName: "notify::name", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
738
|
+
emit(sigName: "notify::name", ...args: any[]): void
|
|
739
|
+
connect(sigName: "notify::n-params", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
740
|
+
connect_after(sigName: "notify::n-params", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
741
|
+
emit(sigName: "notify::n-params", ...args: any[]): void
|
|
742
|
+
connect(sigName: "notify::closed", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
743
|
+
connect_after(sigName: "notify::closed", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
744
|
+
emit(sigName: "notify::closed", ...args: any[]): void
|
|
745
|
+
connect(sigName: "notify::parent", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
746
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
747
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
748
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
749
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathFunction, pspec: GObject.ParamSpec) => void)): number
|
|
750
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
751
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
752
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
753
|
+
emit(sigName: string, ...args: any[]): void
|
|
754
|
+
disconnect(id: number): void
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
class MathFunction {
|
|
758
|
+
|
|
759
|
+
// Own properties of GCalc-2.GCalc.MathFunction
|
|
760
|
+
|
|
761
|
+
static name: string
|
|
762
|
+
static $gtype: GObject.GType<MathFunction>
|
|
763
|
+
|
|
764
|
+
// Constructors of GCalc-2.GCalc.MathFunction
|
|
765
|
+
|
|
766
|
+
constructor(config?: MathFunction.ConstructorProperties)
|
|
767
|
+
_init(config?: MathFunction.ConstructorProperties): void
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
module MathGroup {
|
|
771
|
+
|
|
772
|
+
// Constructor properties interface
|
|
773
|
+
|
|
774
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
775
|
+
|
|
776
|
+
// Own constructor properties of GCalc-2.GCalc.MathGroup
|
|
777
|
+
|
|
778
|
+
level?: MathGroupLevel | null
|
|
779
|
+
closed?: boolean | null
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
interface MathGroup extends GObject.Object, MathExpression {
|
|
785
|
+
|
|
786
|
+
// Own properties of GCalc-2.GCalc.MathGroup
|
|
787
|
+
|
|
788
|
+
level: MathGroupLevel
|
|
789
|
+
closed: boolean
|
|
790
|
+
|
|
791
|
+
// Owm methods of GCalc-2.GCalc.MathGroup
|
|
792
|
+
|
|
793
|
+
evaluate(): MathExpression
|
|
794
|
+
get_level(): MathGroupLevel
|
|
795
|
+
set_level(value: MathGroupLevel): void
|
|
796
|
+
get_closed(): boolean
|
|
797
|
+
set_closed(value: boolean): void
|
|
798
|
+
|
|
799
|
+
// Own virtual methods of GCalc-2.GCalc.MathGroup
|
|
800
|
+
|
|
801
|
+
vfunc_evaluate(): MathExpression
|
|
802
|
+
vfunc_get_level(): MathGroupLevel
|
|
803
|
+
vfunc_set_level(value: MathGroupLevel): void
|
|
804
|
+
vfunc_get_closed(): boolean
|
|
805
|
+
vfunc_set_closed(value: boolean): void
|
|
806
|
+
|
|
807
|
+
// Class property signals of GCalc-2.GCalc.MathGroup
|
|
808
|
+
|
|
809
|
+
connect(sigName: "notify::level", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
810
|
+
connect_after(sigName: "notify::level", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
811
|
+
emit(sigName: "notify::level", ...args: any[]): void
|
|
812
|
+
connect(sigName: "notify::closed", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
813
|
+
connect_after(sigName: "notify::closed", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
814
|
+
emit(sigName: "notify::closed", ...args: any[]): void
|
|
815
|
+
connect(sigName: "notify::parent", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
816
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
817
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
818
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
819
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathGroup, pspec: GObject.ParamSpec) => void)): number
|
|
820
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
821
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
822
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
823
|
+
emit(sigName: string, ...args: any[]): void
|
|
824
|
+
disconnect(id: number): void
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
class MathGroup {
|
|
828
|
+
|
|
829
|
+
// Own properties of GCalc-2.GCalc.MathGroup
|
|
830
|
+
|
|
831
|
+
static name: string
|
|
832
|
+
static $gtype: GObject.GType<MathGroup>
|
|
833
|
+
|
|
834
|
+
// Constructors of GCalc-2.GCalc.MathGroup
|
|
835
|
+
|
|
836
|
+
constructor(config?: MathGroup.ConstructorProperties)
|
|
837
|
+
_init(config?: MathGroup.ConstructorProperties): void
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
module MathMinus {
|
|
841
|
+
|
|
842
|
+
// Constructor properties interface
|
|
843
|
+
|
|
844
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties {
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
interface MathMinus extends GObject.Object, MathExpression, MathOperator, MathBinaryOperator {
|
|
850
|
+
|
|
851
|
+
// Class property signals of GCalc-2.GCalc.MathMinus
|
|
852
|
+
|
|
853
|
+
connect(sigName: "notify::parent", callback: (($obj: MathMinus, pspec: GObject.ParamSpec) => void)): number
|
|
854
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathMinus, pspec: GObject.ParamSpec) => void)): number
|
|
855
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
856
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathMinus, pspec: GObject.ParamSpec) => void)): number
|
|
857
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathMinus, pspec: GObject.ParamSpec) => void)): number
|
|
858
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
859
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
860
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
861
|
+
emit(sigName: string, ...args: any[]): void
|
|
862
|
+
disconnect(id: number): void
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
class MathMinus {
|
|
866
|
+
|
|
867
|
+
// Own properties of GCalc-2.GCalc.MathMinus
|
|
868
|
+
|
|
869
|
+
static name: string
|
|
870
|
+
static $gtype: GObject.GType<MathMinus>
|
|
871
|
+
|
|
872
|
+
// Constructors of GCalc-2.GCalc.MathMinus
|
|
873
|
+
|
|
874
|
+
constructor(config?: MathMinus.ConstructorProperties)
|
|
875
|
+
_init(config?: MathMinus.ConstructorProperties): void
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
module MathMultiply {
|
|
879
|
+
|
|
880
|
+
// Constructor properties interface
|
|
881
|
+
|
|
882
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties {
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
interface MathMultiply extends GObject.Object, MathExpression, MathOperator, MathBinaryOperator {
|
|
888
|
+
|
|
889
|
+
// Class property signals of GCalc-2.GCalc.MathMultiply
|
|
890
|
+
|
|
891
|
+
connect(sigName: "notify::parent", callback: (($obj: MathMultiply, pspec: GObject.ParamSpec) => void)): number
|
|
892
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathMultiply, pspec: GObject.ParamSpec) => void)): number
|
|
893
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
894
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathMultiply, pspec: GObject.ParamSpec) => void)): number
|
|
895
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathMultiply, pspec: GObject.ParamSpec) => void)): number
|
|
896
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
897
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
898
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
899
|
+
emit(sigName: string, ...args: any[]): void
|
|
900
|
+
disconnect(id: number): void
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
class MathMultiply {
|
|
904
|
+
|
|
905
|
+
// Own properties of GCalc-2.GCalc.MathMultiply
|
|
906
|
+
|
|
907
|
+
static name: string
|
|
908
|
+
static $gtype: GObject.GType<MathMultiply>
|
|
909
|
+
|
|
910
|
+
// Constructors of GCalc-2.GCalc.MathMultiply
|
|
911
|
+
|
|
912
|
+
constructor(config?: MathMultiply.ConstructorProperties)
|
|
913
|
+
_init(config?: MathMultiply.ConstructorProperties): void
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
module MathOperator {
|
|
917
|
+
|
|
918
|
+
// Constructor properties interface
|
|
919
|
+
|
|
920
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
interface MathOperator extends GObject.Object, MathExpression {
|
|
926
|
+
|
|
927
|
+
// Class property signals of GCalc-2.GCalc.MathOperator
|
|
928
|
+
|
|
929
|
+
connect(sigName: "notify::parent", callback: (($obj: MathOperator, pspec: GObject.ParamSpec) => void)): number
|
|
930
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathOperator, pspec: GObject.ParamSpec) => void)): number
|
|
931
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
932
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathOperator, pspec: GObject.ParamSpec) => void)): number
|
|
933
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathOperator, pspec: GObject.ParamSpec) => void)): number
|
|
934
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
935
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
936
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
937
|
+
emit(sigName: string, ...args: any[]): void
|
|
938
|
+
disconnect(id: number): void
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
class MathOperator {
|
|
942
|
+
|
|
943
|
+
// Own properties of GCalc-2.GCalc.MathOperator
|
|
944
|
+
|
|
945
|
+
static name: string
|
|
946
|
+
static $gtype: GObject.GType<MathOperator>
|
|
947
|
+
|
|
948
|
+
// Constructors of GCalc-2.GCalc.MathOperator
|
|
949
|
+
|
|
950
|
+
constructor(config?: MathOperator.ConstructorProperties)
|
|
951
|
+
_init(config?: MathOperator.ConstructorProperties): void
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
module MathParameter {
|
|
955
|
+
|
|
956
|
+
// Constructor properties interface
|
|
957
|
+
|
|
958
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathVariable.ConstructorProperties {
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
interface MathParameter extends GObject.Object, MathExpression, MathVariable {
|
|
964
|
+
|
|
965
|
+
// Owm methods of GCalc-2.GCalc.MathParameter
|
|
966
|
+
|
|
967
|
+
set_value(val: any | null): void
|
|
968
|
+
|
|
969
|
+
// Overloads of set_value
|
|
970
|
+
|
|
971
|
+
set_value(value: MathConstant): void
|
|
972
|
+
get_value(): any | null
|
|
973
|
+
|
|
974
|
+
// Overloads of get_value
|
|
975
|
+
|
|
976
|
+
get_value(): MathConstant
|
|
977
|
+
|
|
978
|
+
// Own virtual methods of GCalc-2.GCalc.MathParameter
|
|
979
|
+
|
|
980
|
+
vfunc_set_value(val: any | null): void
|
|
981
|
+
|
|
982
|
+
// Overloads of vfunc_set_value
|
|
983
|
+
|
|
984
|
+
vfunc_set_value(value: MathConstant): void
|
|
985
|
+
vfunc_get_value(): any | null
|
|
986
|
+
|
|
987
|
+
// Overloads of vfunc_get_value
|
|
988
|
+
|
|
989
|
+
vfunc_get_value(): MathConstant
|
|
990
|
+
|
|
991
|
+
// Class property signals of GCalc-2.GCalc.MathParameter
|
|
992
|
+
|
|
993
|
+
connect(sigName: "notify::parent", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
994
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
995
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
996
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
997
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
998
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
999
|
+
connect(sigName: "notify::name", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
1000
|
+
connect_after(sigName: "notify::name", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
1001
|
+
emit(sigName: "notify::name", ...args: any[]): void
|
|
1002
|
+
connect(sigName: "notify::value", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
1003
|
+
connect_after(sigName: "notify::value", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
1004
|
+
emit(sigName: "notify::value", ...args: any[]): void
|
|
1005
|
+
connect(sigName: "notify::bind", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
1006
|
+
connect_after(sigName: "notify::bind", callback: (($obj: MathParameter, pspec: GObject.ParamSpec) => void)): number
|
|
1007
|
+
emit(sigName: "notify::bind", ...args: any[]): void
|
|
1008
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1009
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1010
|
+
emit(sigName: string, ...args: any[]): void
|
|
1011
|
+
disconnect(id: number): void
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
class MathParameter {
|
|
1015
|
+
|
|
1016
|
+
// Own properties of GCalc-2.GCalc.MathParameter
|
|
1017
|
+
|
|
1018
|
+
static name: string
|
|
1019
|
+
static $gtype: GObject.GType<MathParameter>
|
|
1020
|
+
|
|
1021
|
+
// Constructors of GCalc-2.GCalc.MathParameter
|
|
1022
|
+
|
|
1023
|
+
constructor(config?: MathParameter.ConstructorProperties)
|
|
1024
|
+
_init(config?: MathParameter.ConstructorProperties): void
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
module MathPlus {
|
|
1028
|
+
|
|
1029
|
+
// Constructor properties interface
|
|
1030
|
+
|
|
1031
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties {
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
interface MathPlus extends GObject.Object, MathExpression, MathOperator, MathBinaryOperator {
|
|
1037
|
+
|
|
1038
|
+
// Class property signals of GCalc-2.GCalc.MathPlus
|
|
1039
|
+
|
|
1040
|
+
connect(sigName: "notify::parent", callback: (($obj: MathPlus, pspec: GObject.ParamSpec) => void)): number
|
|
1041
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathPlus, pspec: GObject.ParamSpec) => void)): number
|
|
1042
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1043
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathPlus, pspec: GObject.ParamSpec) => void)): number
|
|
1044
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathPlus, pspec: GObject.ParamSpec) => void)): number
|
|
1045
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1046
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1047
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1048
|
+
emit(sigName: string, ...args: any[]): void
|
|
1049
|
+
disconnect(id: number): void
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
class MathPlus {
|
|
1053
|
+
|
|
1054
|
+
// Own properties of GCalc-2.GCalc.MathPlus
|
|
1055
|
+
|
|
1056
|
+
static name: string
|
|
1057
|
+
static $gtype: GObject.GType<MathPlus>
|
|
1058
|
+
|
|
1059
|
+
// Constructors of GCalc-2.GCalc.MathPlus
|
|
1060
|
+
|
|
1061
|
+
constructor(config?: MathPlus.ConstructorProperties)
|
|
1062
|
+
_init(config?: MathPlus.ConstructorProperties): void
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
module MathPolynomial {
|
|
1066
|
+
|
|
1067
|
+
// Constructor properties interface
|
|
1068
|
+
|
|
1069
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
interface MathPolynomial extends GObject.Object, MathExpression {
|
|
1075
|
+
|
|
1076
|
+
// Owm methods of GCalc-2.GCalc.MathPolynomial
|
|
1077
|
+
|
|
1078
|
+
evaluate(): MathExpression
|
|
1079
|
+
|
|
1080
|
+
// Own virtual methods of GCalc-2.GCalc.MathPolynomial
|
|
1081
|
+
|
|
1082
|
+
vfunc_evaluate(): MathExpression
|
|
1083
|
+
|
|
1084
|
+
// Class property signals of GCalc-2.GCalc.MathPolynomial
|
|
1085
|
+
|
|
1086
|
+
connect(sigName: "notify::parent", callback: (($obj: MathPolynomial, pspec: GObject.ParamSpec) => void)): number
|
|
1087
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathPolynomial, pspec: GObject.ParamSpec) => void)): number
|
|
1088
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1089
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathPolynomial, pspec: GObject.ParamSpec) => void)): number
|
|
1090
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathPolynomial, pspec: GObject.ParamSpec) => void)): number
|
|
1091
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1092
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1093
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1094
|
+
emit(sigName: string, ...args: any[]): void
|
|
1095
|
+
disconnect(id: number): void
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
class MathPolynomial {
|
|
1099
|
+
|
|
1100
|
+
// Own properties of GCalc-2.GCalc.MathPolynomial
|
|
1101
|
+
|
|
1102
|
+
static name: string
|
|
1103
|
+
static $gtype: GObject.GType<MathPolynomial>
|
|
1104
|
+
|
|
1105
|
+
// Constructors of GCalc-2.GCalc.MathPolynomial
|
|
1106
|
+
|
|
1107
|
+
constructor(config?: MathPolynomial.ConstructorProperties)
|
|
1108
|
+
_init(config?: MathPolynomial.ConstructorProperties): void
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
module MathPow {
|
|
1112
|
+
|
|
1113
|
+
// Constructor properties interface
|
|
1114
|
+
|
|
1115
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties, MathOperator.ConstructorProperties {
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
interface MathPow extends GObject.Object, MathExpression, MathOperator {
|
|
1121
|
+
|
|
1122
|
+
// Class property signals of GCalc-2.GCalc.MathPow
|
|
1123
|
+
|
|
1124
|
+
connect(sigName: "notify::parent", callback: (($obj: MathPow, pspec: GObject.ParamSpec) => void)): number
|
|
1125
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathPow, pspec: GObject.ParamSpec) => void)): number
|
|
1126
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1127
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathPow, pspec: GObject.ParamSpec) => void)): number
|
|
1128
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathPow, pspec: GObject.ParamSpec) => void)): number
|
|
1129
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1130
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1131
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1132
|
+
emit(sigName: string, ...args: any[]): void
|
|
1133
|
+
disconnect(id: number): void
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
class MathPow {
|
|
1137
|
+
|
|
1138
|
+
// Own properties of GCalc-2.GCalc.MathPow
|
|
1139
|
+
|
|
1140
|
+
static name: string
|
|
1141
|
+
static $gtype: GObject.GType<MathPow>
|
|
1142
|
+
|
|
1143
|
+
// Constructors of GCalc-2.GCalc.MathPow
|
|
1144
|
+
|
|
1145
|
+
constructor(config?: MathPow.ConstructorProperties)
|
|
1146
|
+
_init(config?: MathPow.ConstructorProperties): void
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
module MathResult {
|
|
1150
|
+
|
|
1151
|
+
// Constructor properties interface
|
|
1152
|
+
|
|
1153
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
interface MathResult extends GObject.Object {
|
|
1159
|
+
|
|
1160
|
+
// Own properties of GCalc-2.GCalc.MathResult
|
|
1161
|
+
|
|
1162
|
+
readonly expression: MathExpression
|
|
1163
|
+
|
|
1164
|
+
// Owm methods of GCalc-2.GCalc.MathResult
|
|
1165
|
+
|
|
1166
|
+
to_string(): string | null
|
|
1167
|
+
get_expression(): MathExpression
|
|
1168
|
+
|
|
1169
|
+
// Own virtual methods of GCalc-2.GCalc.MathResult
|
|
1170
|
+
|
|
1171
|
+
vfunc_to_string(): string | null
|
|
1172
|
+
vfunc_get_expression(): MathExpression
|
|
1173
|
+
|
|
1174
|
+
// Class property signals of GCalc-2.GCalc.MathResult
|
|
1175
|
+
|
|
1176
|
+
connect(sigName: "notify::expression", callback: (($obj: MathResult, pspec: GObject.ParamSpec) => void)): number
|
|
1177
|
+
connect_after(sigName: "notify::expression", callback: (($obj: MathResult, pspec: GObject.ParamSpec) => void)): number
|
|
1178
|
+
emit(sigName: "notify::expression", ...args: any[]): void
|
|
1179
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1180
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1181
|
+
emit(sigName: string, ...args: any[]): void
|
|
1182
|
+
disconnect(id: number): void
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
class MathResult {
|
|
1186
|
+
|
|
1187
|
+
// Own properties of GCalc-2.GCalc.MathResult
|
|
1188
|
+
|
|
1189
|
+
static name: string
|
|
1190
|
+
static $gtype: GObject.GType<MathResult>
|
|
1191
|
+
|
|
1192
|
+
// Constructors of GCalc-2.GCalc.MathResult
|
|
1193
|
+
|
|
1194
|
+
constructor(config?: MathResult.ConstructorProperties)
|
|
1195
|
+
_init(config?: MathResult.ConstructorProperties): void
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
module MathTerm {
|
|
1199
|
+
|
|
1200
|
+
// Constructor properties interface
|
|
1201
|
+
|
|
1202
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
interface MathTerm extends GObject.Object, MathExpression {
|
|
1208
|
+
|
|
1209
|
+
// Owm methods of GCalc-2.GCalc.MathTerm
|
|
1210
|
+
|
|
1211
|
+
add(t: MathTerm): MathExpression
|
|
1212
|
+
evaluate(): MathExpression
|
|
1213
|
+
|
|
1214
|
+
// Own virtual methods of GCalc-2.GCalc.MathTerm
|
|
1215
|
+
|
|
1216
|
+
vfunc_add(t: MathTerm): MathExpression
|
|
1217
|
+
vfunc_evaluate(): MathExpression
|
|
1218
|
+
|
|
1219
|
+
// Class property signals of GCalc-2.GCalc.MathTerm
|
|
1220
|
+
|
|
1221
|
+
connect(sigName: "notify::parent", callback: (($obj: MathTerm, pspec: GObject.ParamSpec) => void)): number
|
|
1222
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathTerm, pspec: GObject.ParamSpec) => void)): number
|
|
1223
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1224
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathTerm, pspec: GObject.ParamSpec) => void)): number
|
|
1225
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathTerm, pspec: GObject.ParamSpec) => void)): number
|
|
1226
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1227
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1228
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1229
|
+
emit(sigName: string, ...args: any[]): void
|
|
1230
|
+
disconnect(id: number): void
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
class MathTerm {
|
|
1234
|
+
|
|
1235
|
+
// Own properties of GCalc-2.GCalc.MathTerm
|
|
1236
|
+
|
|
1237
|
+
static name: string
|
|
1238
|
+
static $gtype: GObject.GType<MathTerm>
|
|
1239
|
+
|
|
1240
|
+
// Constructors of GCalc-2.GCalc.MathTerm
|
|
1241
|
+
|
|
1242
|
+
constructor(config?: MathTerm.ConstructorProperties)
|
|
1243
|
+
_init(config?: MathTerm.ConstructorProperties): void
|
|
1244
|
+
static evaluate_constants(c1: MathConstant, c2: MathConstant, op: MathOperator): MathExpression
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
module MathVariable {
|
|
1248
|
+
|
|
1249
|
+
// Constructor properties interface
|
|
1250
|
+
|
|
1251
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties, MathExpression.ConstructorProperties {
|
|
1252
|
+
|
|
1253
|
+
// Own constructor properties of GCalc-2.GCalc.MathVariable
|
|
1254
|
+
|
|
1255
|
+
name?: string | null
|
|
1256
|
+
value?: MathConstant | null
|
|
1257
|
+
bind?: MathVariable | null
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
}
|
|
1261
|
+
|
|
1262
|
+
interface MathVariable extends GObject.Object, MathExpression {
|
|
1263
|
+
|
|
1264
|
+
// Own properties of GCalc-2.GCalc.MathVariable
|
|
1265
|
+
|
|
1266
|
+
name: string | null
|
|
1267
|
+
value: MathConstant
|
|
1268
|
+
bind: MathVariable
|
|
1269
|
+
|
|
1270
|
+
// Owm methods of GCalc-2.GCalc.MathVariable
|
|
1271
|
+
|
|
1272
|
+
evaluate(): MathExpression
|
|
1273
|
+
get_name(): string | null
|
|
1274
|
+
set_name(value: string | null): void
|
|
1275
|
+
get_value(): MathConstant
|
|
1276
|
+
set_value(value: MathConstant): void
|
|
1277
|
+
get_bind(): MathVariable
|
|
1278
|
+
set_bind(value: MathVariable): void
|
|
1279
|
+
get_binded(): boolean
|
|
1280
|
+
|
|
1281
|
+
// Own virtual methods of GCalc-2.GCalc.MathVariable
|
|
1282
|
+
|
|
1283
|
+
vfunc_evaluate(): MathExpression
|
|
1284
|
+
vfunc_get_name(): string | null
|
|
1285
|
+
vfunc_set_name(value: string | null): void
|
|
1286
|
+
vfunc_get_value(): MathConstant
|
|
1287
|
+
vfunc_set_value(value: MathConstant): void
|
|
1288
|
+
vfunc_get_bind(): MathVariable
|
|
1289
|
+
vfunc_set_bind(value: MathVariable): void
|
|
1290
|
+
vfunc_get_binded(): boolean
|
|
1291
|
+
|
|
1292
|
+
// Class property signals of GCalc-2.GCalc.MathVariable
|
|
1293
|
+
|
|
1294
|
+
connect(sigName: "notify::name", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1295
|
+
connect_after(sigName: "notify::name", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1296
|
+
emit(sigName: "notify::name", ...args: any[]): void
|
|
1297
|
+
connect(sigName: "notify::value", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1298
|
+
connect_after(sigName: "notify::value", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1299
|
+
emit(sigName: "notify::value", ...args: any[]): void
|
|
1300
|
+
connect(sigName: "notify::bind", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1301
|
+
connect_after(sigName: "notify::bind", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1302
|
+
emit(sigName: "notify::bind", ...args: any[]): void
|
|
1303
|
+
connect(sigName: "notify::parent", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1304
|
+
connect_after(sigName: "notify::parent", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1305
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1306
|
+
connect(sigName: "notify::expressions", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1307
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: MathVariable, pspec: GObject.ParamSpec) => void)): number
|
|
1308
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1309
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1310
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1311
|
+
emit(sigName: string, ...args: any[]): void
|
|
1312
|
+
disconnect(id: number): void
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
class MathVariable {
|
|
1316
|
+
|
|
1317
|
+
// Own properties of GCalc-2.GCalc.MathVariable
|
|
1318
|
+
|
|
1319
|
+
static name: string
|
|
1320
|
+
static $gtype: GObject.GType<MathVariable>
|
|
1321
|
+
|
|
1322
|
+
// Constructors of GCalc-2.GCalc.MathVariable
|
|
1323
|
+
|
|
1324
|
+
constructor(config?: MathVariable.ConstructorProperties)
|
|
1325
|
+
_init(config?: MathVariable.ConstructorProperties): void
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
module Assign {
|
|
1329
|
+
|
|
1330
|
+
// Constructor properties interface
|
|
1331
|
+
|
|
1332
|
+
interface ConstructorProperties extends MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties, MathAssign.ConstructorProperties, Expression.ConstructorProperties {
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
interface Assign extends MathOperator, MathBinaryOperator, MathAssign {
|
|
1338
|
+
|
|
1339
|
+
// Class property signals of GCalc-2.GCalc.Assign
|
|
1340
|
+
|
|
1341
|
+
connect(sigName: "notify::parent", callback: (($obj: Assign, pspec: GObject.ParamSpec) => void)): number
|
|
1342
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Assign, pspec: GObject.ParamSpec) => void)): number
|
|
1343
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1344
|
+
connect(sigName: "notify::expressions", callback: (($obj: Assign, pspec: GObject.ParamSpec) => void)): number
|
|
1345
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Assign, pspec: GObject.ParamSpec) => void)): number
|
|
1346
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1347
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1348
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1349
|
+
emit(sigName: string, ...args: any[]): void
|
|
1350
|
+
disconnect(id: number): void
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
class Assign extends Expression {
|
|
1354
|
+
|
|
1355
|
+
// Own properties of GCalc-2.GCalc.Assign
|
|
1356
|
+
|
|
1357
|
+
static name: string
|
|
1358
|
+
static $gtype: GObject.GType<Assign>
|
|
1359
|
+
|
|
1360
|
+
// Constructors of GCalc-2.GCalc.Assign
|
|
1361
|
+
|
|
1362
|
+
constructor(config?: Assign.ConstructorProperties)
|
|
1363
|
+
constructor()
|
|
1364
|
+
static new(): Assign
|
|
1365
|
+
|
|
1366
|
+
// Overloads of new
|
|
1367
|
+
|
|
1368
|
+
static new(): Expression
|
|
1369
|
+
_init(config?: Assign.ConstructorProperties): void
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
module Calculator {
|
|
1373
|
+
|
|
1374
|
+
// Constructor properties interface
|
|
1375
|
+
|
|
1376
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
interface Calculator {
|
|
1382
|
+
|
|
1383
|
+
// Class property signals of GCalc-2.GCalc.Calculator
|
|
1384
|
+
|
|
1385
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1386
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1387
|
+
emit(sigName: string, ...args: any[]): void
|
|
1388
|
+
disconnect(id: number): void
|
|
1389
|
+
}
|
|
1390
|
+
|
|
1391
|
+
class Calculator extends GObject.Object {
|
|
1392
|
+
|
|
1393
|
+
// Own properties of GCalc-2.GCalc.Calculator
|
|
1394
|
+
|
|
1395
|
+
static name: string
|
|
1396
|
+
static $gtype: GObject.GType<Calculator>
|
|
1397
|
+
|
|
1398
|
+
// Constructors of GCalc-2.GCalc.Calculator
|
|
1399
|
+
|
|
1400
|
+
constructor(config?: Calculator.ConstructorProperties)
|
|
1401
|
+
constructor()
|
|
1402
|
+
static new(): Calculator
|
|
1403
|
+
_init(config?: Calculator.ConstructorProperties): void
|
|
1404
|
+
static add(c1: MathConstant, c2: MathConstant): MathConstant
|
|
1405
|
+
static subtract(c1: MathConstant, c2: MathConstant): MathConstant
|
|
1406
|
+
static multiply(c1: MathConstant, c2: MathConstant): MathConstant
|
|
1407
|
+
static divide(c1: MathConstant, c2: MathConstant): MathConstant
|
|
1408
|
+
static neg(c: MathConstant): MathConstant
|
|
1409
|
+
static pow(c: MathConstant, p: MathConstant): MathConstant
|
|
1410
|
+
static sqrt(c: MathConstant): MathConstant
|
|
1411
|
+
static pi(): MathConstant
|
|
1412
|
+
static log2(): MathConstant
|
|
1413
|
+
static euler(): MathConstant
|
|
1414
|
+
static catalan(): MathConstant
|
|
1415
|
+
static eq(c1: MathConstant, c2: MathConstant): boolean
|
|
1416
|
+
static gt(c1: MathConstant, c2: MathConstant): boolean
|
|
1417
|
+
static lt(c1: MathConstant, c2: MathConstant): boolean
|
|
1418
|
+
static cos(c1: MathConstant, units: AngleUnit): MathConstant
|
|
1419
|
+
static sin(c1: MathConstant, units: AngleUnit): MathConstant
|
|
1420
|
+
static tan(c1: MathConstant, units: AngleUnit): MathConstant
|
|
1421
|
+
static acos(c1: MathConstant, units: AngleUnit): MathConstant
|
|
1422
|
+
static asin(c1: MathConstant, units: AngleUnit): MathConstant
|
|
1423
|
+
static atan(c1: MathConstant, units: AngleUnit): MathConstant
|
|
1424
|
+
static log10(c1: MathConstant): MathConstant
|
|
1425
|
+
static exp(c1: MathConstant): MathConstant
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
module Constant {
|
|
1429
|
+
|
|
1430
|
+
// Constructor properties interface
|
|
1431
|
+
|
|
1432
|
+
interface ConstructorProperties extends MathConstant.ConstructorProperties, MathConstantNumber.ConstructorProperties, MathConstantComplex.ConstructorProperties, MathConstantVector.ConstructorProperties, Expression.ConstructorProperties {
|
|
1433
|
+
}
|
|
1434
|
+
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
interface Constant extends MathConstant, MathConstantNumber, MathConstantComplex, MathConstantVector {
|
|
1438
|
+
|
|
1439
|
+
// Class property signals of GCalc-2.GCalc.Constant
|
|
1440
|
+
|
|
1441
|
+
connect(sigName: "notify::parent", callback: (($obj: Constant, pspec: GObject.ParamSpec) => void)): number
|
|
1442
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Constant, pspec: GObject.ParamSpec) => void)): number
|
|
1443
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1444
|
+
connect(sigName: "notify::expressions", callback: (($obj: Constant, pspec: GObject.ParamSpec) => void)): number
|
|
1445
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Constant, pspec: GObject.ParamSpec) => void)): number
|
|
1446
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1447
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1448
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1449
|
+
emit(sigName: string, ...args: any[]): void
|
|
1450
|
+
disconnect(id: number): void
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
class Constant extends Expression {
|
|
1454
|
+
|
|
1455
|
+
// Own properties of GCalc-2.GCalc.Constant
|
|
1456
|
+
|
|
1457
|
+
static name: string
|
|
1458
|
+
static $gtype: GObject.GType<Constant>
|
|
1459
|
+
|
|
1460
|
+
// Constructors of GCalc-2.GCalc.Constant
|
|
1461
|
+
|
|
1462
|
+
constructor(config?: Constant.ConstructorProperties)
|
|
1463
|
+
static integer(val: number): Constant
|
|
1464
|
+
static unsigned_integer(val: number): Constant
|
|
1465
|
+
static double(val: number): Constant
|
|
1466
|
+
static complex(real: number, imag: number): Constant
|
|
1467
|
+
static assign(c: MathConstant): Constant
|
|
1468
|
+
constructor()
|
|
1469
|
+
static new(): Constant
|
|
1470
|
+
|
|
1471
|
+
// Overloads of new
|
|
1472
|
+
|
|
1473
|
+
static new(): Expression
|
|
1474
|
+
_init(config?: Constant.ConstructorProperties): void
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
module Division {
|
|
1478
|
+
|
|
1479
|
+
// Constructor properties interface
|
|
1480
|
+
|
|
1481
|
+
interface ConstructorProperties extends MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties, MathDivision.ConstructorProperties, Expression.ConstructorProperties {
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
interface Division extends MathOperator, MathBinaryOperator, MathDivision {
|
|
1487
|
+
|
|
1488
|
+
// Class property signals of GCalc-2.GCalc.Division
|
|
1489
|
+
|
|
1490
|
+
connect(sigName: "notify::parent", callback: (($obj: Division, pspec: GObject.ParamSpec) => void)): number
|
|
1491
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Division, pspec: GObject.ParamSpec) => void)): number
|
|
1492
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1493
|
+
connect(sigName: "notify::expressions", callback: (($obj: Division, pspec: GObject.ParamSpec) => void)): number
|
|
1494
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Division, pspec: GObject.ParamSpec) => void)): number
|
|
1495
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1496
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1497
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1498
|
+
emit(sigName: string, ...args: any[]): void
|
|
1499
|
+
disconnect(id: number): void
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
class Division extends Expression {
|
|
1503
|
+
|
|
1504
|
+
// Own properties of GCalc-2.GCalc.Division
|
|
1505
|
+
|
|
1506
|
+
static name: string
|
|
1507
|
+
static $gtype: GObject.GType<Division>
|
|
1508
|
+
|
|
1509
|
+
// Constructors of GCalc-2.GCalc.Division
|
|
1510
|
+
|
|
1511
|
+
constructor(config?: Division.ConstructorProperties)
|
|
1512
|
+
constructor()
|
|
1513
|
+
static new(): Division
|
|
1514
|
+
|
|
1515
|
+
// Overloads of new
|
|
1516
|
+
|
|
1517
|
+
static new(): Expression
|
|
1518
|
+
_init(config?: Division.ConstructorProperties): void
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
module Equation {
|
|
1522
|
+
|
|
1523
|
+
// Constructor properties interface
|
|
1524
|
+
|
|
1525
|
+
interface ConstructorProperties extends MathEquation.ConstructorProperties, Expression.ConstructorProperties {
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
interface Equation extends MathEquation {
|
|
1531
|
+
|
|
1532
|
+
// Class property signals of GCalc-2.GCalc.Equation
|
|
1533
|
+
|
|
1534
|
+
connect(sigName: "notify::variables", callback: (($obj: Equation, pspec: GObject.ParamSpec) => void)): number
|
|
1535
|
+
connect_after(sigName: "notify::variables", callback: (($obj: Equation, pspec: GObject.ParamSpec) => void)): number
|
|
1536
|
+
emit(sigName: "notify::variables", ...args: any[]): void
|
|
1537
|
+
connect(sigName: "notify::parent", callback: (($obj: Equation, pspec: GObject.ParamSpec) => void)): number
|
|
1538
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Equation, pspec: GObject.ParamSpec) => void)): number
|
|
1539
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1540
|
+
connect(sigName: "notify::expressions", callback: (($obj: Equation, pspec: GObject.ParamSpec) => void)): number
|
|
1541
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Equation, pspec: GObject.ParamSpec) => void)): number
|
|
1542
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1543
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1544
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1545
|
+
emit(sigName: string, ...args: any[]): void
|
|
1546
|
+
disconnect(id: number): void
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
class Equation extends Expression {
|
|
1550
|
+
|
|
1551
|
+
// Own properties of GCalc-2.GCalc.Equation
|
|
1552
|
+
|
|
1553
|
+
static name: string
|
|
1554
|
+
static $gtype: GObject.GType<Equation>
|
|
1555
|
+
|
|
1556
|
+
// Constructors of GCalc-2.GCalc.Equation
|
|
1557
|
+
|
|
1558
|
+
constructor(config?: Equation.ConstructorProperties)
|
|
1559
|
+
constructor()
|
|
1560
|
+
static new(): Equation
|
|
1561
|
+
|
|
1562
|
+
// Overloads of new
|
|
1563
|
+
|
|
1564
|
+
static new(): Expression
|
|
1565
|
+
_init(config?: Equation.ConstructorProperties): void
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
module EquationManager {
|
|
1569
|
+
|
|
1570
|
+
// Constructor properties interface
|
|
1571
|
+
|
|
1572
|
+
interface ConstructorProperties extends MathEquationManager.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
interface EquationManager extends MathEquationManager {
|
|
1578
|
+
|
|
1579
|
+
// Class property signals of GCalc-2.GCalc.EquationManager
|
|
1580
|
+
|
|
1581
|
+
connect(sigName: "notify::equations", callback: (($obj: EquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
1582
|
+
connect_after(sigName: "notify::equations", callback: (($obj: EquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
1583
|
+
emit(sigName: "notify::equations", ...args: any[]): void
|
|
1584
|
+
connect(sigName: "notify::functions", callback: (($obj: EquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
1585
|
+
connect_after(sigName: "notify::functions", callback: (($obj: EquationManager, pspec: GObject.ParamSpec) => void)): number
|
|
1586
|
+
emit(sigName: "notify::functions", ...args: any[]): void
|
|
1587
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1588
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1589
|
+
emit(sigName: string, ...args: any[]): void
|
|
1590
|
+
disconnect(id: number): void
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
class EquationManager extends GObject.Object {
|
|
1594
|
+
|
|
1595
|
+
// Own properties of GCalc-2.GCalc.EquationManager
|
|
1596
|
+
|
|
1597
|
+
static name: string
|
|
1598
|
+
static $gtype: GObject.GType<EquationManager>
|
|
1599
|
+
|
|
1600
|
+
// Constructors of GCalc-2.GCalc.EquationManager
|
|
1601
|
+
|
|
1602
|
+
constructor(config?: EquationManager.ConstructorProperties)
|
|
1603
|
+
constructor()
|
|
1604
|
+
static new(): EquationManager
|
|
1605
|
+
_init(config?: EquationManager.ConstructorProperties): void
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
module ErrorResult {
|
|
1609
|
+
|
|
1610
|
+
// Constructor properties interface
|
|
1611
|
+
|
|
1612
|
+
interface ConstructorProperties extends MathResult.ConstructorProperties, MathErrorResult.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
interface ErrorResult extends MathResult, MathErrorResult {
|
|
1618
|
+
|
|
1619
|
+
// Class property signals of GCalc-2.GCalc.ErrorResult
|
|
1620
|
+
|
|
1621
|
+
connect(sigName: "notify::expression", callback: (($obj: ErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
1622
|
+
connect_after(sigName: "notify::expression", callback: (($obj: ErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
1623
|
+
emit(sigName: "notify::expression", ...args: any[]): void
|
|
1624
|
+
connect(sigName: "notify::message", callback: (($obj: ErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
1625
|
+
connect_after(sigName: "notify::message", callback: (($obj: ErrorResult, pspec: GObject.ParamSpec) => void)): number
|
|
1626
|
+
emit(sigName: "notify::message", ...args: any[]): void
|
|
1627
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1628
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1629
|
+
emit(sigName: string, ...args: any[]): void
|
|
1630
|
+
disconnect(id: number): void
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
class ErrorResult extends GObject.Object {
|
|
1634
|
+
|
|
1635
|
+
// Own properties of GCalc-2.GCalc.ErrorResult
|
|
1636
|
+
|
|
1637
|
+
static name: string
|
|
1638
|
+
static $gtype: GObject.GType<ErrorResult>
|
|
1639
|
+
|
|
1640
|
+
// Constructors of GCalc-2.GCalc.ErrorResult
|
|
1641
|
+
|
|
1642
|
+
constructor(config?: ErrorResult.ConstructorProperties)
|
|
1643
|
+
constructor(msg: string | null)
|
|
1644
|
+
static new(msg: string | null): ErrorResult
|
|
1645
|
+
_init(config?: ErrorResult.ConstructorProperties): void
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
module Expression {
|
|
1649
|
+
|
|
1650
|
+
// Constructor properties interface
|
|
1651
|
+
|
|
1652
|
+
interface ConstructorProperties extends MathExpression.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
1653
|
+
}
|
|
1654
|
+
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
interface Expression extends MathExpression {
|
|
1658
|
+
|
|
1659
|
+
// Owm methods of GCalc-2.GCalc.Expression
|
|
1660
|
+
|
|
1661
|
+
to_string(): string | null
|
|
1662
|
+
solve(): MathResult
|
|
1663
|
+
|
|
1664
|
+
// Own virtual methods of GCalc-2.GCalc.Expression
|
|
1665
|
+
|
|
1666
|
+
vfunc_to_string(): string | null
|
|
1667
|
+
vfunc_solve(): MathResult
|
|
1668
|
+
|
|
1669
|
+
// Class property signals of GCalc-2.GCalc.Expression
|
|
1670
|
+
|
|
1671
|
+
connect(sigName: "notify::parent", callback: (($obj: Expression, pspec: GObject.ParamSpec) => void)): number
|
|
1672
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Expression, pspec: GObject.ParamSpec) => void)): number
|
|
1673
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1674
|
+
connect(sigName: "notify::expressions", callback: (($obj: Expression, pspec: GObject.ParamSpec) => void)): number
|
|
1675
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Expression, pspec: GObject.ParamSpec) => void)): number
|
|
1676
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
1677
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1678
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1679
|
+
emit(sigName: string, ...args: any[]): void
|
|
1680
|
+
disconnect(id: number): void
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
class Expression extends GObject.Object {
|
|
1684
|
+
|
|
1685
|
+
// Own properties of GCalc-2.GCalc.Expression
|
|
1686
|
+
|
|
1687
|
+
static name: string
|
|
1688
|
+
static $gtype: GObject.GType<Expression>
|
|
1689
|
+
|
|
1690
|
+
// Constructors of GCalc-2.GCalc.Expression
|
|
1691
|
+
|
|
1692
|
+
constructor(config?: Expression.ConstructorProperties)
|
|
1693
|
+
constructor()
|
|
1694
|
+
static new(): Expression
|
|
1695
|
+
_init(config?: Expression.ConstructorProperties): void
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
module ErrorExpression {
|
|
1699
|
+
|
|
1700
|
+
// Constructor properties interface
|
|
1701
|
+
|
|
1702
|
+
interface ConstructorProperties extends Expression.ConstructorProperties {
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
interface ErrorExpression {
|
|
1708
|
+
|
|
1709
|
+
// Class property signals of GCalc-2.GCalc.ErrorExpression
|
|
1710
|
+
|
|
1711
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1712
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1713
|
+
emit(sigName: string, ...args: any[]): void
|
|
1714
|
+
disconnect(id: number): void
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1717
|
+
class ErrorExpression extends Expression {
|
|
1718
|
+
|
|
1719
|
+
// Own properties of GCalc-2.GCalc.ErrorExpression
|
|
1720
|
+
|
|
1721
|
+
static name: string
|
|
1722
|
+
static $gtype: GObject.GType<ErrorExpression>
|
|
1723
|
+
|
|
1724
|
+
// Constructors of GCalc-2.GCalc.ErrorExpression
|
|
1725
|
+
|
|
1726
|
+
constructor(config?: ErrorExpression.ConstructorProperties)
|
|
1727
|
+
constructor()
|
|
1728
|
+
static new(): ErrorExpression
|
|
1729
|
+
|
|
1730
|
+
// Overloads of new
|
|
1731
|
+
|
|
1732
|
+
static new(): Expression
|
|
1733
|
+
_init(config?: ErrorExpression.ConstructorProperties): void
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
module ExpressionContainer {
|
|
1737
|
+
|
|
1738
|
+
// Constructor properties interface
|
|
1739
|
+
|
|
1740
|
+
interface ConstructorProperties extends Gio.ListModel.ConstructorProperties, Gee.ArrayList.ConstructorProperties {
|
|
1741
|
+
|
|
1742
|
+
// Own constructor properties of GCalc-2.GCalc.ExpressionContainer
|
|
1743
|
+
|
|
1744
|
+
parent?: MathExpression | null
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
interface ExpressionContainer extends Gio.ListModel {
|
|
1750
|
+
|
|
1751
|
+
// Own properties of GCalc-2.GCalc.ExpressionContainer
|
|
1752
|
+
|
|
1753
|
+
parent: MathExpression
|
|
1754
|
+
|
|
1755
|
+
// Conflicting properties
|
|
1756
|
+
|
|
1757
|
+
read_only_view: any
|
|
1758
|
+
|
|
1759
|
+
// Owm methods of GCalc-2.GCalc.ExpressionContainer
|
|
1760
|
+
|
|
1761
|
+
get_object(position: number): GObject.Object | null
|
|
1762
|
+
find(exp: MathExpression): MathExpression | null
|
|
1763
|
+
find_named(name: string | null): MathExpression | null
|
|
1764
|
+
get_parent(): MathExpression
|
|
1765
|
+
set_parent(value: MathExpression): void
|
|
1766
|
+
|
|
1767
|
+
// Conflicting methods
|
|
1768
|
+
|
|
1769
|
+
get_read_only_view(): Gee.BidirList
|
|
1770
|
+
|
|
1771
|
+
// Overloads of get_read_only_view
|
|
1772
|
+
|
|
1773
|
+
get_read_only_view(): Gee.BidirList
|
|
1774
|
+
get_read_only_view(): Gee.List
|
|
1775
|
+
get_read_only_view(): Gee.Collection
|
|
1776
|
+
get_read_only_view(): Gee.BidirList
|
|
1777
|
+
|
|
1778
|
+
// Overloads of get_read_only_view
|
|
1779
|
+
|
|
1780
|
+
get_read_only_view(): Gee.List
|
|
1781
|
+
get_read_only_view(): Gee.Collection
|
|
1782
|
+
get_read_only_view(): Gee.List
|
|
1783
|
+
|
|
1784
|
+
// Overloads of get_read_only_view
|
|
1785
|
+
|
|
1786
|
+
get_read_only_view(): Gee.List
|
|
1787
|
+
get_read_only_view(): Gee.Collection
|
|
1788
|
+
get_read_only_view(): Gee.List
|
|
1789
|
+
|
|
1790
|
+
// Overloads of get_read_only_view
|
|
1791
|
+
|
|
1792
|
+
get_read_only_view(): Gee.Collection
|
|
1793
|
+
get_read_only_view(): Gee.Collection
|
|
1794
|
+
get_read_only_view(): Gee.Collection
|
|
1795
|
+
vfunc_get_read_only_view(): Gee.BidirList
|
|
1796
|
+
|
|
1797
|
+
// Overloads of vfunc_get_read_only_view
|
|
1798
|
+
|
|
1799
|
+
vfunc_get_read_only_view(): Gee.BidirList
|
|
1800
|
+
vfunc_get_read_only_view(): Gee.List
|
|
1801
|
+
vfunc_get_read_only_view(): Gee.Collection
|
|
1802
|
+
vfunc_get_read_only_view(): Gee.BidirList
|
|
1803
|
+
|
|
1804
|
+
// Overloads of vfunc_get_read_only_view
|
|
1805
|
+
|
|
1806
|
+
vfunc_get_read_only_view(): Gee.List
|
|
1807
|
+
vfunc_get_read_only_view(): Gee.Collection
|
|
1808
|
+
vfunc_get_read_only_view(): Gee.List
|
|
1809
|
+
|
|
1810
|
+
// Overloads of vfunc_get_read_only_view
|
|
1811
|
+
|
|
1812
|
+
vfunc_get_read_only_view(): Gee.List
|
|
1813
|
+
vfunc_get_read_only_view(): Gee.Collection
|
|
1814
|
+
vfunc_get_read_only_view(): Gee.List
|
|
1815
|
+
|
|
1816
|
+
// Overloads of vfunc_get_read_only_view
|
|
1817
|
+
|
|
1818
|
+
vfunc_get_read_only_view(): Gee.Collection
|
|
1819
|
+
vfunc_get_read_only_view(): Gee.Collection
|
|
1820
|
+
vfunc_get_read_only_view(): Gee.Collection
|
|
1821
|
+
|
|
1822
|
+
// Class property signals of GCalc-2.GCalc.ExpressionContainer
|
|
1823
|
+
|
|
1824
|
+
connect(sigName: "notify::parent", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1825
|
+
connect_after(sigName: "notify::parent", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1826
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1827
|
+
connect(sigName: "notify::g-type", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1828
|
+
connect_after(sigName: "notify::g-type", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1829
|
+
emit(sigName: "notify::g-type", ...args: any[]): void
|
|
1830
|
+
connect(sigName: "notify::g-dup-func", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1831
|
+
connect_after(sigName: "notify::g-dup-func", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1832
|
+
emit(sigName: "notify::g-dup-func", ...args: any[]): void
|
|
1833
|
+
connect(sigName: "notify::g-destroy-func", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1834
|
+
connect_after(sigName: "notify::g-destroy-func", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1835
|
+
emit(sigName: "notify::g-destroy-func", ...args: any[]): void
|
|
1836
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1837
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1838
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1839
|
+
connect(sigName: "notify::size", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1840
|
+
connect_after(sigName: "notify::size", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1841
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1842
|
+
connect(sigName: "notify::read-only", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1843
|
+
connect_after(sigName: "notify::read-only", callback: (($obj: ExpressionContainer, pspec: GObject.ParamSpec) => void)): number
|
|
1844
|
+
emit(sigName: "notify::read-only", ...args: any[]): void
|
|
1845
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1846
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1847
|
+
emit(sigName: string, ...args: any[]): void
|
|
1848
|
+
disconnect(id: number): void
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1851
|
+
class ExpressionContainer extends Gee.ArrayList {
|
|
1852
|
+
|
|
1853
|
+
// Own properties of GCalc-2.GCalc.ExpressionContainer
|
|
1854
|
+
|
|
1855
|
+
static name: string
|
|
1856
|
+
static $gtype: GObject.GType<ExpressionContainer>
|
|
1857
|
+
|
|
1858
|
+
// Constructors of GCalc-2.GCalc.ExpressionContainer
|
|
1859
|
+
|
|
1860
|
+
constructor(config?: ExpressionContainer.ConstructorProperties)
|
|
1861
|
+
constructor()
|
|
1862
|
+
static new(): ExpressionContainer
|
|
1863
|
+
|
|
1864
|
+
// Overloads of new
|
|
1865
|
+
|
|
1866
|
+
static new(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify, equal_func: Gee.EqualDataFunc | null): Gee.ArrayList
|
|
1867
|
+
_init(config?: ExpressionContainer.ConstructorProperties): void
|
|
1868
|
+
|
|
1869
|
+
// Conflicting static methods
|
|
1870
|
+
|
|
1871
|
+
static empty(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): Gee.List
|
|
1872
|
+
|
|
1873
|
+
// Overloads of empty
|
|
1874
|
+
|
|
1875
|
+
static empty(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): Gee.Collection
|
|
1876
|
+
static empty(g_type: GObject.GType, g_dup_func: GObject.BoxedCopyFunc, g_destroy_func: GLib.DestroyNotify): Gee.Collection
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
module ExpressionHashMap {
|
|
1880
|
+
|
|
1881
|
+
// Constructor properties interface
|
|
1882
|
+
|
|
1883
|
+
interface ConstructorProperties extends Gee.HashMap.ConstructorProperties {
|
|
1884
|
+
|
|
1885
|
+
// Own constructor properties of GCalc-2.GCalc.ExpressionHashMap
|
|
1886
|
+
|
|
1887
|
+
parent?: MathExpression | null
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
interface ExpressionHashMap {
|
|
1893
|
+
|
|
1894
|
+
// Own properties of GCalc-2.GCalc.ExpressionHashMap
|
|
1895
|
+
|
|
1896
|
+
parent: MathExpression
|
|
1897
|
+
|
|
1898
|
+
// Owm methods of GCalc-2.GCalc.ExpressionHashMap
|
|
1899
|
+
|
|
1900
|
+
add(exp: MathExpression): void
|
|
1901
|
+
remove(exp: MathExpression): void
|
|
1902
|
+
|
|
1903
|
+
// Overloads of remove
|
|
1904
|
+
|
|
1905
|
+
remove(key: any | null): [ /* returnType */ boolean, /* value */ any ]
|
|
1906
|
+
find_named(name: string | null): MathExpression | null
|
|
1907
|
+
get_parent(): MathExpression
|
|
1908
|
+
set_parent(value: MathExpression): void
|
|
1909
|
+
|
|
1910
|
+
// Class property signals of GCalc-2.GCalc.ExpressionHashMap
|
|
1911
|
+
|
|
1912
|
+
connect(sigName: "notify::parent", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1913
|
+
connect_after(sigName: "notify::parent", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1914
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
1915
|
+
connect(sigName: "notify::k-type", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1916
|
+
connect_after(sigName: "notify::k-type", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1917
|
+
emit(sigName: "notify::k-type", ...args: any[]): void
|
|
1918
|
+
connect(sigName: "notify::k-dup-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1919
|
+
connect_after(sigName: "notify::k-dup-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1920
|
+
emit(sigName: "notify::k-dup-func", ...args: any[]): void
|
|
1921
|
+
connect(sigName: "notify::k-destroy-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1922
|
+
connect_after(sigName: "notify::k-destroy-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1923
|
+
emit(sigName: "notify::k-destroy-func", ...args: any[]): void
|
|
1924
|
+
connect(sigName: "notify::v-type", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1925
|
+
connect_after(sigName: "notify::v-type", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1926
|
+
emit(sigName: "notify::v-type", ...args: any[]): void
|
|
1927
|
+
connect(sigName: "notify::v-dup-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1928
|
+
connect_after(sigName: "notify::v-dup-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1929
|
+
emit(sigName: "notify::v-dup-func", ...args: any[]): void
|
|
1930
|
+
connect(sigName: "notify::v-destroy-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1931
|
+
connect_after(sigName: "notify::v-destroy-func", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1932
|
+
emit(sigName: "notify::v-destroy-func", ...args: any[]): void
|
|
1933
|
+
connect(sigName: "notify::size", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1934
|
+
connect_after(sigName: "notify::size", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1935
|
+
emit(sigName: "notify::size", ...args: any[]): void
|
|
1936
|
+
connect(sigName: "notify::read-only", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1937
|
+
connect_after(sigName: "notify::read-only", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1938
|
+
emit(sigName: "notify::read-only", ...args: any[]): void
|
|
1939
|
+
connect(sigName: "notify::keys", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1940
|
+
connect_after(sigName: "notify::keys", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1941
|
+
emit(sigName: "notify::keys", ...args: any[]): void
|
|
1942
|
+
connect(sigName: "notify::values", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1943
|
+
connect_after(sigName: "notify::values", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1944
|
+
emit(sigName: "notify::values", ...args: any[]): void
|
|
1945
|
+
connect(sigName: "notify::entries", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1946
|
+
connect_after(sigName: "notify::entries", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1947
|
+
emit(sigName: "notify::entries", ...args: any[]): void
|
|
1948
|
+
connect(sigName: "notify::read-only-view", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1949
|
+
connect_after(sigName: "notify::read-only-view", callback: (($obj: ExpressionHashMap, pspec: GObject.ParamSpec) => void)): number
|
|
1950
|
+
emit(sigName: "notify::read-only-view", ...args: any[]): void
|
|
1951
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
1952
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
1953
|
+
emit(sigName: string, ...args: any[]): void
|
|
1954
|
+
disconnect(id: number): void
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
class ExpressionHashMap extends Gee.HashMap {
|
|
1958
|
+
|
|
1959
|
+
// Own properties of GCalc-2.GCalc.ExpressionHashMap
|
|
1960
|
+
|
|
1961
|
+
static name: string
|
|
1962
|
+
static $gtype: GObject.GType<ExpressionHashMap>
|
|
1963
|
+
|
|
1964
|
+
// Constructors of GCalc-2.GCalc.ExpressionHashMap
|
|
1965
|
+
|
|
1966
|
+
constructor(config?: ExpressionHashMap.ConstructorProperties)
|
|
1967
|
+
constructor()
|
|
1968
|
+
static new(): ExpressionHashMap
|
|
1969
|
+
|
|
1970
|
+
// Overloads of new
|
|
1971
|
+
|
|
1972
|
+
static new(k_type: GObject.GType, k_dup_func: GObject.BoxedCopyFunc, k_destroy_func: GLib.DestroyNotify, v_type: GObject.GType, v_dup_func: GObject.BoxedCopyFunc, v_destroy_func: GLib.DestroyNotify, key_hash_func: Gee.HashDataFunc | null, key_equal_func: Gee.EqualDataFunc | null, value_equal_func: Gee.EqualDataFunc | null): Gee.HashMap
|
|
1973
|
+
_init(config?: ExpressionHashMap.ConstructorProperties): void
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
module Function {
|
|
1977
|
+
|
|
1978
|
+
// Constructor properties interface
|
|
1979
|
+
|
|
1980
|
+
interface ConstructorProperties extends MathFunction.ConstructorProperties, Hashable.ConstructorProperties, Expression.ConstructorProperties {
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
interface Function extends MathFunction, Hashable {
|
|
1986
|
+
|
|
1987
|
+
// Owm methods of GCalc-2.GCalc.Function
|
|
1988
|
+
|
|
1989
|
+
evaluate(): MathExpression
|
|
1990
|
+
|
|
1991
|
+
// Own virtual methods of GCalc-2.GCalc.Function
|
|
1992
|
+
|
|
1993
|
+
vfunc_evaluate(): MathExpression
|
|
1994
|
+
|
|
1995
|
+
// Class property signals of GCalc-2.GCalc.Function
|
|
1996
|
+
|
|
1997
|
+
connect(sigName: "notify::param-types", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
1998
|
+
connect_after(sigName: "notify::param-types", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
1999
|
+
emit(sigName: "notify::param-types", ...args: any[]): void
|
|
2000
|
+
connect(sigName: "notify::name", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2001
|
+
connect_after(sigName: "notify::name", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2002
|
+
emit(sigName: "notify::name", ...args: any[]): void
|
|
2003
|
+
connect(sigName: "notify::n-params", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2004
|
+
connect_after(sigName: "notify::n-params", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2005
|
+
emit(sigName: "notify::n-params", ...args: any[]): void
|
|
2006
|
+
connect(sigName: "notify::closed", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2007
|
+
connect_after(sigName: "notify::closed", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2008
|
+
emit(sigName: "notify::closed", ...args: any[]): void
|
|
2009
|
+
connect(sigName: "notify::parent", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2010
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2011
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2012
|
+
connect(sigName: "notify::expressions", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2013
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Function, pspec: GObject.ParamSpec) => void)): number
|
|
2014
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2015
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2016
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2017
|
+
emit(sigName: string, ...args: any[]): void
|
|
2018
|
+
disconnect(id: number): void
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
class Function extends Expression {
|
|
2022
|
+
|
|
2023
|
+
// Own properties of GCalc-2.GCalc.Function
|
|
2024
|
+
|
|
2025
|
+
static name: string
|
|
2026
|
+
static $gtype: GObject.GType<Function>
|
|
2027
|
+
|
|
2028
|
+
// Constructors of GCalc-2.GCalc.Function
|
|
2029
|
+
|
|
2030
|
+
constructor(config?: Function.ConstructorProperties)
|
|
2031
|
+
static with_name(name: string | null, nparams: number): Function
|
|
2032
|
+
constructor()
|
|
2033
|
+
static new(): Function
|
|
2034
|
+
|
|
2035
|
+
// Overloads of new
|
|
2036
|
+
|
|
2037
|
+
static new(): Expression
|
|
2038
|
+
_init(config?: Function.ConstructorProperties): void
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
module FunctionAcos {
|
|
2042
|
+
|
|
2043
|
+
// Constructor properties interface
|
|
2044
|
+
|
|
2045
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
interface FunctionAcos {
|
|
2051
|
+
|
|
2052
|
+
// Class property signals of GCalc-2.GCalc.FunctionAcos
|
|
2053
|
+
|
|
2054
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2055
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2056
|
+
emit(sigName: string, ...args: any[]): void
|
|
2057
|
+
disconnect(id: number): void
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
class FunctionAcos extends Function {
|
|
2061
|
+
|
|
2062
|
+
// Own properties of GCalc-2.GCalc.FunctionAcos
|
|
2063
|
+
|
|
2064
|
+
static name: string
|
|
2065
|
+
static $gtype: GObject.GType<FunctionAcos>
|
|
2066
|
+
|
|
2067
|
+
// Constructors of GCalc-2.GCalc.FunctionAcos
|
|
2068
|
+
|
|
2069
|
+
constructor(config?: FunctionAcos.ConstructorProperties)
|
|
2070
|
+
constructor()
|
|
2071
|
+
static new(): FunctionAcos
|
|
2072
|
+
|
|
2073
|
+
// Overloads of new
|
|
2074
|
+
|
|
2075
|
+
static new(): Function
|
|
2076
|
+
static new(): Expression
|
|
2077
|
+
_init(config?: FunctionAcos.ConstructorProperties): void
|
|
2078
|
+
}
|
|
2079
|
+
|
|
2080
|
+
module FunctionAcosh {
|
|
2081
|
+
|
|
2082
|
+
// Constructor properties interface
|
|
2083
|
+
|
|
2084
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
interface FunctionAcosh {
|
|
2090
|
+
|
|
2091
|
+
// Class property signals of GCalc-2.GCalc.FunctionAcosh
|
|
2092
|
+
|
|
2093
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2094
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2095
|
+
emit(sigName: string, ...args: any[]): void
|
|
2096
|
+
disconnect(id: number): void
|
|
2097
|
+
}
|
|
2098
|
+
|
|
2099
|
+
class FunctionAcosh extends Function {
|
|
2100
|
+
|
|
2101
|
+
// Own properties of GCalc-2.GCalc.FunctionAcosh
|
|
2102
|
+
|
|
2103
|
+
static name: string
|
|
2104
|
+
static $gtype: GObject.GType<FunctionAcosh>
|
|
2105
|
+
|
|
2106
|
+
// Constructors of GCalc-2.GCalc.FunctionAcosh
|
|
2107
|
+
|
|
2108
|
+
constructor(config?: FunctionAcosh.ConstructorProperties)
|
|
2109
|
+
constructor()
|
|
2110
|
+
static new(): FunctionAcosh
|
|
2111
|
+
|
|
2112
|
+
// Overloads of new
|
|
2113
|
+
|
|
2114
|
+
static new(): Function
|
|
2115
|
+
static new(): Expression
|
|
2116
|
+
_init(config?: FunctionAcosh.ConstructorProperties): void
|
|
2117
|
+
}
|
|
2118
|
+
|
|
2119
|
+
module FunctionAsin {
|
|
2120
|
+
|
|
2121
|
+
// Constructor properties interface
|
|
2122
|
+
|
|
2123
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
interface FunctionAsin {
|
|
2129
|
+
|
|
2130
|
+
// Class property signals of GCalc-2.GCalc.FunctionAsin
|
|
2131
|
+
|
|
2132
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2133
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2134
|
+
emit(sigName: string, ...args: any[]): void
|
|
2135
|
+
disconnect(id: number): void
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
class FunctionAsin extends Function {
|
|
2139
|
+
|
|
2140
|
+
// Own properties of GCalc-2.GCalc.FunctionAsin
|
|
2141
|
+
|
|
2142
|
+
static name: string
|
|
2143
|
+
static $gtype: GObject.GType<FunctionAsin>
|
|
2144
|
+
|
|
2145
|
+
// Constructors of GCalc-2.GCalc.FunctionAsin
|
|
2146
|
+
|
|
2147
|
+
constructor(config?: FunctionAsin.ConstructorProperties)
|
|
2148
|
+
constructor()
|
|
2149
|
+
static new(): FunctionAsin
|
|
2150
|
+
|
|
2151
|
+
// Overloads of new
|
|
2152
|
+
|
|
2153
|
+
static new(): Function
|
|
2154
|
+
static new(): Expression
|
|
2155
|
+
_init(config?: FunctionAsin.ConstructorProperties): void
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
module FunctionAsinh {
|
|
2159
|
+
|
|
2160
|
+
// Constructor properties interface
|
|
2161
|
+
|
|
2162
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
interface FunctionAsinh {
|
|
2168
|
+
|
|
2169
|
+
// Class property signals of GCalc-2.GCalc.FunctionAsinh
|
|
2170
|
+
|
|
2171
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2172
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2173
|
+
emit(sigName: string, ...args: any[]): void
|
|
2174
|
+
disconnect(id: number): void
|
|
2175
|
+
}
|
|
2176
|
+
|
|
2177
|
+
class FunctionAsinh extends Function {
|
|
2178
|
+
|
|
2179
|
+
// Own properties of GCalc-2.GCalc.FunctionAsinh
|
|
2180
|
+
|
|
2181
|
+
static name: string
|
|
2182
|
+
static $gtype: GObject.GType<FunctionAsinh>
|
|
2183
|
+
|
|
2184
|
+
// Constructors of GCalc-2.GCalc.FunctionAsinh
|
|
2185
|
+
|
|
2186
|
+
constructor(config?: FunctionAsinh.ConstructorProperties)
|
|
2187
|
+
constructor()
|
|
2188
|
+
static new(): FunctionAsinh
|
|
2189
|
+
|
|
2190
|
+
// Overloads of new
|
|
2191
|
+
|
|
2192
|
+
static new(): Function
|
|
2193
|
+
static new(): Expression
|
|
2194
|
+
_init(config?: FunctionAsinh.ConstructorProperties): void
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
module FunctionAtan {
|
|
2198
|
+
|
|
2199
|
+
// Constructor properties interface
|
|
2200
|
+
|
|
2201
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
interface FunctionAtan {
|
|
2207
|
+
|
|
2208
|
+
// Class property signals of GCalc-2.GCalc.FunctionAtan
|
|
2209
|
+
|
|
2210
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2211
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2212
|
+
emit(sigName: string, ...args: any[]): void
|
|
2213
|
+
disconnect(id: number): void
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
class FunctionAtan extends Function {
|
|
2217
|
+
|
|
2218
|
+
// Own properties of GCalc-2.GCalc.FunctionAtan
|
|
2219
|
+
|
|
2220
|
+
static name: string
|
|
2221
|
+
static $gtype: GObject.GType<FunctionAtan>
|
|
2222
|
+
|
|
2223
|
+
// Constructors of GCalc-2.GCalc.FunctionAtan
|
|
2224
|
+
|
|
2225
|
+
constructor(config?: FunctionAtan.ConstructorProperties)
|
|
2226
|
+
constructor()
|
|
2227
|
+
static new(): FunctionAtan
|
|
2228
|
+
|
|
2229
|
+
// Overloads of new
|
|
2230
|
+
|
|
2231
|
+
static new(): Function
|
|
2232
|
+
static new(): Expression
|
|
2233
|
+
_init(config?: FunctionAtan.ConstructorProperties): void
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
module FunctionAtanh {
|
|
2237
|
+
|
|
2238
|
+
// Constructor properties interface
|
|
2239
|
+
|
|
2240
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2241
|
+
}
|
|
2242
|
+
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
interface FunctionAtanh {
|
|
2246
|
+
|
|
2247
|
+
// Class property signals of GCalc-2.GCalc.FunctionAtanh
|
|
2248
|
+
|
|
2249
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2250
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2251
|
+
emit(sigName: string, ...args: any[]): void
|
|
2252
|
+
disconnect(id: number): void
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
class FunctionAtanh extends Function {
|
|
2256
|
+
|
|
2257
|
+
// Own properties of GCalc-2.GCalc.FunctionAtanh
|
|
2258
|
+
|
|
2259
|
+
static name: string
|
|
2260
|
+
static $gtype: GObject.GType<FunctionAtanh>
|
|
2261
|
+
|
|
2262
|
+
// Constructors of GCalc-2.GCalc.FunctionAtanh
|
|
2263
|
+
|
|
2264
|
+
constructor(config?: FunctionAtanh.ConstructorProperties)
|
|
2265
|
+
constructor()
|
|
2266
|
+
static new(): FunctionAtanh
|
|
2267
|
+
|
|
2268
|
+
// Overloads of new
|
|
2269
|
+
|
|
2270
|
+
static new(): Function
|
|
2271
|
+
static new(): Expression
|
|
2272
|
+
_init(config?: FunctionAtanh.ConstructorProperties): void
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
module FunctionCos {
|
|
2276
|
+
|
|
2277
|
+
// Constructor properties interface
|
|
2278
|
+
|
|
2279
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
interface FunctionCos {
|
|
2285
|
+
|
|
2286
|
+
// Class property signals of GCalc-2.GCalc.FunctionCos
|
|
2287
|
+
|
|
2288
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2289
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2290
|
+
emit(sigName: string, ...args: any[]): void
|
|
2291
|
+
disconnect(id: number): void
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
class FunctionCos extends Function {
|
|
2295
|
+
|
|
2296
|
+
// Own properties of GCalc-2.GCalc.FunctionCos
|
|
2297
|
+
|
|
2298
|
+
static name: string
|
|
2299
|
+
static $gtype: GObject.GType<FunctionCos>
|
|
2300
|
+
|
|
2301
|
+
// Constructors of GCalc-2.GCalc.FunctionCos
|
|
2302
|
+
|
|
2303
|
+
constructor(config?: FunctionCos.ConstructorProperties)
|
|
2304
|
+
constructor()
|
|
2305
|
+
static new(): FunctionCos
|
|
2306
|
+
|
|
2307
|
+
// Overloads of new
|
|
2308
|
+
|
|
2309
|
+
static new(): Function
|
|
2310
|
+
static new(): Expression
|
|
2311
|
+
_init(config?: FunctionCos.ConstructorProperties): void
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
module FunctionCosh {
|
|
2315
|
+
|
|
2316
|
+
// Constructor properties interface
|
|
2317
|
+
|
|
2318
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
interface FunctionCosh {
|
|
2324
|
+
|
|
2325
|
+
// Class property signals of GCalc-2.GCalc.FunctionCosh
|
|
2326
|
+
|
|
2327
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2328
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2329
|
+
emit(sigName: string, ...args: any[]): void
|
|
2330
|
+
disconnect(id: number): void
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2333
|
+
class FunctionCosh extends Function {
|
|
2334
|
+
|
|
2335
|
+
// Own properties of GCalc-2.GCalc.FunctionCosh
|
|
2336
|
+
|
|
2337
|
+
static name: string
|
|
2338
|
+
static $gtype: GObject.GType<FunctionCosh>
|
|
2339
|
+
|
|
2340
|
+
// Constructors of GCalc-2.GCalc.FunctionCosh
|
|
2341
|
+
|
|
2342
|
+
constructor(config?: FunctionCosh.ConstructorProperties)
|
|
2343
|
+
constructor()
|
|
2344
|
+
static new(): FunctionCosh
|
|
2345
|
+
|
|
2346
|
+
// Overloads of new
|
|
2347
|
+
|
|
2348
|
+
static new(): Function
|
|
2349
|
+
static new(): Expression
|
|
2350
|
+
_init(config?: FunctionCosh.ConstructorProperties): void
|
|
2351
|
+
}
|
|
2352
|
+
|
|
2353
|
+
module FunctionExp {
|
|
2354
|
+
|
|
2355
|
+
// Constructor properties interface
|
|
2356
|
+
|
|
2357
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2358
|
+
}
|
|
2359
|
+
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2362
|
+
interface FunctionExp {
|
|
2363
|
+
|
|
2364
|
+
// Class property signals of GCalc-2.GCalc.FunctionExp
|
|
2365
|
+
|
|
2366
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2367
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2368
|
+
emit(sigName: string, ...args: any[]): void
|
|
2369
|
+
disconnect(id: number): void
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
class FunctionExp extends Function {
|
|
2373
|
+
|
|
2374
|
+
// Own properties of GCalc-2.GCalc.FunctionExp
|
|
2375
|
+
|
|
2376
|
+
static name: string
|
|
2377
|
+
static $gtype: GObject.GType<FunctionExp>
|
|
2378
|
+
|
|
2379
|
+
// Constructors of GCalc-2.GCalc.FunctionExp
|
|
2380
|
+
|
|
2381
|
+
constructor(config?: FunctionExp.ConstructorProperties)
|
|
2382
|
+
constructor()
|
|
2383
|
+
static new(): FunctionExp
|
|
2384
|
+
|
|
2385
|
+
// Overloads of new
|
|
2386
|
+
|
|
2387
|
+
static new(): Function
|
|
2388
|
+
static new(): Expression
|
|
2389
|
+
_init(config?: FunctionExp.ConstructorProperties): void
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
module FunctionLog {
|
|
2393
|
+
|
|
2394
|
+
// Constructor properties interface
|
|
2395
|
+
|
|
2396
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2399
|
+
}
|
|
2400
|
+
|
|
2401
|
+
interface FunctionLog {
|
|
2402
|
+
|
|
2403
|
+
// Class property signals of GCalc-2.GCalc.FunctionLog
|
|
2404
|
+
|
|
2405
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2406
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2407
|
+
emit(sigName: string, ...args: any[]): void
|
|
2408
|
+
disconnect(id: number): void
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
class FunctionLog extends Function {
|
|
2412
|
+
|
|
2413
|
+
// Own properties of GCalc-2.GCalc.FunctionLog
|
|
2414
|
+
|
|
2415
|
+
static name: string
|
|
2416
|
+
static $gtype: GObject.GType<FunctionLog>
|
|
2417
|
+
|
|
2418
|
+
// Constructors of GCalc-2.GCalc.FunctionLog
|
|
2419
|
+
|
|
2420
|
+
constructor(config?: FunctionLog.ConstructorProperties)
|
|
2421
|
+
constructor()
|
|
2422
|
+
static new(): FunctionLog
|
|
2423
|
+
|
|
2424
|
+
// Overloads of new
|
|
2425
|
+
|
|
2426
|
+
static new(): Function
|
|
2427
|
+
static new(): Expression
|
|
2428
|
+
_init(config?: FunctionLog.ConstructorProperties): void
|
|
2429
|
+
}
|
|
2430
|
+
|
|
2431
|
+
module FunctionSin {
|
|
2432
|
+
|
|
2433
|
+
// Constructor properties interface
|
|
2434
|
+
|
|
2435
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2436
|
+
}
|
|
2437
|
+
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
interface FunctionSin {
|
|
2441
|
+
|
|
2442
|
+
// Class property signals of GCalc-2.GCalc.FunctionSin
|
|
2443
|
+
|
|
2444
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2445
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2446
|
+
emit(sigName: string, ...args: any[]): void
|
|
2447
|
+
disconnect(id: number): void
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
class FunctionSin extends Function {
|
|
2451
|
+
|
|
2452
|
+
// Own properties of GCalc-2.GCalc.FunctionSin
|
|
2453
|
+
|
|
2454
|
+
static name: string
|
|
2455
|
+
static $gtype: GObject.GType<FunctionSin>
|
|
2456
|
+
|
|
2457
|
+
// Constructors of GCalc-2.GCalc.FunctionSin
|
|
2458
|
+
|
|
2459
|
+
constructor(config?: FunctionSin.ConstructorProperties)
|
|
2460
|
+
constructor()
|
|
2461
|
+
static new(): FunctionSin
|
|
2462
|
+
|
|
2463
|
+
// Overloads of new
|
|
2464
|
+
|
|
2465
|
+
static new(): Function
|
|
2466
|
+
static new(): Expression
|
|
2467
|
+
_init(config?: FunctionSin.ConstructorProperties): void
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
module FunctionSinh {
|
|
2471
|
+
|
|
2472
|
+
// Constructor properties interface
|
|
2473
|
+
|
|
2474
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
interface FunctionSinh {
|
|
2480
|
+
|
|
2481
|
+
// Class property signals of GCalc-2.GCalc.FunctionSinh
|
|
2482
|
+
|
|
2483
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2484
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2485
|
+
emit(sigName: string, ...args: any[]): void
|
|
2486
|
+
disconnect(id: number): void
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
class FunctionSinh extends Function {
|
|
2490
|
+
|
|
2491
|
+
// Own properties of GCalc-2.GCalc.FunctionSinh
|
|
2492
|
+
|
|
2493
|
+
static name: string
|
|
2494
|
+
static $gtype: GObject.GType<FunctionSinh>
|
|
2495
|
+
|
|
2496
|
+
// Constructors of GCalc-2.GCalc.FunctionSinh
|
|
2497
|
+
|
|
2498
|
+
constructor(config?: FunctionSinh.ConstructorProperties)
|
|
2499
|
+
constructor()
|
|
2500
|
+
static new(): FunctionSinh
|
|
2501
|
+
|
|
2502
|
+
// Overloads of new
|
|
2503
|
+
|
|
2504
|
+
static new(): Function
|
|
2505
|
+
static new(): Expression
|
|
2506
|
+
_init(config?: FunctionSinh.ConstructorProperties): void
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
module FunctionSqrt {
|
|
2510
|
+
|
|
2511
|
+
// Constructor properties interface
|
|
2512
|
+
|
|
2513
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
interface FunctionSqrt {
|
|
2519
|
+
|
|
2520
|
+
// Class property signals of GCalc-2.GCalc.FunctionSqrt
|
|
2521
|
+
|
|
2522
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2523
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2524
|
+
emit(sigName: string, ...args: any[]): void
|
|
2525
|
+
disconnect(id: number): void
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
class FunctionSqrt extends Function {
|
|
2529
|
+
|
|
2530
|
+
// Own properties of GCalc-2.GCalc.FunctionSqrt
|
|
2531
|
+
|
|
2532
|
+
static name: string
|
|
2533
|
+
static $gtype: GObject.GType<FunctionSqrt>
|
|
2534
|
+
|
|
2535
|
+
// Constructors of GCalc-2.GCalc.FunctionSqrt
|
|
2536
|
+
|
|
2537
|
+
constructor(config?: FunctionSqrt.ConstructorProperties)
|
|
2538
|
+
constructor()
|
|
2539
|
+
static new(): FunctionSqrt
|
|
2540
|
+
|
|
2541
|
+
// Overloads of new
|
|
2542
|
+
|
|
2543
|
+
static new(): Function
|
|
2544
|
+
static new(): Expression
|
|
2545
|
+
_init(config?: FunctionSqrt.ConstructorProperties): void
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
module FunctionTan {
|
|
2549
|
+
|
|
2550
|
+
// Constructor properties interface
|
|
2551
|
+
|
|
2552
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
interface FunctionTan {
|
|
2558
|
+
|
|
2559
|
+
// Class property signals of GCalc-2.GCalc.FunctionTan
|
|
2560
|
+
|
|
2561
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2562
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2563
|
+
emit(sigName: string, ...args: any[]): void
|
|
2564
|
+
disconnect(id: number): void
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
class FunctionTan extends Function {
|
|
2568
|
+
|
|
2569
|
+
// Own properties of GCalc-2.GCalc.FunctionTan
|
|
2570
|
+
|
|
2571
|
+
static name: string
|
|
2572
|
+
static $gtype: GObject.GType<FunctionTan>
|
|
2573
|
+
|
|
2574
|
+
// Constructors of GCalc-2.GCalc.FunctionTan
|
|
2575
|
+
|
|
2576
|
+
constructor(config?: FunctionTan.ConstructorProperties)
|
|
2577
|
+
constructor()
|
|
2578
|
+
static new(): FunctionTan
|
|
2579
|
+
|
|
2580
|
+
// Overloads of new
|
|
2581
|
+
|
|
2582
|
+
static new(): Function
|
|
2583
|
+
static new(): Expression
|
|
2584
|
+
_init(config?: FunctionTan.ConstructorProperties): void
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
module FunctionTanh {
|
|
2588
|
+
|
|
2589
|
+
// Constructor properties interface
|
|
2590
|
+
|
|
2591
|
+
interface ConstructorProperties extends Function.ConstructorProperties {
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
interface FunctionTanh {
|
|
2597
|
+
|
|
2598
|
+
// Class property signals of GCalc-2.GCalc.FunctionTanh
|
|
2599
|
+
|
|
2600
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2601
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2602
|
+
emit(sigName: string, ...args: any[]): void
|
|
2603
|
+
disconnect(id: number): void
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
class FunctionTanh extends Function {
|
|
2607
|
+
|
|
2608
|
+
// Own properties of GCalc-2.GCalc.FunctionTanh
|
|
2609
|
+
|
|
2610
|
+
static name: string
|
|
2611
|
+
static $gtype: GObject.GType<FunctionTanh>
|
|
2612
|
+
|
|
2613
|
+
// Constructors of GCalc-2.GCalc.FunctionTanh
|
|
2614
|
+
|
|
2615
|
+
constructor(config?: FunctionTanh.ConstructorProperties)
|
|
2616
|
+
constructor()
|
|
2617
|
+
static new(): FunctionTanh
|
|
2618
|
+
|
|
2619
|
+
// Overloads of new
|
|
2620
|
+
|
|
2621
|
+
static new(): Function
|
|
2622
|
+
static new(): Expression
|
|
2623
|
+
_init(config?: FunctionTanh.ConstructorProperties): void
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
module Group {
|
|
2627
|
+
|
|
2628
|
+
// Constructor properties interface
|
|
2629
|
+
|
|
2630
|
+
interface ConstructorProperties extends MathGroup.ConstructorProperties, Expression.ConstructorProperties {
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
interface Group extends MathGroup {
|
|
2636
|
+
|
|
2637
|
+
// Class property signals of GCalc-2.GCalc.Group
|
|
2638
|
+
|
|
2639
|
+
connect(sigName: "notify::level", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2640
|
+
connect_after(sigName: "notify::level", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2641
|
+
emit(sigName: "notify::level", ...args: any[]): void
|
|
2642
|
+
connect(sigName: "notify::closed", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2643
|
+
connect_after(sigName: "notify::closed", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2644
|
+
emit(sigName: "notify::closed", ...args: any[]): void
|
|
2645
|
+
connect(sigName: "notify::parent", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2646
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2647
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2648
|
+
connect(sigName: "notify::expressions", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2649
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Group, pspec: GObject.ParamSpec) => void)): number
|
|
2650
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2651
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2652
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2653
|
+
emit(sigName: string, ...args: any[]): void
|
|
2654
|
+
disconnect(id: number): void
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
class Group extends Expression {
|
|
2658
|
+
|
|
2659
|
+
// Own properties of GCalc-2.GCalc.Group
|
|
2660
|
+
|
|
2661
|
+
static name: string
|
|
2662
|
+
static $gtype: GObject.GType<Group>
|
|
2663
|
+
|
|
2664
|
+
// Constructors of GCalc-2.GCalc.Group
|
|
2665
|
+
|
|
2666
|
+
constructor(config?: Group.ConstructorProperties)
|
|
2667
|
+
constructor()
|
|
2668
|
+
static new(): Group
|
|
2669
|
+
|
|
2670
|
+
// Overloads of new
|
|
2671
|
+
|
|
2672
|
+
static new(): Expression
|
|
2673
|
+
_init(config?: Group.ConstructorProperties): void
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
module Minus {
|
|
2677
|
+
|
|
2678
|
+
// Constructor properties interface
|
|
2679
|
+
|
|
2680
|
+
interface ConstructorProperties extends MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties, MathMinus.ConstructorProperties, Expression.ConstructorProperties {
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
interface Minus extends MathOperator, MathBinaryOperator, MathMinus {
|
|
2686
|
+
|
|
2687
|
+
// Class property signals of GCalc-2.GCalc.Minus
|
|
2688
|
+
|
|
2689
|
+
connect(sigName: "notify::parent", callback: (($obj: Minus, pspec: GObject.ParamSpec) => void)): number
|
|
2690
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Minus, pspec: GObject.ParamSpec) => void)): number
|
|
2691
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2692
|
+
connect(sigName: "notify::expressions", callback: (($obj: Minus, pspec: GObject.ParamSpec) => void)): number
|
|
2693
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Minus, pspec: GObject.ParamSpec) => void)): number
|
|
2694
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2695
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2696
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2697
|
+
emit(sigName: string, ...args: any[]): void
|
|
2698
|
+
disconnect(id: number): void
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
class Minus extends Expression {
|
|
2702
|
+
|
|
2703
|
+
// Own properties of GCalc-2.GCalc.Minus
|
|
2704
|
+
|
|
2705
|
+
static name: string
|
|
2706
|
+
static $gtype: GObject.GType<Minus>
|
|
2707
|
+
|
|
2708
|
+
// Constructors of GCalc-2.GCalc.Minus
|
|
2709
|
+
|
|
2710
|
+
constructor(config?: Minus.ConstructorProperties)
|
|
2711
|
+
constructor()
|
|
2712
|
+
static new(): Minus
|
|
2713
|
+
|
|
2714
|
+
// Overloads of new
|
|
2715
|
+
|
|
2716
|
+
static new(): Expression
|
|
2717
|
+
_init(config?: Minus.ConstructorProperties): void
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
module Multiply {
|
|
2721
|
+
|
|
2722
|
+
// Constructor properties interface
|
|
2723
|
+
|
|
2724
|
+
interface ConstructorProperties extends MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties, MathMultiply.ConstructorProperties, Expression.ConstructorProperties {
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
interface Multiply extends MathOperator, MathBinaryOperator, MathMultiply {
|
|
2730
|
+
|
|
2731
|
+
// Class property signals of GCalc-2.GCalc.Multiply
|
|
2732
|
+
|
|
2733
|
+
connect(sigName: "notify::parent", callback: (($obj: Multiply, pspec: GObject.ParamSpec) => void)): number
|
|
2734
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Multiply, pspec: GObject.ParamSpec) => void)): number
|
|
2735
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2736
|
+
connect(sigName: "notify::expressions", callback: (($obj: Multiply, pspec: GObject.ParamSpec) => void)): number
|
|
2737
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Multiply, pspec: GObject.ParamSpec) => void)): number
|
|
2738
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2739
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2740
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2741
|
+
emit(sigName: string, ...args: any[]): void
|
|
2742
|
+
disconnect(id: number): void
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
class Multiply extends Expression {
|
|
2746
|
+
|
|
2747
|
+
// Own properties of GCalc-2.GCalc.Multiply
|
|
2748
|
+
|
|
2749
|
+
static name: string
|
|
2750
|
+
static $gtype: GObject.GType<Multiply>
|
|
2751
|
+
|
|
2752
|
+
// Constructors of GCalc-2.GCalc.Multiply
|
|
2753
|
+
|
|
2754
|
+
constructor(config?: Multiply.ConstructorProperties)
|
|
2755
|
+
constructor()
|
|
2756
|
+
static new(): Multiply
|
|
2757
|
+
|
|
2758
|
+
// Overloads of new
|
|
2759
|
+
|
|
2760
|
+
static new(): Expression
|
|
2761
|
+
_init(config?: Multiply.ConstructorProperties): void
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
module Parameter {
|
|
2765
|
+
|
|
2766
|
+
// Constructor properties interface
|
|
2767
|
+
|
|
2768
|
+
interface ConstructorProperties extends MathParameter.ConstructorProperties, Variable.ConstructorProperties {
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
interface Parameter extends MathParameter {
|
|
2774
|
+
|
|
2775
|
+
// Conflicting methods
|
|
2776
|
+
|
|
2777
|
+
set_value(val: any | null): void
|
|
2778
|
+
|
|
2779
|
+
// Overloads of set_value
|
|
2780
|
+
|
|
2781
|
+
set_value(value: MathConstant): void
|
|
2782
|
+
set_value(value: MathConstant): void
|
|
2783
|
+
get_value(): any | null
|
|
2784
|
+
|
|
2785
|
+
// Overloads of get_value
|
|
2786
|
+
|
|
2787
|
+
get_value(): MathConstant
|
|
2788
|
+
get_value(): MathConstant
|
|
2789
|
+
vfunc_set_value(val: any | null): void
|
|
2790
|
+
|
|
2791
|
+
// Overloads of vfunc_set_value
|
|
2792
|
+
|
|
2793
|
+
vfunc_set_value(value: MathConstant): void
|
|
2794
|
+
vfunc_set_value(value: MathConstant): void
|
|
2795
|
+
vfunc_get_value(): any | null
|
|
2796
|
+
|
|
2797
|
+
// Overloads of vfunc_get_value
|
|
2798
|
+
|
|
2799
|
+
vfunc_get_value(): MathConstant
|
|
2800
|
+
vfunc_get_value(): MathConstant
|
|
2801
|
+
|
|
2802
|
+
// Class property signals of GCalc-2.GCalc.Parameter
|
|
2803
|
+
|
|
2804
|
+
connect(sigName: "notify::parent", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2805
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2806
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2807
|
+
connect(sigName: "notify::expressions", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2808
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2809
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2810
|
+
connect(sigName: "notify::name", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2811
|
+
connect_after(sigName: "notify::name", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2812
|
+
emit(sigName: "notify::name", ...args: any[]): void
|
|
2813
|
+
connect(sigName: "notify::value", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2814
|
+
connect_after(sigName: "notify::value", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2815
|
+
emit(sigName: "notify::value", ...args: any[]): void
|
|
2816
|
+
connect(sigName: "notify::bind", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2817
|
+
connect_after(sigName: "notify::bind", callback: (($obj: Parameter, pspec: GObject.ParamSpec) => void)): number
|
|
2818
|
+
emit(sigName: "notify::bind", ...args: any[]): void
|
|
2819
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2820
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2821
|
+
emit(sigName: string, ...args: any[]): void
|
|
2822
|
+
disconnect(id: number): void
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
class Parameter extends Variable {
|
|
2826
|
+
|
|
2827
|
+
// Own properties of GCalc-2.GCalc.Parameter
|
|
2828
|
+
|
|
2829
|
+
static name: string
|
|
2830
|
+
static $gtype: GObject.GType<Parameter>
|
|
2831
|
+
|
|
2832
|
+
// Constructors of GCalc-2.GCalc.Parameter
|
|
2833
|
+
|
|
2834
|
+
constructor(config?: Parameter.ConstructorProperties)
|
|
2835
|
+
constructor(name: string | null)
|
|
2836
|
+
static new(name: string | null): Parameter
|
|
2837
|
+
|
|
2838
|
+
// Overloads of new
|
|
2839
|
+
|
|
2840
|
+
static new(): Expression
|
|
2841
|
+
_init(config?: Parameter.ConstructorProperties): void
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
module Parser {
|
|
2845
|
+
|
|
2846
|
+
// Constructor properties interface
|
|
2847
|
+
|
|
2848
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
interface Parser {
|
|
2854
|
+
|
|
2855
|
+
// Owm methods of GCalc-2.GCalc.Parser
|
|
2856
|
+
|
|
2857
|
+
parse(str: string | null, eqman: MathEquationManager): void
|
|
2858
|
+
read_token(): ParserTokenType
|
|
2859
|
+
token_to_string(): string | null
|
|
2860
|
+
|
|
2861
|
+
// Class property signals of GCalc-2.GCalc.Parser
|
|
2862
|
+
|
|
2863
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2864
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2865
|
+
emit(sigName: string, ...args: any[]): void
|
|
2866
|
+
disconnect(id: number): void
|
|
2867
|
+
}
|
|
2868
|
+
|
|
2869
|
+
class Parser extends GObject.Object {
|
|
2870
|
+
|
|
2871
|
+
// Own properties of GCalc-2.GCalc.Parser
|
|
2872
|
+
|
|
2873
|
+
static name: string
|
|
2874
|
+
static $gtype: GObject.GType<Parser>
|
|
2875
|
+
|
|
2876
|
+
// Constructors of GCalc-2.GCalc.Parser
|
|
2877
|
+
|
|
2878
|
+
constructor(config?: Parser.ConstructorProperties)
|
|
2879
|
+
constructor()
|
|
2880
|
+
static new(): Parser
|
|
2881
|
+
_init(config?: Parser.ConstructorProperties): void
|
|
2882
|
+
}
|
|
2883
|
+
|
|
2884
|
+
module Plus {
|
|
2885
|
+
|
|
2886
|
+
// Constructor properties interface
|
|
2887
|
+
|
|
2888
|
+
interface ConstructorProperties extends MathOperator.ConstructorProperties, MathBinaryOperator.ConstructorProperties, MathPlus.ConstructorProperties, Expression.ConstructorProperties {
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
interface Plus extends MathOperator, MathBinaryOperator, MathPlus {
|
|
2894
|
+
|
|
2895
|
+
// Class property signals of GCalc-2.GCalc.Plus
|
|
2896
|
+
|
|
2897
|
+
connect(sigName: "notify::parent", callback: (($obj: Plus, pspec: GObject.ParamSpec) => void)): number
|
|
2898
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Plus, pspec: GObject.ParamSpec) => void)): number
|
|
2899
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2900
|
+
connect(sigName: "notify::expressions", callback: (($obj: Plus, pspec: GObject.ParamSpec) => void)): number
|
|
2901
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Plus, pspec: GObject.ParamSpec) => void)): number
|
|
2902
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2903
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2904
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2905
|
+
emit(sigName: string, ...args: any[]): void
|
|
2906
|
+
disconnect(id: number): void
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
class Plus extends Expression {
|
|
2910
|
+
|
|
2911
|
+
// Own properties of GCalc-2.GCalc.Plus
|
|
2912
|
+
|
|
2913
|
+
static name: string
|
|
2914
|
+
static $gtype: GObject.GType<Plus>
|
|
2915
|
+
|
|
2916
|
+
// Constructors of GCalc-2.GCalc.Plus
|
|
2917
|
+
|
|
2918
|
+
constructor(config?: Plus.ConstructorProperties)
|
|
2919
|
+
constructor()
|
|
2920
|
+
static new(): Plus
|
|
2921
|
+
|
|
2922
|
+
// Overloads of new
|
|
2923
|
+
|
|
2924
|
+
static new(): Expression
|
|
2925
|
+
_init(config?: Plus.ConstructorProperties): void
|
|
2926
|
+
}
|
|
2927
|
+
|
|
2928
|
+
module Polynomial {
|
|
2929
|
+
|
|
2930
|
+
// Constructor properties interface
|
|
2931
|
+
|
|
2932
|
+
interface ConstructorProperties extends MathPolynomial.ConstructorProperties, Expression.ConstructorProperties {
|
|
2933
|
+
}
|
|
2934
|
+
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
interface Polynomial extends MathPolynomial {
|
|
2938
|
+
|
|
2939
|
+
// Class property signals of GCalc-2.GCalc.Polynomial
|
|
2940
|
+
|
|
2941
|
+
connect(sigName: "notify::parent", callback: (($obj: Polynomial, pspec: GObject.ParamSpec) => void)): number
|
|
2942
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Polynomial, pspec: GObject.ParamSpec) => void)): number
|
|
2943
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2944
|
+
connect(sigName: "notify::expressions", callback: (($obj: Polynomial, pspec: GObject.ParamSpec) => void)): number
|
|
2945
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Polynomial, pspec: GObject.ParamSpec) => void)): number
|
|
2946
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2947
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2948
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2949
|
+
emit(sigName: string, ...args: any[]): void
|
|
2950
|
+
disconnect(id: number): void
|
|
2951
|
+
}
|
|
2952
|
+
|
|
2953
|
+
class Polynomial extends Expression {
|
|
2954
|
+
|
|
2955
|
+
// Own properties of GCalc-2.GCalc.Polynomial
|
|
2956
|
+
|
|
2957
|
+
static name: string
|
|
2958
|
+
static $gtype: GObject.GType<Polynomial>
|
|
2959
|
+
|
|
2960
|
+
// Constructors of GCalc-2.GCalc.Polynomial
|
|
2961
|
+
|
|
2962
|
+
constructor(config?: Polynomial.ConstructorProperties)
|
|
2963
|
+
constructor()
|
|
2964
|
+
static new(): Polynomial
|
|
2965
|
+
|
|
2966
|
+
// Overloads of new
|
|
2967
|
+
|
|
2968
|
+
static new(): Expression
|
|
2969
|
+
_init(config?: Polynomial.ConstructorProperties): void
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
module Pow {
|
|
2973
|
+
|
|
2974
|
+
// Constructor properties interface
|
|
2975
|
+
|
|
2976
|
+
interface ConstructorProperties extends MathOperator.ConstructorProperties, MathPow.ConstructorProperties, Expression.ConstructorProperties {
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
}
|
|
2980
|
+
|
|
2981
|
+
interface Pow extends MathOperator, MathPow {
|
|
2982
|
+
|
|
2983
|
+
// Class property signals of GCalc-2.GCalc.Pow
|
|
2984
|
+
|
|
2985
|
+
connect(sigName: "notify::parent", callback: (($obj: Pow, pspec: GObject.ParamSpec) => void)): number
|
|
2986
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Pow, pspec: GObject.ParamSpec) => void)): number
|
|
2987
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
2988
|
+
connect(sigName: "notify::expressions", callback: (($obj: Pow, pspec: GObject.ParamSpec) => void)): number
|
|
2989
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Pow, pspec: GObject.ParamSpec) => void)): number
|
|
2990
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
2991
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
2992
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
2993
|
+
emit(sigName: string, ...args: any[]): void
|
|
2994
|
+
disconnect(id: number): void
|
|
2995
|
+
}
|
|
2996
|
+
|
|
2997
|
+
class Pow extends Expression {
|
|
2998
|
+
|
|
2999
|
+
// Own properties of GCalc-2.GCalc.Pow
|
|
3000
|
+
|
|
3001
|
+
static name: string
|
|
3002
|
+
static $gtype: GObject.GType<Pow>
|
|
3003
|
+
|
|
3004
|
+
// Constructors of GCalc-2.GCalc.Pow
|
|
3005
|
+
|
|
3006
|
+
constructor(config?: Pow.ConstructorProperties)
|
|
3007
|
+
constructor()
|
|
3008
|
+
static new(): Pow
|
|
3009
|
+
|
|
3010
|
+
// Overloads of new
|
|
3011
|
+
|
|
3012
|
+
static new(): Expression
|
|
3013
|
+
_init(config?: Pow.ConstructorProperties): void
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
module Result {
|
|
3017
|
+
|
|
3018
|
+
// Constructor properties interface
|
|
3019
|
+
|
|
3020
|
+
interface ConstructorProperties extends MathResult.ConstructorProperties, GObject.Object.ConstructorProperties {
|
|
3021
|
+
}
|
|
3022
|
+
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
interface Result extends MathResult {
|
|
3026
|
+
|
|
3027
|
+
// Class property signals of GCalc-2.GCalc.Result
|
|
3028
|
+
|
|
3029
|
+
connect(sigName: "notify::expression", callback: (($obj: Result, pspec: GObject.ParamSpec) => void)): number
|
|
3030
|
+
connect_after(sigName: "notify::expression", callback: (($obj: Result, pspec: GObject.ParamSpec) => void)): number
|
|
3031
|
+
emit(sigName: "notify::expression", ...args: any[]): void
|
|
3032
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
3033
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
3034
|
+
emit(sigName: string, ...args: any[]): void
|
|
3035
|
+
disconnect(id: number): void
|
|
3036
|
+
}
|
|
3037
|
+
|
|
3038
|
+
class Result extends GObject.Object {
|
|
3039
|
+
|
|
3040
|
+
// Own properties of GCalc-2.GCalc.Result
|
|
3041
|
+
|
|
3042
|
+
static name: string
|
|
3043
|
+
static $gtype: GObject.GType<Result>
|
|
3044
|
+
|
|
3045
|
+
// Constructors of GCalc-2.GCalc.Result
|
|
3046
|
+
|
|
3047
|
+
constructor(config?: Result.ConstructorProperties)
|
|
3048
|
+
constructor(exp: MathExpression)
|
|
3049
|
+
static new(exp: MathExpression): Result
|
|
3050
|
+
_init(config?: Result.ConstructorProperties): void
|
|
3051
|
+
}
|
|
3052
|
+
|
|
3053
|
+
module Solver {
|
|
3054
|
+
|
|
3055
|
+
// Constructor properties interface
|
|
3056
|
+
|
|
3057
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
3058
|
+
|
|
3059
|
+
// Own constructor properties of GCalc-2.GCalc.Solver
|
|
3060
|
+
|
|
3061
|
+
equation_manager?: MathEquationManager | null
|
|
3062
|
+
}
|
|
3063
|
+
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
interface Solver {
|
|
3067
|
+
|
|
3068
|
+
// Own properties of GCalc-2.GCalc.Solver
|
|
3069
|
+
|
|
3070
|
+
equation_manager: MathEquationManager
|
|
3071
|
+
|
|
3072
|
+
// Owm methods of GCalc-2.GCalc.Solver
|
|
3073
|
+
|
|
3074
|
+
add_expression(exp: string | null): void
|
|
3075
|
+
solve(str: string | null): MathResult
|
|
3076
|
+
get_equation_manager(): MathEquationManager
|
|
3077
|
+
set_equation_manager(value: MathEquationManager): void
|
|
3078
|
+
|
|
3079
|
+
// Class property signals of GCalc-2.GCalc.Solver
|
|
3080
|
+
|
|
3081
|
+
connect(sigName: "notify::equation-manager", callback: (($obj: Solver, pspec: GObject.ParamSpec) => void)): number
|
|
3082
|
+
connect_after(sigName: "notify::equation-manager", callback: (($obj: Solver, pspec: GObject.ParamSpec) => void)): number
|
|
3083
|
+
emit(sigName: "notify::equation-manager", ...args: any[]): void
|
|
3084
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
3085
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
3086
|
+
emit(sigName: string, ...args: any[]): void
|
|
3087
|
+
disconnect(id: number): void
|
|
3088
|
+
}
|
|
3089
|
+
|
|
3090
|
+
class Solver extends GObject.Object {
|
|
3091
|
+
|
|
3092
|
+
// Own properties of GCalc-2.GCalc.Solver
|
|
3093
|
+
|
|
3094
|
+
static name: string
|
|
3095
|
+
static $gtype: GObject.GType<Solver>
|
|
3096
|
+
|
|
3097
|
+
// Constructors of GCalc-2.GCalc.Solver
|
|
3098
|
+
|
|
3099
|
+
constructor(config?: Solver.ConstructorProperties)
|
|
3100
|
+
constructor()
|
|
3101
|
+
static new(): Solver
|
|
3102
|
+
_init(config?: Solver.ConstructorProperties): void
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
module Term {
|
|
3106
|
+
|
|
3107
|
+
// Constructor properties interface
|
|
3108
|
+
|
|
3109
|
+
interface ConstructorProperties extends MathTerm.ConstructorProperties, Expression.ConstructorProperties {
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
}
|
|
3113
|
+
|
|
3114
|
+
interface Term extends MathTerm {
|
|
3115
|
+
|
|
3116
|
+
// Class property signals of GCalc-2.GCalc.Term
|
|
3117
|
+
|
|
3118
|
+
connect(sigName: "notify::parent", callback: (($obj: Term, pspec: GObject.ParamSpec) => void)): number
|
|
3119
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Term, pspec: GObject.ParamSpec) => void)): number
|
|
3120
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
3121
|
+
connect(sigName: "notify::expressions", callback: (($obj: Term, pspec: GObject.ParamSpec) => void)): number
|
|
3122
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Term, pspec: GObject.ParamSpec) => void)): number
|
|
3123
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
3124
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
3125
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
3126
|
+
emit(sigName: string, ...args: any[]): void
|
|
3127
|
+
disconnect(id: number): void
|
|
3128
|
+
}
|
|
3129
|
+
|
|
3130
|
+
class Term extends Expression {
|
|
3131
|
+
|
|
3132
|
+
// Own properties of GCalc-2.GCalc.Term
|
|
3133
|
+
|
|
3134
|
+
static name: string
|
|
3135
|
+
static $gtype: GObject.GType<Term>
|
|
3136
|
+
|
|
3137
|
+
// Constructors of GCalc-2.GCalc.Term
|
|
3138
|
+
|
|
3139
|
+
constructor(config?: Term.ConstructorProperties)
|
|
3140
|
+
constructor()
|
|
3141
|
+
static new(): Term
|
|
3142
|
+
|
|
3143
|
+
// Overloads of new
|
|
3144
|
+
|
|
3145
|
+
static new(): Expression
|
|
3146
|
+
_init(config?: Term.ConstructorProperties): void
|
|
3147
|
+
}
|
|
3148
|
+
|
|
3149
|
+
module UnitConverter {
|
|
3150
|
+
|
|
3151
|
+
// Constructor properties interface
|
|
3152
|
+
|
|
3153
|
+
interface ConstructorProperties extends GObject.Object.ConstructorProperties {
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
interface UnitConverter {
|
|
3159
|
+
|
|
3160
|
+
// Class property signals of GCalc-2.GCalc.UnitConverter
|
|
3161
|
+
|
|
3162
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
3163
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
3164
|
+
emit(sigName: string, ...args: any[]): void
|
|
3165
|
+
disconnect(id: number): void
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3168
|
+
class UnitConverter extends GObject.Object {
|
|
3169
|
+
|
|
3170
|
+
// Own properties of GCalc-2.GCalc.UnitConverter
|
|
3171
|
+
|
|
3172
|
+
static name: string
|
|
3173
|
+
static $gtype: GObject.GType<UnitConverter>
|
|
3174
|
+
|
|
3175
|
+
// Constructors of GCalc-2.GCalc.UnitConverter
|
|
3176
|
+
|
|
3177
|
+
constructor(config?: UnitConverter.ConstructorProperties)
|
|
3178
|
+
constructor()
|
|
3179
|
+
static new(): UnitConverter
|
|
3180
|
+
_init(config?: UnitConverter.ConstructorProperties): void
|
|
3181
|
+
static angle(c: MathConstant, ori: AngleUnit, dst: AngleUnit): MathConstant
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
module Variable {
|
|
3185
|
+
|
|
3186
|
+
// Constructor properties interface
|
|
3187
|
+
|
|
3188
|
+
interface ConstructorProperties extends MathVariable.ConstructorProperties, Hashable.ConstructorProperties, Expression.ConstructorProperties {
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
interface Variable extends MathVariable, Hashable {
|
|
3194
|
+
|
|
3195
|
+
// Class property signals of GCalc-2.GCalc.Variable
|
|
3196
|
+
|
|
3197
|
+
connect(sigName: "notify::name", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3198
|
+
connect_after(sigName: "notify::name", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3199
|
+
emit(sigName: "notify::name", ...args: any[]): void
|
|
3200
|
+
connect(sigName: "notify::value", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3201
|
+
connect_after(sigName: "notify::value", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3202
|
+
emit(sigName: "notify::value", ...args: any[]): void
|
|
3203
|
+
connect(sigName: "notify::bind", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3204
|
+
connect_after(sigName: "notify::bind", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3205
|
+
emit(sigName: "notify::bind", ...args: any[]): void
|
|
3206
|
+
connect(sigName: "notify::parent", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3207
|
+
connect_after(sigName: "notify::parent", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3208
|
+
emit(sigName: "notify::parent", ...args: any[]): void
|
|
3209
|
+
connect(sigName: "notify::expressions", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3210
|
+
connect_after(sigName: "notify::expressions", callback: (($obj: Variable, pspec: GObject.ParamSpec) => void)): number
|
|
3211
|
+
emit(sigName: "notify::expressions", ...args: any[]): void
|
|
3212
|
+
connect(sigName: string, callback: (...args: any[]) => void): number
|
|
3213
|
+
connect_after(sigName: string, callback: (...args: any[]) => void): number
|
|
3214
|
+
emit(sigName: string, ...args: any[]): void
|
|
3215
|
+
disconnect(id: number): void
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
class Variable extends Expression {
|
|
3219
|
+
|
|
3220
|
+
// Own properties of GCalc-2.GCalc.Variable
|
|
3221
|
+
|
|
3222
|
+
static name: string
|
|
3223
|
+
static $gtype: GObject.GType<Variable>
|
|
3224
|
+
|
|
3225
|
+
// Constructors of GCalc-2.GCalc.Variable
|
|
3226
|
+
|
|
3227
|
+
constructor(config?: Variable.ConstructorProperties)
|
|
3228
|
+
_init(config?: Variable.ConstructorProperties): void
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
interface AssignClass {
|
|
3232
|
+
}
|
|
3233
|
+
|
|
3234
|
+
abstract class AssignClass {
|
|
3235
|
+
|
|
3236
|
+
// Own properties of GCalc-2.GCalc.AssignClass
|
|
3237
|
+
|
|
3238
|
+
static name: string
|
|
3239
|
+
}
|
|
3240
|
+
|
|
3241
|
+
interface AssignPrivate {
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3244
|
+
class AssignPrivate {
|
|
3245
|
+
|
|
3246
|
+
// Own properties of GCalc-2.GCalc.AssignPrivate
|
|
3247
|
+
|
|
3248
|
+
static name: string
|
|
3249
|
+
}
|
|
3250
|
+
|
|
3251
|
+
interface CalculatorClass {
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
abstract class CalculatorClass {
|
|
3255
|
+
|
|
3256
|
+
// Own properties of GCalc-2.GCalc.CalculatorClass
|
|
3257
|
+
|
|
3258
|
+
static name: string
|
|
3259
|
+
}
|
|
3260
|
+
|
|
3261
|
+
interface CalculatorPrivate {
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
class CalculatorPrivate {
|
|
3265
|
+
|
|
3266
|
+
// Own properties of GCalc-2.GCalc.CalculatorPrivate
|
|
3267
|
+
|
|
3268
|
+
static name: string
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
interface ConstantClass {
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
abstract class ConstantClass {
|
|
3275
|
+
|
|
3276
|
+
// Own properties of GCalc-2.GCalc.ConstantClass
|
|
3277
|
+
|
|
3278
|
+
static name: string
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
interface ConstantPrivate {
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
class ConstantPrivate {
|
|
3285
|
+
|
|
3286
|
+
// Own properties of GCalc-2.GCalc.ConstantPrivate
|
|
3287
|
+
|
|
3288
|
+
static name: string
|
|
3289
|
+
}
|
|
3290
|
+
|
|
3291
|
+
interface DivisionClass {
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
abstract class DivisionClass {
|
|
3295
|
+
|
|
3296
|
+
// Own properties of GCalc-2.GCalc.DivisionClass
|
|
3297
|
+
|
|
3298
|
+
static name: string
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
interface DivisionPrivate {
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
class DivisionPrivate {
|
|
3305
|
+
|
|
3306
|
+
// Own properties of GCalc-2.GCalc.DivisionPrivate
|
|
3307
|
+
|
|
3308
|
+
static name: string
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3311
|
+
interface EquationClass {
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
abstract class EquationClass {
|
|
3315
|
+
|
|
3316
|
+
// Own properties of GCalc-2.GCalc.EquationClass
|
|
3317
|
+
|
|
3318
|
+
static name: string
|
|
3319
|
+
}
|
|
3320
|
+
|
|
3321
|
+
interface EquationPrivate {
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
class EquationPrivate {
|
|
3325
|
+
|
|
3326
|
+
// Own properties of GCalc-2.GCalc.EquationPrivate
|
|
3327
|
+
|
|
3328
|
+
static name: string
|
|
3329
|
+
}
|
|
3330
|
+
|
|
3331
|
+
interface EquationManagerClass {
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
abstract class EquationManagerClass {
|
|
3335
|
+
|
|
3336
|
+
// Own properties of GCalc-2.GCalc.EquationManagerClass
|
|
3337
|
+
|
|
3338
|
+
static name: string
|
|
3339
|
+
}
|
|
3340
|
+
|
|
3341
|
+
interface EquationManagerPrivate {
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
class EquationManagerPrivate {
|
|
3345
|
+
|
|
3346
|
+
// Own properties of GCalc-2.GCalc.EquationManagerPrivate
|
|
3347
|
+
|
|
3348
|
+
static name: string
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
interface ErrorResultClass {
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
abstract class ErrorResultClass {
|
|
3355
|
+
|
|
3356
|
+
// Own properties of GCalc-2.GCalc.ErrorResultClass
|
|
3357
|
+
|
|
3358
|
+
static name: string
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3361
|
+
interface ErrorResultPrivate {
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
class ErrorResultPrivate {
|
|
3365
|
+
|
|
3366
|
+
// Own properties of GCalc-2.GCalc.ErrorResultPrivate
|
|
3367
|
+
|
|
3368
|
+
static name: string
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
interface ExpressionClass {
|
|
3372
|
+
|
|
3373
|
+
// Own fields of GCalc-2.GCalc.ExpressionClass
|
|
3374
|
+
|
|
3375
|
+
to_string: (self: Expression) => string | null
|
|
3376
|
+
solve: (self: Expression) => MathResult
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
abstract class ExpressionClass {
|
|
3380
|
+
|
|
3381
|
+
// Own properties of GCalc-2.GCalc.ExpressionClass
|
|
3382
|
+
|
|
3383
|
+
static name: string
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
interface ExpressionPrivate {
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
class ExpressionPrivate {
|
|
3390
|
+
|
|
3391
|
+
// Own properties of GCalc-2.GCalc.ExpressionPrivate
|
|
3392
|
+
|
|
3393
|
+
static name: string
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
interface ErrorExpressionClass {
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
abstract class ErrorExpressionClass {
|
|
3400
|
+
|
|
3401
|
+
// Own properties of GCalc-2.GCalc.ErrorExpressionClass
|
|
3402
|
+
|
|
3403
|
+
static name: string
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
interface ErrorExpressionPrivate {
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
class ErrorExpressionPrivate {
|
|
3410
|
+
|
|
3411
|
+
// Own properties of GCalc-2.GCalc.ErrorExpressionPrivate
|
|
3412
|
+
|
|
3413
|
+
static name: string
|
|
3414
|
+
}
|
|
3415
|
+
|
|
3416
|
+
interface ExpressionContainerClass {
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
abstract class ExpressionContainerClass {
|
|
3420
|
+
|
|
3421
|
+
// Own properties of GCalc-2.GCalc.ExpressionContainerClass
|
|
3422
|
+
|
|
3423
|
+
static name: string
|
|
3424
|
+
}
|
|
3425
|
+
|
|
3426
|
+
interface ExpressionContainerPrivate {
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3429
|
+
class ExpressionContainerPrivate {
|
|
3430
|
+
|
|
3431
|
+
// Own properties of GCalc-2.GCalc.ExpressionContainerPrivate
|
|
3432
|
+
|
|
3433
|
+
static name: string
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3436
|
+
interface ExpressionHashMapClass {
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
abstract class ExpressionHashMapClass {
|
|
3440
|
+
|
|
3441
|
+
// Own properties of GCalc-2.GCalc.ExpressionHashMapClass
|
|
3442
|
+
|
|
3443
|
+
static name: string
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
interface ExpressionHashMapPrivate {
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
class ExpressionHashMapPrivate {
|
|
3450
|
+
|
|
3451
|
+
// Own properties of GCalc-2.GCalc.ExpressionHashMapPrivate
|
|
3452
|
+
|
|
3453
|
+
static name: string
|
|
3454
|
+
}
|
|
3455
|
+
|
|
3456
|
+
interface FunctionClass {
|
|
3457
|
+
|
|
3458
|
+
// Own fields of GCalc-2.GCalc.FunctionClass
|
|
3459
|
+
|
|
3460
|
+
evaluate: (self: Function) => MathExpression
|
|
3461
|
+
}
|
|
3462
|
+
|
|
3463
|
+
abstract class FunctionClass {
|
|
3464
|
+
|
|
3465
|
+
// Own properties of GCalc-2.GCalc.FunctionClass
|
|
3466
|
+
|
|
3467
|
+
static name: string
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
interface FunctionPrivate {
|
|
3471
|
+
}
|
|
3472
|
+
|
|
3473
|
+
class FunctionPrivate {
|
|
3474
|
+
|
|
3475
|
+
// Own properties of GCalc-2.GCalc.FunctionPrivate
|
|
3476
|
+
|
|
3477
|
+
static name: string
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
interface FunctionAcosClass {
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
abstract class FunctionAcosClass {
|
|
3484
|
+
|
|
3485
|
+
// Own properties of GCalc-2.GCalc.FunctionAcosClass
|
|
3486
|
+
|
|
3487
|
+
static name: string
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
interface FunctionAcosPrivate {
|
|
3491
|
+
}
|
|
3492
|
+
|
|
3493
|
+
class FunctionAcosPrivate {
|
|
3494
|
+
|
|
3495
|
+
// Own properties of GCalc-2.GCalc.FunctionAcosPrivate
|
|
3496
|
+
|
|
3497
|
+
static name: string
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
interface FunctionAcoshClass {
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3503
|
+
abstract class FunctionAcoshClass {
|
|
3504
|
+
|
|
3505
|
+
// Own properties of GCalc-2.GCalc.FunctionAcoshClass
|
|
3506
|
+
|
|
3507
|
+
static name: string
|
|
3508
|
+
}
|
|
3509
|
+
|
|
3510
|
+
interface FunctionAcoshPrivate {
|
|
3511
|
+
}
|
|
3512
|
+
|
|
3513
|
+
class FunctionAcoshPrivate {
|
|
3514
|
+
|
|
3515
|
+
// Own properties of GCalc-2.GCalc.FunctionAcoshPrivate
|
|
3516
|
+
|
|
3517
|
+
static name: string
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3520
|
+
interface FunctionAsinClass {
|
|
3521
|
+
}
|
|
3522
|
+
|
|
3523
|
+
abstract class FunctionAsinClass {
|
|
3524
|
+
|
|
3525
|
+
// Own properties of GCalc-2.GCalc.FunctionAsinClass
|
|
3526
|
+
|
|
3527
|
+
static name: string
|
|
3528
|
+
}
|
|
3529
|
+
|
|
3530
|
+
interface FunctionAsinPrivate {
|
|
3531
|
+
}
|
|
3532
|
+
|
|
3533
|
+
class FunctionAsinPrivate {
|
|
3534
|
+
|
|
3535
|
+
// Own properties of GCalc-2.GCalc.FunctionAsinPrivate
|
|
3536
|
+
|
|
3537
|
+
static name: string
|
|
3538
|
+
}
|
|
3539
|
+
|
|
3540
|
+
interface FunctionAsinhClass {
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
abstract class FunctionAsinhClass {
|
|
3544
|
+
|
|
3545
|
+
// Own properties of GCalc-2.GCalc.FunctionAsinhClass
|
|
3546
|
+
|
|
3547
|
+
static name: string
|
|
3548
|
+
}
|
|
3549
|
+
|
|
3550
|
+
interface FunctionAsinhPrivate {
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3553
|
+
class FunctionAsinhPrivate {
|
|
3554
|
+
|
|
3555
|
+
// Own properties of GCalc-2.GCalc.FunctionAsinhPrivate
|
|
3556
|
+
|
|
3557
|
+
static name: string
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
interface FunctionAtanClass {
|
|
3561
|
+
}
|
|
3562
|
+
|
|
3563
|
+
abstract class FunctionAtanClass {
|
|
3564
|
+
|
|
3565
|
+
// Own properties of GCalc-2.GCalc.FunctionAtanClass
|
|
3566
|
+
|
|
3567
|
+
static name: string
|
|
3568
|
+
}
|
|
3569
|
+
|
|
3570
|
+
interface FunctionAtanPrivate {
|
|
3571
|
+
}
|
|
3572
|
+
|
|
3573
|
+
class FunctionAtanPrivate {
|
|
3574
|
+
|
|
3575
|
+
// Own properties of GCalc-2.GCalc.FunctionAtanPrivate
|
|
3576
|
+
|
|
3577
|
+
static name: string
|
|
3578
|
+
}
|
|
3579
|
+
|
|
3580
|
+
interface FunctionAtanhClass {
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
abstract class FunctionAtanhClass {
|
|
3584
|
+
|
|
3585
|
+
// Own properties of GCalc-2.GCalc.FunctionAtanhClass
|
|
3586
|
+
|
|
3587
|
+
static name: string
|
|
3588
|
+
}
|
|
3589
|
+
|
|
3590
|
+
interface FunctionAtanhPrivate {
|
|
3591
|
+
}
|
|
3592
|
+
|
|
3593
|
+
class FunctionAtanhPrivate {
|
|
3594
|
+
|
|
3595
|
+
// Own properties of GCalc-2.GCalc.FunctionAtanhPrivate
|
|
3596
|
+
|
|
3597
|
+
static name: string
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3600
|
+
interface FunctionCosClass {
|
|
3601
|
+
}
|
|
3602
|
+
|
|
3603
|
+
abstract class FunctionCosClass {
|
|
3604
|
+
|
|
3605
|
+
// Own properties of GCalc-2.GCalc.FunctionCosClass
|
|
3606
|
+
|
|
3607
|
+
static name: string
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3610
|
+
interface FunctionCosPrivate {
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3613
|
+
class FunctionCosPrivate {
|
|
3614
|
+
|
|
3615
|
+
// Own properties of GCalc-2.GCalc.FunctionCosPrivate
|
|
3616
|
+
|
|
3617
|
+
static name: string
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3620
|
+
interface FunctionCoshClass {
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
abstract class FunctionCoshClass {
|
|
3624
|
+
|
|
3625
|
+
// Own properties of GCalc-2.GCalc.FunctionCoshClass
|
|
3626
|
+
|
|
3627
|
+
static name: string
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
interface FunctionCoshPrivate {
|
|
3631
|
+
}
|
|
3632
|
+
|
|
3633
|
+
class FunctionCoshPrivate {
|
|
3634
|
+
|
|
3635
|
+
// Own properties of GCalc-2.GCalc.FunctionCoshPrivate
|
|
3636
|
+
|
|
3637
|
+
static name: string
|
|
3638
|
+
}
|
|
3639
|
+
|
|
3640
|
+
interface FunctionExpClass {
|
|
3641
|
+
}
|
|
3642
|
+
|
|
3643
|
+
abstract class FunctionExpClass {
|
|
3644
|
+
|
|
3645
|
+
// Own properties of GCalc-2.GCalc.FunctionExpClass
|
|
3646
|
+
|
|
3647
|
+
static name: string
|
|
3648
|
+
}
|
|
3649
|
+
|
|
3650
|
+
interface FunctionExpPrivate {
|
|
3651
|
+
}
|
|
3652
|
+
|
|
3653
|
+
class FunctionExpPrivate {
|
|
3654
|
+
|
|
3655
|
+
// Own properties of GCalc-2.GCalc.FunctionExpPrivate
|
|
3656
|
+
|
|
3657
|
+
static name: string
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
interface FunctionLogClass {
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
abstract class FunctionLogClass {
|
|
3664
|
+
|
|
3665
|
+
// Own properties of GCalc-2.GCalc.FunctionLogClass
|
|
3666
|
+
|
|
3667
|
+
static name: string
|
|
3668
|
+
}
|
|
3669
|
+
|
|
3670
|
+
interface FunctionLogPrivate {
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
class FunctionLogPrivate {
|
|
3674
|
+
|
|
3675
|
+
// Own properties of GCalc-2.GCalc.FunctionLogPrivate
|
|
3676
|
+
|
|
3677
|
+
static name: string
|
|
3678
|
+
}
|
|
3679
|
+
|
|
3680
|
+
interface FunctionSinClass {
|
|
3681
|
+
}
|
|
3682
|
+
|
|
3683
|
+
abstract class FunctionSinClass {
|
|
3684
|
+
|
|
3685
|
+
// Own properties of GCalc-2.GCalc.FunctionSinClass
|
|
3686
|
+
|
|
3687
|
+
static name: string
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
interface FunctionSinPrivate {
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
class FunctionSinPrivate {
|
|
3694
|
+
|
|
3695
|
+
// Own properties of GCalc-2.GCalc.FunctionSinPrivate
|
|
3696
|
+
|
|
3697
|
+
static name: string
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
interface FunctionSinhClass {
|
|
3701
|
+
}
|
|
3702
|
+
|
|
3703
|
+
abstract class FunctionSinhClass {
|
|
3704
|
+
|
|
3705
|
+
// Own properties of GCalc-2.GCalc.FunctionSinhClass
|
|
3706
|
+
|
|
3707
|
+
static name: string
|
|
3708
|
+
}
|
|
3709
|
+
|
|
3710
|
+
interface FunctionSinhPrivate {
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3713
|
+
class FunctionSinhPrivate {
|
|
3714
|
+
|
|
3715
|
+
// Own properties of GCalc-2.GCalc.FunctionSinhPrivate
|
|
3716
|
+
|
|
3717
|
+
static name: string
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3720
|
+
interface FunctionSqrtClass {
|
|
3721
|
+
}
|
|
3722
|
+
|
|
3723
|
+
abstract class FunctionSqrtClass {
|
|
3724
|
+
|
|
3725
|
+
// Own properties of GCalc-2.GCalc.FunctionSqrtClass
|
|
3726
|
+
|
|
3727
|
+
static name: string
|
|
3728
|
+
}
|
|
3729
|
+
|
|
3730
|
+
interface FunctionSqrtPrivate {
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
class FunctionSqrtPrivate {
|
|
3734
|
+
|
|
3735
|
+
// Own properties of GCalc-2.GCalc.FunctionSqrtPrivate
|
|
3736
|
+
|
|
3737
|
+
static name: string
|
|
3738
|
+
}
|
|
3739
|
+
|
|
3740
|
+
interface FunctionTanClass {
|
|
3741
|
+
}
|
|
3742
|
+
|
|
3743
|
+
abstract class FunctionTanClass {
|
|
3744
|
+
|
|
3745
|
+
// Own properties of GCalc-2.GCalc.FunctionTanClass
|
|
3746
|
+
|
|
3747
|
+
static name: string
|
|
3748
|
+
}
|
|
3749
|
+
|
|
3750
|
+
interface FunctionTanPrivate {
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
class FunctionTanPrivate {
|
|
3754
|
+
|
|
3755
|
+
// Own properties of GCalc-2.GCalc.FunctionTanPrivate
|
|
3756
|
+
|
|
3757
|
+
static name: string
|
|
3758
|
+
}
|
|
3759
|
+
|
|
3760
|
+
interface FunctionTanhClass {
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3763
|
+
abstract class FunctionTanhClass {
|
|
3764
|
+
|
|
3765
|
+
// Own properties of GCalc-2.GCalc.FunctionTanhClass
|
|
3766
|
+
|
|
3767
|
+
static name: string
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
interface FunctionTanhPrivate {
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
class FunctionTanhPrivate {
|
|
3774
|
+
|
|
3775
|
+
// Own properties of GCalc-2.GCalc.FunctionTanhPrivate
|
|
3776
|
+
|
|
3777
|
+
static name: string
|
|
3778
|
+
}
|
|
3779
|
+
|
|
3780
|
+
interface GroupClass {
|
|
3781
|
+
}
|
|
3782
|
+
|
|
3783
|
+
abstract class GroupClass {
|
|
3784
|
+
|
|
3785
|
+
// Own properties of GCalc-2.GCalc.GroupClass
|
|
3786
|
+
|
|
3787
|
+
static name: string
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
interface GroupPrivate {
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
class GroupPrivate {
|
|
3794
|
+
|
|
3795
|
+
// Own properties of GCalc-2.GCalc.GroupPrivate
|
|
3796
|
+
|
|
3797
|
+
static name: string
|
|
3798
|
+
}
|
|
3799
|
+
|
|
3800
|
+
interface MinusClass {
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
abstract class MinusClass {
|
|
3804
|
+
|
|
3805
|
+
// Own properties of GCalc-2.GCalc.MinusClass
|
|
3806
|
+
|
|
3807
|
+
static name: string
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
interface MinusPrivate {
|
|
3811
|
+
}
|
|
3812
|
+
|
|
3813
|
+
class MinusPrivate {
|
|
3814
|
+
|
|
3815
|
+
// Own properties of GCalc-2.GCalc.MinusPrivate
|
|
3816
|
+
|
|
3817
|
+
static name: string
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3820
|
+
interface MultiplyClass {
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
abstract class MultiplyClass {
|
|
3824
|
+
|
|
3825
|
+
// Own properties of GCalc-2.GCalc.MultiplyClass
|
|
3826
|
+
|
|
3827
|
+
static name: string
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3830
|
+
interface MultiplyPrivate {
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
class MultiplyPrivate {
|
|
3834
|
+
|
|
3835
|
+
// Own properties of GCalc-2.GCalc.MultiplyPrivate
|
|
3836
|
+
|
|
3837
|
+
static name: string
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
interface ParameterClass {
|
|
3841
|
+
}
|
|
3842
|
+
|
|
3843
|
+
abstract class ParameterClass {
|
|
3844
|
+
|
|
3845
|
+
// Own properties of GCalc-2.GCalc.ParameterClass
|
|
3846
|
+
|
|
3847
|
+
static name: string
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3850
|
+
interface ParameterPrivate {
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
class ParameterPrivate {
|
|
3854
|
+
|
|
3855
|
+
// Own properties of GCalc-2.GCalc.ParameterPrivate
|
|
3856
|
+
|
|
3857
|
+
static name: string
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
interface ParserClass {
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
abstract class ParserClass {
|
|
3864
|
+
|
|
3865
|
+
// Own properties of GCalc-2.GCalc.ParserClass
|
|
3866
|
+
|
|
3867
|
+
static name: string
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
interface ParserPrivate {
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
class ParserPrivate {
|
|
3874
|
+
|
|
3875
|
+
// Own properties of GCalc-2.GCalc.ParserPrivate
|
|
3876
|
+
|
|
3877
|
+
static name: string
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
interface PlusClass {
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
abstract class PlusClass {
|
|
3884
|
+
|
|
3885
|
+
// Own properties of GCalc-2.GCalc.PlusClass
|
|
3886
|
+
|
|
3887
|
+
static name: string
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
interface PlusPrivate {
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
class PlusPrivate {
|
|
3894
|
+
|
|
3895
|
+
// Own properties of GCalc-2.GCalc.PlusPrivate
|
|
3896
|
+
|
|
3897
|
+
static name: string
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
interface PolynomialClass {
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
abstract class PolynomialClass {
|
|
3904
|
+
|
|
3905
|
+
// Own properties of GCalc-2.GCalc.PolynomialClass
|
|
3906
|
+
|
|
3907
|
+
static name: string
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
interface PolynomialPrivate {
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
class PolynomialPrivate {
|
|
3914
|
+
|
|
3915
|
+
// Own properties of GCalc-2.GCalc.PolynomialPrivate
|
|
3916
|
+
|
|
3917
|
+
static name: string
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
interface PowClass {
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
abstract class PowClass {
|
|
3924
|
+
|
|
3925
|
+
// Own properties of GCalc-2.GCalc.PowClass
|
|
3926
|
+
|
|
3927
|
+
static name: string
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
interface PowPrivate {
|
|
3931
|
+
}
|
|
3932
|
+
|
|
3933
|
+
class PowPrivate {
|
|
3934
|
+
|
|
3935
|
+
// Own properties of GCalc-2.GCalc.PowPrivate
|
|
3936
|
+
|
|
3937
|
+
static name: string
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3940
|
+
interface ResultClass {
|
|
3941
|
+
}
|
|
3942
|
+
|
|
3943
|
+
abstract class ResultClass {
|
|
3944
|
+
|
|
3945
|
+
// Own properties of GCalc-2.GCalc.ResultClass
|
|
3946
|
+
|
|
3947
|
+
static name: string
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
interface ResultPrivate {
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
class ResultPrivate {
|
|
3954
|
+
|
|
3955
|
+
// Own properties of GCalc-2.GCalc.ResultPrivate
|
|
3956
|
+
|
|
3957
|
+
static name: string
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
interface SolverClass {
|
|
3961
|
+
}
|
|
3962
|
+
|
|
3963
|
+
abstract class SolverClass {
|
|
3964
|
+
|
|
3965
|
+
// Own properties of GCalc-2.GCalc.SolverClass
|
|
3966
|
+
|
|
3967
|
+
static name: string
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
interface SolverPrivate {
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
class SolverPrivate {
|
|
3974
|
+
|
|
3975
|
+
// Own properties of GCalc-2.GCalc.SolverPrivate
|
|
3976
|
+
|
|
3977
|
+
static name: string
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
interface TermClass {
|
|
3981
|
+
}
|
|
3982
|
+
|
|
3983
|
+
abstract class TermClass {
|
|
3984
|
+
|
|
3985
|
+
// Own properties of GCalc-2.GCalc.TermClass
|
|
3986
|
+
|
|
3987
|
+
static name: string
|
|
3988
|
+
}
|
|
3989
|
+
|
|
3990
|
+
interface TermPrivate {
|
|
3991
|
+
}
|
|
3992
|
+
|
|
3993
|
+
class TermPrivate {
|
|
3994
|
+
|
|
3995
|
+
// Own properties of GCalc-2.GCalc.TermPrivate
|
|
3996
|
+
|
|
3997
|
+
static name: string
|
|
3998
|
+
}
|
|
3999
|
+
|
|
4000
|
+
interface UnitConverterClass {
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
abstract class UnitConverterClass {
|
|
4004
|
+
|
|
4005
|
+
// Own properties of GCalc-2.GCalc.UnitConverterClass
|
|
4006
|
+
|
|
4007
|
+
static name: string
|
|
4008
|
+
}
|
|
4009
|
+
|
|
4010
|
+
interface UnitConverterPrivate {
|
|
4011
|
+
}
|
|
4012
|
+
|
|
4013
|
+
class UnitConverterPrivate {
|
|
4014
|
+
|
|
4015
|
+
// Own properties of GCalc-2.GCalc.UnitConverterPrivate
|
|
4016
|
+
|
|
4017
|
+
static name: string
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
interface VariableClass {
|
|
4021
|
+
}
|
|
4022
|
+
|
|
4023
|
+
abstract class VariableClass {
|
|
4024
|
+
|
|
4025
|
+
// Own properties of GCalc-2.GCalc.VariableClass
|
|
4026
|
+
|
|
4027
|
+
static name: string
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
interface VariablePrivate {
|
|
4031
|
+
}
|
|
4032
|
+
|
|
4033
|
+
class VariablePrivate {
|
|
4034
|
+
|
|
4035
|
+
// Own properties of GCalc-2.GCalc.VariablePrivate
|
|
4036
|
+
|
|
4037
|
+
static name: string
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
interface HashableIface {
|
|
4041
|
+
|
|
4042
|
+
// Own fields of GCalc-2.GCalc.HashableIface
|
|
4043
|
+
|
|
4044
|
+
hash: (self: Hashable) => number
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
abstract class HashableIface {
|
|
4048
|
+
|
|
4049
|
+
// Own properties of GCalc-2.GCalc.HashableIface
|
|
4050
|
+
|
|
4051
|
+
static name: string
|
|
4052
|
+
}
|
|
4053
|
+
|
|
4054
|
+
interface MathAssignIface {
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
abstract class MathAssignIface {
|
|
4058
|
+
|
|
4059
|
+
// Own properties of GCalc-2.GCalc.MathAssignIface
|
|
4060
|
+
|
|
4061
|
+
static name: string
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
interface MathBinaryOperatorIface {
|
|
4065
|
+
}
|
|
4066
|
+
|
|
4067
|
+
abstract class MathBinaryOperatorIface {
|
|
4068
|
+
|
|
4069
|
+
// Own properties of GCalc-2.GCalc.MathBinaryOperatorIface
|
|
4070
|
+
|
|
4071
|
+
static name: string
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
interface MathConstantIface {
|
|
4075
|
+
|
|
4076
|
+
// Own fields of GCalc-2.GCalc.MathConstantIface
|
|
4077
|
+
|
|
4078
|
+
add: (self: MathConstant, c: MathConstant) => MathConstant
|
|
4079
|
+
subtract: (self: MathConstant, c: MathConstant) => MathConstant
|
|
4080
|
+
multiply: (self: MathConstant, c: MathConstant) => MathConstant
|
|
4081
|
+
divide: (self: MathConstant, c: MathConstant) => MathConstant
|
|
4082
|
+
neg: (self: MathConstant) => MathConstant
|
|
4083
|
+
pow: (self: MathConstant, c: MathConstant) => MathConstant
|
|
4084
|
+
}
|
|
4085
|
+
|
|
4086
|
+
abstract class MathConstantIface {
|
|
4087
|
+
|
|
4088
|
+
// Own properties of GCalc-2.GCalc.MathConstantIface
|
|
4089
|
+
|
|
4090
|
+
static name: string
|
|
4091
|
+
}
|
|
4092
|
+
|
|
4093
|
+
interface MathConstantComplexIface {
|
|
4094
|
+
|
|
4095
|
+
// Own fields of GCalc-2.GCalc.MathConstantComplexIface
|
|
4096
|
+
|
|
4097
|
+
real: (self: MathConstantComplex) => number
|
|
4098
|
+
imag: (self: MathConstantComplex) => number
|
|
4099
|
+
zero: (self: MathConstantComplex) => void
|
|
4100
|
+
}
|
|
4101
|
+
|
|
4102
|
+
abstract class MathConstantComplexIface {
|
|
4103
|
+
|
|
4104
|
+
// Own properties of GCalc-2.GCalc.MathConstantComplexIface
|
|
4105
|
+
|
|
4106
|
+
static name: string
|
|
4107
|
+
}
|
|
4108
|
+
|
|
4109
|
+
interface MathConstantNumberIface {
|
|
4110
|
+
|
|
4111
|
+
// Own fields of GCalc-2.GCalc.MathConstantNumberIface
|
|
4112
|
+
|
|
4113
|
+
value: (self: MathConstantNumber) => number
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
abstract class MathConstantNumberIface {
|
|
4117
|
+
|
|
4118
|
+
// Own properties of GCalc-2.GCalc.MathConstantNumberIface
|
|
4119
|
+
|
|
4120
|
+
static name: string
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
interface MathConstantVectorIface {
|
|
4124
|
+
|
|
4125
|
+
// Own fields of GCalc-2.GCalc.MathConstantVectorIface
|
|
4126
|
+
|
|
4127
|
+
mag: (self: MathConstantVector) => MathConstant
|
|
4128
|
+
ang: (self: MathConstantVector) => MathConstant
|
|
4129
|
+
x: (self: MathConstantVector) => MathConstant
|
|
4130
|
+
y: (self: MathConstantVector) => MathConstant
|
|
4131
|
+
}
|
|
4132
|
+
|
|
4133
|
+
abstract class MathConstantVectorIface {
|
|
4134
|
+
|
|
4135
|
+
// Own properties of GCalc-2.GCalc.MathConstantVectorIface
|
|
4136
|
+
|
|
4137
|
+
static name: string
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
interface MathDivisionIface {
|
|
4141
|
+
}
|
|
4142
|
+
|
|
4143
|
+
abstract class MathDivisionIface {
|
|
4144
|
+
|
|
4145
|
+
// Own properties of GCalc-2.GCalc.MathDivisionIface
|
|
4146
|
+
|
|
4147
|
+
static name: string
|
|
4148
|
+
}
|
|
4149
|
+
|
|
4150
|
+
interface MathEquationIface {
|
|
4151
|
+
|
|
4152
|
+
// Own fields of GCalc-2.GCalc.MathEquationIface
|
|
4153
|
+
|
|
4154
|
+
get_variables: (self: MathEquation) => ExpressionHashMap
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
abstract class MathEquationIface {
|
|
4158
|
+
|
|
4159
|
+
// Own properties of GCalc-2.GCalc.MathEquationIface
|
|
4160
|
+
|
|
4161
|
+
static name: string
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4164
|
+
interface MathEquationManagerIface {
|
|
4165
|
+
|
|
4166
|
+
// Own fields of GCalc-2.GCalc.MathEquationManagerIface
|
|
4167
|
+
|
|
4168
|
+
find_variable: (self: MathEquationManager, name: string | null) => MathVariable
|
|
4169
|
+
get_equations: (self: MathEquationManager) => ExpressionContainer
|
|
4170
|
+
get_functions: (self: MathEquationManager) => ExpressionContainer
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
abstract class MathEquationManagerIface {
|
|
4174
|
+
|
|
4175
|
+
// Own properties of GCalc-2.GCalc.MathEquationManagerIface
|
|
4176
|
+
|
|
4177
|
+
static name: string
|
|
4178
|
+
}
|
|
4179
|
+
|
|
4180
|
+
interface MathErrorResultIface {
|
|
4181
|
+
|
|
4182
|
+
// Own fields of GCalc-2.GCalc.MathErrorResultIface
|
|
4183
|
+
|
|
4184
|
+
get_message: (self: MathErrorResult) => string | null
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
abstract class MathErrorResultIface {
|
|
4188
|
+
|
|
4189
|
+
// Own properties of GCalc-2.GCalc.MathErrorResultIface
|
|
4190
|
+
|
|
4191
|
+
static name: string
|
|
4192
|
+
}
|
|
4193
|
+
|
|
4194
|
+
interface MathExpressionIface {
|
|
4195
|
+
|
|
4196
|
+
// Own fields of GCalc-2.GCalc.MathExpressionIface
|
|
4197
|
+
|
|
4198
|
+
to_string: (self: MathExpression) => string | null
|
|
4199
|
+
solve: (self: MathExpression) => MathResult
|
|
4200
|
+
get_parent: (self: MathExpression) => MathExpression
|
|
4201
|
+
set_parent: (self: MathExpression, value: MathExpression) => void
|
|
4202
|
+
get_expressions: (self: MathExpression) => ExpressionContainer
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
abstract class MathExpressionIface {
|
|
4206
|
+
|
|
4207
|
+
// Own properties of GCalc-2.GCalc.MathExpressionIface
|
|
4208
|
+
|
|
4209
|
+
static name: string
|
|
4210
|
+
}
|
|
4211
|
+
|
|
4212
|
+
interface MathFunctionIface {
|
|
4213
|
+
|
|
4214
|
+
// Own fields of GCalc-2.GCalc.MathFunctionIface
|
|
4215
|
+
|
|
4216
|
+
evaluate: (self: MathFunction) => MathExpression
|
|
4217
|
+
verify_params: (self: MathFunction) => boolean
|
|
4218
|
+
get_param_types: (self: MathFunction) => ExpressionContainer
|
|
4219
|
+
get_name: (self: MathFunction) => string | null
|
|
4220
|
+
set_name: (self: MathFunction, value: string | null) => void
|
|
4221
|
+
get_n_params: (self: MathFunction) => number
|
|
4222
|
+
set_n_params: (self: MathFunction, value: number) => void
|
|
4223
|
+
get_closed: (self: MathFunction) => boolean
|
|
4224
|
+
set_closed: (self: MathFunction, value: boolean) => void
|
|
4225
|
+
}
|
|
4226
|
+
|
|
4227
|
+
abstract class MathFunctionIface {
|
|
4228
|
+
|
|
4229
|
+
// Own properties of GCalc-2.GCalc.MathFunctionIface
|
|
4230
|
+
|
|
4231
|
+
static name: string
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
interface MathGroupIface {
|
|
4235
|
+
|
|
4236
|
+
// Own fields of GCalc-2.GCalc.MathGroupIface
|
|
4237
|
+
|
|
4238
|
+
evaluate: (self: MathGroup) => MathExpression
|
|
4239
|
+
get_level: (self: MathGroup) => MathGroupLevel
|
|
4240
|
+
set_level: (self: MathGroup, value: MathGroupLevel) => void
|
|
4241
|
+
get_closed: (self: MathGroup) => boolean
|
|
4242
|
+
set_closed: (self: MathGroup, value: boolean) => void
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
abstract class MathGroupIface {
|
|
4246
|
+
|
|
4247
|
+
// Own properties of GCalc-2.GCalc.MathGroupIface
|
|
4248
|
+
|
|
4249
|
+
static name: string
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4252
|
+
interface MathMinusIface {
|
|
4253
|
+
}
|
|
4254
|
+
|
|
4255
|
+
abstract class MathMinusIface {
|
|
4256
|
+
|
|
4257
|
+
// Own properties of GCalc-2.GCalc.MathMinusIface
|
|
4258
|
+
|
|
4259
|
+
static name: string
|
|
4260
|
+
}
|
|
4261
|
+
|
|
4262
|
+
interface MathMultiplyIface {
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
abstract class MathMultiplyIface {
|
|
4266
|
+
|
|
4267
|
+
// Own properties of GCalc-2.GCalc.MathMultiplyIface
|
|
4268
|
+
|
|
4269
|
+
static name: string
|
|
4270
|
+
}
|
|
4271
|
+
|
|
4272
|
+
interface MathOperatorIface {
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4275
|
+
abstract class MathOperatorIface {
|
|
4276
|
+
|
|
4277
|
+
// Own properties of GCalc-2.GCalc.MathOperatorIface
|
|
4278
|
+
|
|
4279
|
+
static name: string
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
interface MathParameterIface {
|
|
4283
|
+
|
|
4284
|
+
// Own fields of GCalc-2.GCalc.MathParameterIface
|
|
4285
|
+
|
|
4286
|
+
set_value: (self: MathParameter, val: any | null) => void
|
|
4287
|
+
get_value: (self: MathParameter) => any | null
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
abstract class MathParameterIface {
|
|
4291
|
+
|
|
4292
|
+
// Own properties of GCalc-2.GCalc.MathParameterIface
|
|
4293
|
+
|
|
4294
|
+
static name: string
|
|
4295
|
+
}
|
|
4296
|
+
|
|
4297
|
+
interface MathPlusIface {
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
abstract class MathPlusIface {
|
|
4301
|
+
|
|
4302
|
+
// Own properties of GCalc-2.GCalc.MathPlusIface
|
|
4303
|
+
|
|
4304
|
+
static name: string
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
interface MathPolynomialIface {
|
|
4308
|
+
|
|
4309
|
+
// Own fields of GCalc-2.GCalc.MathPolynomialIface
|
|
4310
|
+
|
|
4311
|
+
evaluate: (self: MathPolynomial) => MathExpression
|
|
4312
|
+
}
|
|
4313
|
+
|
|
4314
|
+
abstract class MathPolynomialIface {
|
|
4315
|
+
|
|
4316
|
+
// Own properties of GCalc-2.GCalc.MathPolynomialIface
|
|
4317
|
+
|
|
4318
|
+
static name: string
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4321
|
+
interface MathPowIface {
|
|
4322
|
+
}
|
|
4323
|
+
|
|
4324
|
+
abstract class MathPowIface {
|
|
4325
|
+
|
|
4326
|
+
// Own properties of GCalc-2.GCalc.MathPowIface
|
|
4327
|
+
|
|
4328
|
+
static name: string
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
interface MathResultIface {
|
|
4332
|
+
|
|
4333
|
+
// Own fields of GCalc-2.GCalc.MathResultIface
|
|
4334
|
+
|
|
4335
|
+
to_string: (self: MathResult) => string | null
|
|
4336
|
+
get_expression: (self: MathResult) => MathExpression
|
|
4337
|
+
}
|
|
4338
|
+
|
|
4339
|
+
abstract class MathResultIface {
|
|
4340
|
+
|
|
4341
|
+
// Own properties of GCalc-2.GCalc.MathResultIface
|
|
4342
|
+
|
|
4343
|
+
static name: string
|
|
4344
|
+
}
|
|
4345
|
+
|
|
4346
|
+
interface MathTermIface {
|
|
4347
|
+
|
|
4348
|
+
// Own fields of GCalc-2.GCalc.MathTermIface
|
|
4349
|
+
|
|
4350
|
+
add: (self: MathTerm, t: MathTerm) => MathExpression
|
|
4351
|
+
evaluate: (self: MathTerm) => MathExpression
|
|
4352
|
+
}
|
|
4353
|
+
|
|
4354
|
+
abstract class MathTermIface {
|
|
4355
|
+
|
|
4356
|
+
// Own properties of GCalc-2.GCalc.MathTermIface
|
|
4357
|
+
|
|
4358
|
+
static name: string
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
interface MathVariableIface {
|
|
4362
|
+
|
|
4363
|
+
// Own fields of GCalc-2.GCalc.MathVariableIface
|
|
4364
|
+
|
|
4365
|
+
evaluate: (self: MathVariable) => MathExpression
|
|
4366
|
+
get_name: (self: MathVariable) => string | null
|
|
4367
|
+
set_name: (self: MathVariable, value: string | null) => void
|
|
4368
|
+
get_value: (self: MathVariable) => MathConstant
|
|
4369
|
+
set_value: (self: MathVariable, value: MathConstant) => void
|
|
4370
|
+
get_bind: (self: MathVariable) => MathVariable
|
|
4371
|
+
set_bind: (self: MathVariable, value: MathVariable) => void
|
|
4372
|
+
get_binded: (self: MathVariable) => boolean
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
abstract class MathVariableIface {
|
|
4376
|
+
|
|
4377
|
+
// Own properties of GCalc-2.GCalc.MathVariableIface
|
|
4378
|
+
|
|
4379
|
+
static name: string
|
|
4380
|
+
}
|
|
4381
|
+
|
|
4382
|
+
/**
|
|
4383
|
+
* Name of the imported GIR library
|
|
4384
|
+
* @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L188
|
|
4385
|
+
*/
|
|
4386
|
+
const __name__: string
|
|
4387
|
+
/**
|
|
4388
|
+
* Version of the imported GIR library
|
|
4389
|
+
* @see https://gitlab.gnome.org/GNOME/gjs/-/blob/master/gi/ns.cpp#L189
|
|
4390
|
+
*/
|
|
4391
|
+
const __version__: string
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
export default GCalc;
|
|
4395
|
+
// END
|