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