forked from roojs/gir-1.1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMx-1.0.gir
9236 lines (9236 loc) · 380 KB
/
Mx-1.0.gir
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!-- This file was automatically generated from C sources - DO NOT EDIT!
To affect the contents of this file, edit the original C definitions,
and/or use gtk-doc annotations. -->
<repository version="1.1"
xmlns="http://www.gtk.org/introspection/core/1.0"
xmlns:c="http://www.gtk.org/introspection/c/1.0"
xmlns:glib="http://www.gtk.org/introspection/glib/1.0">
<include name="Clutter" version="1.0"/>
<include name="ClutterJson" version="1.0"/>
<include name="Cogl" version="1.0"/>
<include name="GL" version="1.0"/>
<include name="GLib" version="2.0"/>
<include name="GObject" version="2.0"/>
<include name="Pango" version="1.0"/>
<include name="PangoCairo" version="1.0"/>
<include name="PangoFT2" version="1.0"/>
<include name="cairo" version="1.0"/>
<include name="fontconfig" version="2.0"/>
<include name="freetype2" version="2.0"/>
<package name="clutter-1.0"/>
<package name="gobject-2.0"/>
<c:include name="mx/mx.h"/>
<namespace name="Mx"
version="1.0"
shared-library="libmx-1.0.so.2"
c:prefix="Mx">
<class name="Action"
c:type="MxAction"
parent="GObject.InitiallyUnowned"
glib:type-name="MxAction"
glib:get-type="mx_action_get_type"
glib:type-struct="ActionClass">
<doc xml:whitespace="preserve">The contents of this structure are private and should only be accessed
through the public API.</doc>
<constructor name="new" c:identifier="mx_action_new">
<doc xml:whitespace="preserve">Create a new, blank, MxAction</doc>
<return-value transfer-ownership="full">
<doc xml:whitespace="preserve">a newly allocated MxAction</doc>
<type name="Action" c:type="MxAction*"/>
</return-value>
</constructor>
<constructor name="new_full" c:identifier="mx_action_new_full">
<doc xml:whitespace="preserve">Create a new MxAction with the name and callback set</doc>
<return-value transfer-ownership="full">
<doc xml:whitespace="preserve">a newly allocation MxAction</doc>
<type name="Action" c:type="MxAction*"/>
</return-value>
<parameters>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">name of the action</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
<parameter name="display_name" transfer-ownership="none">
<doc xml:whitespace="preserve">name of the action to display to the user</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
<parameter name="activated_cb"
transfer-ownership="none"
scope="call"
closure="3">
<doc xml:whitespace="preserve">callback to connect to the activated signal</doc>
<type name="GObject.Callback" c:type="GCallback"/>
</parameter>
<parameter name="user_data" transfer-ownership="none">
<doc xml:whitespace="preserve">user data to be passed to the callback</doc>
<type name="any" c:type="gpointer"/>
</parameter>
</parameters>
</constructor>
<method name="get_name" c:identifier="mx_action_get_name">
<doc xml:whitespace="preserve">Get the name of the action</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">name of the action, owned by MxAction</doc>
<type name="utf8" c:type="gchar*"/>
</return-value>
</method>
<method name="set_name" c:identifier="mx_action_set_name">
<doc xml:whitespace="preserve">Set the name of the action</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">new name to set</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
</parameters>
</method>
<method name="get_display_name"
c:identifier="mx_action_get_display_name">
<doc xml:whitespace="preserve">Get the display name of the action</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">display-name of the action, owned by MxAction</doc>
<type name="utf8" c:type="gchar*"/>
</return-value>
</method>
<method name="set_display_name"
c:identifier="mx_action_set_display_name">
<doc xml:whitespace="preserve">Set the name of the action to display to the user</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">new display name to set</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
</parameters>
</method>
<method name="get_icon" c:identifier="mx_action_get_icon">
<doc xml:whitespace="preserve">Get the icon of the action</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">icon of the action, owned by MxAction</doc>
<type name="utf8" c:type="gchar*"/>
</return-value>
</method>
<method name="set_icon" c:identifier="mx_action_set_icon">
<doc xml:whitespace="preserve">The icon to be used in a visual representation of an action.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">new icon to set</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
</parameters>
</method>
<method name="get_active" c:identifier="mx_action_get_active">
<doc xml:whitespace="preserve">Get the value of the active property</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">#TRUE if the action is active</doc>
<type name="boolean" c:type="gboolean"/>
</return-value>
</method>
<method name="set_active" c:identifier="mx_action_set_active">
<doc xml:whitespace="preserve">Set the value of the active property</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="active" transfer-ownership="none">
<doc xml:whitespace="preserve">the value to set</doc>
<type name="boolean" c:type="gboolean"/>
</parameter>
</parameters>
</method>
<property name="active" writable="1" transfer-ownership="none">
<type name="boolean" c:type="gboolean"/>
</property>
<property name="display-name" writable="1" transfer-ownership="none">
<type name="utf8" c:type="gchararray"/>
</property>
<property name="icon" writable="1" transfer-ownership="none">
<type name="utf8" c:type="gchararray"/>
</property>
<property name="name" writable="1" transfer-ownership="none">
<type name="utf8" c:type="gchararray"/>
</property>
<field name="parent">
<type name="GObject.InitiallyUnowned" c:type="GInitiallyUnowned"/>
</field>
<field name="priv">
<type name="ActionPrivate" c:type="MxActionPrivate*"/>
</field>
<glib:signal name="activated">
<return-value transfer-ownership="full">
<type name="none" c:type="void"/>
</return-value>
</glib:signal>
</class>
<record name="ActionClass"
c:type="MxActionClass"
glib:is-gtype-struct-for="Action">
<field name="parent_class">
<type name="GObject.InitiallyUnownedClass"
c:type="GInitiallyUnownedClass"/>
</field>
<field name="activated">
<callback name="activated" c:type="activated">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="action" transfer-ownership="none">
<type name="Action" c:type="MxAction*"/>
</parameter>
</parameters>
</callback>
</field>
<field name="padding_0">
<callback name="padding_0" c:type="_padding_0">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_1">
<callback name="padding_1" c:type="_padding_1">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_2">
<callback name="padding_2" c:type="_padding_2">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_3">
<callback name="padding_3" c:type="_padding_3">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_4">
<callback name="padding_4" c:type="_padding_4">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
</record>
<record name="ActionPrivate" c:type="MxActionPrivate">
</record>
<class name="Adjustment"
c:type="MxAdjustment"
parent="GObject.Object"
glib:type-name="MxAdjustment"
glib:get-type="mx_adjustment_get_type"
glib:type-struct="AdjustmentClass">
<doc xml:whitespace="preserve">Class for handling an interval between to values. The contents of
the #MxAdjustment are private and should be accessed using the
public API.</doc>
<constructor name="new" c:identifier="mx_adjustment_new">
<doc xml:whitespace="preserve">Create a new MxAdjustment</doc>
<return-value transfer-ownership="full">
<doc xml:whitespace="preserve">a newly allocated MxAdjustment</doc>
<type name="Adjustment" c:type="MxAdjustment*"/>
</return-value>
</constructor>
<constructor name="new_with_values"
c:identifier="mx_adjustment_new_with_values">
<doc xml:whitespace="preserve">Create a new MxAdjustment with the properties set to the values specified.</doc>
<return-value transfer-ownership="full">
<doc xml:whitespace="preserve">a newly allocated MxAdjustment</doc>
<type name="Adjustment" c:type="MxAdjustment*"/>
</return-value>
<parameters>
<parameter name="value" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="lower" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="upper" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="step_increment" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="page_increment" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="page_size" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</constructor>
<method name="get_value" c:identifier="mx_adjustment_get_value">
<doc xml:whitespace="preserve">Get the current value of the #MxAdjustment:value property</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "value" property</doc>
<type name="double" c:type="gdouble"/>
</return-value>
</method>
<method name="set_value" c:identifier="mx_adjustment_set_value">
<doc xml:whitespace="preserve">Set the value of the #MxAdjustment:value property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="value" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="get_lower" c:identifier="mx_adjustment_get_lower">
<doc xml:whitespace="preserve">Get the value of the #MxAdjustment:lower property.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "lower" property.</doc>
<type name="double" c:type="gdouble"/>
</return-value>
</method>
<method name="set_lower" c:identifier="mx_adjustment_set_lower">
<doc xml:whitespace="preserve">Set the value of the #MxAdjustment:lower property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="lower" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="get_upper" c:identifier="mx_adjustment_get_upper">
<doc xml:whitespace="preserve">Get the value of the #MxAdjustment:upper property.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "upper" property.</doc>
<type name="double" c:type="gdouble"/>
</return-value>
</method>
<method name="set_upper" c:identifier="mx_adjustment_set_upper">
<doc xml:whitespace="preserve">Set the value of the #MxAdjustment:upper property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="upper" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="get_step_increment"
c:identifier="mx_adjustment_get_step_increment">
<doc xml:whitespace="preserve">Get the value of the MxAdjustment:step-increment property.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "step-increment" property.</doc>
<type name="double" c:type="gdouble"/>
</return-value>
</method>
<method name="set_step_increment"
c:identifier="mx_adjustment_set_step_increment">
<doc xml:whitespace="preserve">Set the value of the #MxAdjustment:step-increment property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="increment" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="get_page_increment"
c:identifier="mx_adjustment_get_page_increment">
<doc xml:whitespace="preserve">Get the value of the MxAdjustment:page-increment property.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "page-increment" property.</doc>
<type name="double" c:type="gdouble"/>
</return-value>
</method>
<method name="set_page_increment"
c:identifier="mx_adjustment_set_page_increment">
<doc xml:whitespace="preserve">Set the value of the #MxAdjustment:page-increment property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="increment" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="get_page_size" c:identifier="mx_adjustment_get_page_size">
<doc xml:whitespace="preserve">Get the value of the #MxAdjustment:page-size property.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "page-size" property.</doc>
<type name="double" c:type="gdouble"/>
</return-value>
</method>
<method name="set_page_size" c:identifier="mx_adjustment_set_page_size">
<doc xml:whitespace="preserve">Set the #MxAdjustment:page-size property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="page_size" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="set_values" c:identifier="mx_adjustment_set_values">
<doc xml:whitespace="preserve">Set the various properties of MxAdjustment.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="value" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="lower" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="upper" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="step_increment" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="page_increment" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="page_size" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
</parameters>
</method>
<method name="get_values" c:identifier="mx_adjustment_get_values">
<doc xml:whitespace="preserve">Get the various properties of MxAdjustment.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="value"
direction="out"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble*"/>
</parameter>
<parameter name="lower"
direction="out"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble*"/>
</parameter>
<parameter name="upper"
direction="out"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble*"/>
</parameter>
<parameter name="step_increment"
direction="out"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble*"/>
</parameter>
<parameter name="page_increment"
direction="out"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble*"/>
</parameter>
<parameter name="page_size"
direction="out"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble*"/>
</parameter>
</parameters>
</method>
<method name="interpolate" c:identifier="mx_adjustment_interpolate">
<doc xml:whitespace="preserve">Interpolate #MxAdjustment:value to the new value specified by @value, using
the mode and duration given.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="value" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="duration" transfer-ownership="none">
<doc xml:whitespace="preserve">duration in milliseconds</doc>
<type name="uint" c:type="guint"/>
</parameter>
<parameter name="mode" transfer-ownership="none">
<doc xml:whitespace="preserve">A #ClutterAnimationMode</doc>
<type name="ulong" c:type="gulong"/>
</parameter>
</parameters>
</method>
<method name="interpolate_relative"
c:identifier="mx_adjustment_interpolate_relative">
<doc xml:whitespace="preserve">Interpolate the value of #MxAdjustment:value to a new value calculated from</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="offset" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gdouble</doc>
<type name="double" c:type="gdouble"/>
</parameter>
<parameter name="duration" transfer-ownership="none">
<doc xml:whitespace="preserve">duration in milliseconds</doc>
<type name="uint" c:type="guint"/>
</parameter>
<parameter name="mode" transfer-ownership="none">
<doc xml:whitespace="preserve">A #ClutterAnimationMode</doc>
<type name="ulong" c:type="gulong"/>
</parameter>
</parameters>
</method>
<method name="get_elastic" c:identifier="mx_adjustment_get_elastic">
<doc xml:whitespace="preserve">Get the value of the #MxAdjustment:elastic property.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">the current value of the "elastic" property.</doc>
<type name="boolean" c:type="gboolean"/>
</return-value>
</method>
<method name="set_elastic" c:identifier="mx_adjustment_set_elastic">
<doc xml:whitespace="preserve">Set the value of the #MxAdjustment:elastic property.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="elastic" transfer-ownership="none">
<doc xml:whitespace="preserve">A #gboolean</doc>
<type name="boolean" c:type="gboolean"/>
</parameter>
</parameters>
</method>
<property name="elastic"
writable="1"
construct="1"
transfer-ownership="none">
<type name="boolean" c:type="gboolean"/>
</property>
<property name="lower"
writable="1"
construct="1"
transfer-ownership="none">
<type name="double" c:type="gdouble"/>
</property>
<property name="page-increment"
writable="1"
construct="1"
transfer-ownership="none">
<type name="double" c:type="gdouble"/>
</property>
<property name="page-size"
writable="1"
construct="1"
transfer-ownership="none">
<type name="double" c:type="gdouble"/>
</property>
<property name="step-increment"
writable="1"
construct="1"
transfer-ownership="none">
<type name="double" c:type="gdouble"/>
</property>
<property name="upper"
writable="1"
construct="1"
transfer-ownership="none">
<type name="double" c:type="gdouble"/>
</property>
<property name="value"
writable="1"
construct="1"
transfer-ownership="none">
<type name="double" c:type="gdouble"/>
</property>
<field name="parent_instance">
<type name="GObject.Object" c:type="GObject"/>
</field>
<field name="priv">
<type name="AdjustmentPrivate" c:type="MxAdjustmentPrivate*"/>
</field>
<glib:signal name="changed">
<doc xml:whitespace="preserve">Emitted when any of the adjustment values have changed</doc>
<return-value transfer-ownership="full">
<type name="none" c:type="void"/>
</return-value>
</glib:signal>
</class>
<record name="AdjustmentClass"
c:type="MxAdjustmentClass"
glib:is-gtype-struct-for="Adjustment">
<field name="parent_class">
<type name="GObject.ObjectClass" c:type="GObjectClass"/>
</field>
<field name="changed">
<callback name="changed" c:type="changed">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="adjustment" transfer-ownership="none">
<type name="Adjustment" c:type="MxAdjustment*"/>
</parameter>
</parameters>
</callback>
</field>
<field name="padding_0">
<callback name="padding_0" c:type="_padding_0">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_1">
<callback name="padding_1" c:type="_padding_1">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_2">
<callback name="padding_2" c:type="_padding_2">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_3">
<callback name="padding_3" c:type="_padding_3">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_4">
<callback name="padding_4" c:type="_padding_4">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
</record>
<record name="AdjustmentPrivate" c:type="MxAdjustmentPrivate">
</record>
<enumeration name="Align"
glib:type-name="MxAlign"
glib:get-type="mx_align_get_type"
c:type="MxAlign">
<doc xml:whitespace="preserve">Set the alignment of the item</doc>
<member name="start"
value="0"
c:identifier="MX_ALIGN_START"
glib:nick="start"/>
<member name="middle"
value="1"
c:identifier="MX_ALIGN_MIDDLE"
glib:nick="middle"/>
<member name="end"
value="2"
c:identifier="MX_ALIGN_END"
glib:nick="end"/>
</enumeration>
<class name="Application"
c:type="MxApplication"
parent="GObject.Object"
glib:type-name="MxApplication"
glib:get-type="mx_application_get_type"
glib:type-struct="ApplicationClass">
<doc xml:whitespace="preserve">The contents of this structure are private and should only be accessed
through the public API.</doc>
<constructor name="new" c:identifier="mx_application_new">
<doc xml:whitespace="preserve">Intialises everything needed to operate Clutter and use #MxApplication.
See clutter_init().</doc>
<return-value transfer-ownership="full">
<doc xml:whitespace="preserve">the #MxApplication singleton.</doc>
<type name="Application" c:type="MxApplication*"/>
</return-value>
<parameters>
<parameter name="argc"
direction="inout"
caller-allocates="0"
transfer-ownership="full">
<doc xml:whitespace="preserve">The number of arguments in argv.</doc>
<type name="int" c:type="gint*"/>
</parameter>
<parameter name="argv"
direction="inout"
caller-allocates="0"
transfer-ownership="full"
allow-none="1">
<doc xml:whitespace="preserve">A pointer to an array of arguments</doc>
<array length="0" c:type="gchar***">
<type name="utf8"/>
</array>
</parameter>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">Unique application name.</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
<parameter name="flags" transfer-ownership="none">
<doc xml:whitespace="preserve">Application flags.</doc>
<type name="ApplicationFlags" c:type="MxApplicationFlags"/>
</parameter>
</parameters>
</constructor>
<virtual-method name="create_window" invoker="create_window">
<doc xml:whitespace="preserve">Creates a window and associates it with the application.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">An #MxWindow.</doc>
<type name="Window" c:type="MxWindow*"/>
</return-value>
</virtual-method>
<virtual-method name="raise">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</virtual-method>
<method name="run" c:identifier="mx_application_run">
<doc xml:whitespace="preserve">Run the main loop of the application and start processing events. This
function will not return until the application is quit. If the application
is single instance and an existing instance is already running, this will
cause the existing instance to be raised and the function will complete
immediately.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</method>
<method name="quit" c:identifier="mx_application_quit">
<doc xml:whitespace="preserve">Stop the application from running and quit the main loop. This will cause
the call to mx_application_run() to complete.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</method>
<method name="create_window" c:identifier="mx_application_create_window">
<doc xml:whitespace="preserve">Creates a window and associates it with the application.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">An #MxWindow.</doc>
<type name="Window" c:type="MxWindow*"/>
</return-value>
</method>
<method name="get_flags" c:identifier="mx_application_get_flags">
<doc xml:whitespace="preserve">Get the application flags that where set on @application when created.</doc>
<return-value transfer-ownership="full">
<doc xml:whitespace="preserve">the application flags</doc>
<type name="ApplicationFlags" c:type="MxApplicationFlags"/>
</return-value>
</method>
<method name="add_window" c:identifier="mx_application_add_window">
<doc xml:whitespace="preserve">Adds a window to the list of windows associated with @application. If this
is the first window, it will be treated as the primary window and used for
startup notification.
This function does not take a reference on @window.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="window" transfer-ownership="full">
<doc xml:whitespace="preserve">The #MxWindow to add to the application</doc>
<type name="Window" c:type="MxWindow*"/>
</parameter>
</parameters>
</method>
<method name="remove_window" c:identifier="mx_application_remove_window">
<doc xml:whitespace="preserve">Remove the specified window from the application. This will cause the window
to be unreferenced and destroyed unless another reference is held on it.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="window" transfer-ownership="none">
<doc xml:whitespace="preserve">an #MxWindow</doc>
<type name="Window" c:type="MxWindow*"/>
</parameter>
</parameters>
</method>
<method name="get_windows" c:identifier="mx_application_get_windows">
<doc xml:whitespace="preserve">Retrieves all windows added to @application.
of #MxWindow<!-- -->s. The returned list is owned by</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">a list</doc>
<type name="GLib.List" c:type="GList*">
<type name="Window"/>
</type>
</return-value>
</method>
<method name="add_action" c:identifier="mx_application_add_action">
<doc xml:whitespace="preserve">Add an action to the application.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="action" transfer-ownership="none">
<doc xml:whitespace="preserve">an #MxAction</doc>
<type name="Action" c:type="MxAction*"/>
</parameter>
</parameters>
</method>
<method name="remove_action" c:identifier="mx_application_remove_action">
<doc xml:whitespace="preserve">Remove the action with the specified name from the application.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">name of the action to remove</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
</parameters>
</method>
<method name="get_actions" c:identifier="mx_application_get_actions">
<doc xml:whitespace="preserve">Retrieves all actions registered on @application.
of #MxAction<!-- -->s. Use g_list_free() on the returned list
when done.</doc>
<return-value transfer-ownership="container">
<doc xml:whitespace="preserve">a list</doc>
<type name="GLib.List" c:type="GList*">
<type name="Action"/>
</type>
</return-value>
</method>
<method name="invoke_action" c:identifier="mx_application_invoke_action">
<doc xml:whitespace="preserve">Run the named action for the application.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="name" transfer-ownership="none">
<doc xml:whitespace="preserve">name of the action to invoke</doc>
<type name="utf8" c:type="gchar*"/>
</parameter>
</parameters>
</method>
<method name="is_running" c:identifier="mx_application_is_running">
<doc xml:whitespace="preserve">Query whether #MxApplication is running. This will also return #TRUE if the
given #MxApplication is single instance and there is an instance already
running.</doc>
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">#TRUE if the application is running</doc>
<type name="boolean" c:type="gboolean"/>
</return-value>
</method>
<property name="application-name"
writable="1"
construct-only="1"
transfer-ownership="none">
<type name="utf8" c:type="gchararray"/>
</property>
<property name="flags"
writable="1"
construct-only="1"
transfer-ownership="none">
<type name="uint" c:type="guint"/>
</property>
<field name="parent">
<type name="GObject.Object" c:type="GObject"/>
</field>
<field name="priv">
<type name="ApplicationPrivate" c:type="MxApplicationPrivate*"/>
</field>
<glib:signal name="actions-changed">
<return-value transfer-ownership="full">
<type name="none" c:type="void"/>
</return-value>
</glib:signal>
</class>
<record name="ApplicationClass"
c:type="MxApplicationClass"
glib:is-gtype-struct-for="Application">
<field name="parent_class">
<type name="GObject.ObjectClass" c:type="GObjectClass"/>
</field>
<field name="create_window">
<callback name="create_window" c:type="create_window">
<return-value transfer-ownership="none">
<doc xml:whitespace="preserve">An #MxWindow.</doc>
<type name="Window" c:type="MxWindow*"/>
</return-value>
<parameters>
<parameter name="app" transfer-ownership="none">
<type name="Application" c:type="MxApplication*"/>
</parameter>
</parameters>
</callback>
</field>
<field name="raise">
<callback name="raise" c:type="raise">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="app" transfer-ownership="none">
<type name="Application" c:type="MxApplication*"/>
</parameter>
</parameters>
</callback>
</field>
<field name="actions_changed">
<callback name="actions_changed" c:type="actions_changed">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="app" transfer-ownership="none">
<type name="Application" c:type="MxApplication*"/>
</parameter>
</parameters>
</callback>
</field>
<field name="padding_0">
<callback name="padding_0" c:type="_padding_0">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_1">
<callback name="padding_1" c:type="_padding_1">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_2">
<callback name="padding_2" c:type="_padding_2">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_3">
<callback name="padding_3" c:type="_padding_3">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
<field name="padding_4">
<callback name="padding_4" c:type="_padding_4">
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
</callback>
</field>
</record>
<bitfield name="ApplicationFlags"
glib:type-name="MxApplicationFlags"
glib:get-type="mx_application_flags_get_type"
c:type="MxApplicationFlags">
<member name="single_instance"
value="1"
c:identifier="MX_APPLICATION_SINGLE_INSTANCE"
glib:nick="single-instance"/>
<member name="keep_alive"
value="4"
c:identifier="MX_APPLICATION_KEEP_ALIVE"
glib:nick="keep-alive"/>
</bitfield>
<record name="ApplicationPrivate" c:type="MxApplicationPrivate">
</record>
<class name="Bin"
c:type="MxBin"
parent="Widget"
abstract="1"
glib:type-name="MxBin"
glib:get-type="mx_bin_get_type"
glib:type-struct="BinClass">
<doc xml:whitespace="preserve">The #MxBin struct contains only private data</doc>
<implements name="Clutter.Container"/>
<implements name="Clutter.Scriptable"/>
<implements name="Focusable"/>
<implements name="Stylable"/>
<method name="allocate_child" c:identifier="mx_bin_allocate_child">
<doc xml:whitespace="preserve">Allocates the child of an #MxBin inside the given box. This function should
usually only be called by subclasses of #MxBin.
This function can be used to allocate the child of an #MxBin if no special
allocation requirements are needed. It is similar to
#mx_allocate_align_fill, except that it reads the alignment, padding and
fill values from the #MxBin, and will call #clutter_actor_allocate on the
child.</doc>
<return-value transfer-ownership="none">
<type name="none" c:type="void"/>
</return-value>
<parameters>
<parameter name="box" transfer-ownership="none">
<doc xml:whitespace="preserve">The box to allocate the child within</doc>
<type name="Clutter.ActorBox" c:type="ClutterActorBox*"/>
</parameter>
<parameter name="flags" transfer-ownership="none">
<doc xml:whitespace="preserve">#ClutterAllocationFlags, usually provided by the. clutter_actor_allocate function.</doc>
<type name="Clutter.AllocationFlags"
c:type="ClutterAllocationFlags"/>
</parameter>