]> Pileus Git - ~andy/gtk/blob - docs/reference/gtk/tmpl/gtk-unused.sgml
docs
[~andy/gtk] / docs / reference / gtk / tmpl / gtk-unused.sgml
1 <!-- ##### SECTION ./tmpl/gtkarg.sgml:Long_Description ##### -->
2 <para>
3 All the functions in here are marked a Non-public.
4 We describe it anyway because it is occasionally useful
5 to understand how the work is done.
6 </para>
7 <para>
8 Arguments are a way of describing a named parameter to a function.
9 They have two important roles within gtk+:
10 <itemizedlist>
11 <listitem>
12 <para>
13 they describe <wordasword>object properties</wordasword>.
14 This means that they present an interface to get and set a named-type
15 for any type of object in a consistent way.
16 (All the relevant functions to do this start with gtk_object_set
17 or gtk_object_get).
18 </para>
19 </listitem>
20 <listitem>
21 <para>
22 they describe <wordasword>signal arguments</wordasword>.
23 This is a lot less often needed but still useful.
24 Usually if you are just emitting or creating a particular signal
25 it is more convenient to just use gtk_signal_emit() or gtk_signal_new().
26 However if you are writing a function to emit or create an arbitrary
27 signal, you must use gtk_signal_emitv() or gtk_signal_newv().
28 </para>
29 </listitem>
30 </itemizedlist>
31 </para>
32
33
34 <!-- ##### SECTION ./tmpl/gtkarg.sgml:See_Also ##### -->
35 <para>
36 #GtkObject.
37 </para>
38
39
40 <!-- ##### SECTION ./tmpl/gtkarg.sgml:Short_Description ##### -->
41 Utility function to manipulate lists of named, typed arguments.
42
43
44 <!-- ##### SECTION ./tmpl/gtkarg.sgml:Title ##### -->
45 Implementation of Object Properties
46
47
48 <!-- ##### SECTION ./tmpl/gtkcellrenderertextpixbuf.sgml:Long_Description ##### -->
49 <para>
50
51 </para>
52
53
54 <!-- ##### SECTION ./tmpl/gtkcellrenderertextpixbuf.sgml:See_Also ##### -->
55 <para>
56
57 </para>
58
59
60 <!-- ##### SECTION ./tmpl/gtkcellrenderertextpixbuf.sgml:Short_Description ##### -->
61
62
63
64 <!-- ##### SECTION ./tmpl/gtkcellrenderertextpixbuf.sgml:Title ##### -->
65 GtkCellRendererTextPixbuf
66
67
68 <!-- ##### SECTION ./tmpl/gtkdata.sgml:Long_Description ##### -->
69 <para>
70 The #GtkData object is a very simple object intended to be used as a base
71 class for objects which contain data (i.e. the 'Model' in the object-oriented
72 Model/View/Controller framework).
73 </para>
74 <para>
75 Currently it is not very useful since all it provides is a "disconnect" signal.
76 This signal could be emitted by a #GtkData subclass to notify any 'Views'
77 that they should disconnect from the #GtkData (the 'Model'), possibly just
78 before the #GtkData is destroyed.
79 </para>
80
81
82 <!-- ##### SECTION ./tmpl/gtkdata.sgml:See_Also ##### -->
83 <para>
84
85 </para>
86
87
88 <!-- ##### SECTION ./tmpl/gtkdata.sgml:Short_Description ##### -->
89 abstract base class for objects containing data.
90
91
92 <!-- ##### SECTION ./tmpl/gtkdata.sgml:Title ##### -->
93 GtkData
94
95
96 <!-- ##### SECTION ./tmpl/gtkdebug.sgml:Title ##### -->
97 Debugging
98
99
100 <!-- ##### SECTION ./tmpl/gtkenums.sgml.sgml:Title ##### -->
101 gtkenums.sgml
102
103
104 <!-- ##### SECTION ./tmpl/gtkimcontextsimple.sgml:Title ##### -->
105 GtkIMContextSimple
106
107
108 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:Long_Description ##### -->
109 <refsect2>
110 <title>What are Signal Marshallers?</title>
111 <para>
112 Marshals are functions which all have the same prototype:
113 they take a #GtkObject, a #GtkSignalFunc, a #gpointer,
114 and an array of argument values.
115 The functions are names gtk_marshall_RETURNTYPE__PARAMTYPE1_PARAMTYPE2....
116 </para>
117 <para>
118 They then call a native function:  the GtkObject is the first
119 parameter passed in.  The arguments are passed in the native
120 calling convention:  chars, shorts, ints, longs may be packed
121 on the stack, or tucked in registers:  it doesn't matter
122 because the same calling convention will be generated
123 inside the gtkmarshal code as is expected where you define
124 your handlers.
125 </para>
126 <para>
127 So the function named:
128 <programlisting>
129 gtk_marshal_BOOL__POINTER_INT_INT_UINT(GtkObject*, GtkSignalFunc, gpointer, GtkArg*);
130 </programlisting>
131 will call the #GtkSignalFunc assuming it was a function with signature:
132 <programlisting>
133 gboolean sigfunc(gpointer,gint,gint,guint);
134 </programlisting>
135 </para>
136 </refsect2>
137 <refsect2>
138 <title>Writing Custom Marshals</title>
139 <para>
140 Marshals are primarily used as arguments to gtk_signal_new().
141 Sometimes, you may find that a marshaller you need isn't available
142 in the standard list.  Then you have to write your own.
143 </para>
144 <para>
145 If you wish to define a signal with a new type of argument list.
146 Suppose you want 2 pointers and 2 integers.
147 You would write:
148 <programlisting>
149 typedef int (*GtkSignal_INT__POINTER_POINTER_INT_INT)(
150                         gpointer, gpointer, gint, gint
151 );
152
153 void marshal_INT__POINTER_POINTER_INT_INT(GtkObject*    object,
154                                            GtkSignalFunc func,
155                                            gpointer      func_data,
156                                            GtkArg*       args)
157 {
158         GtkSignal_NONE__POINTER_POINTER_INT_INT rfunc;
159         gint* return_val;
160         return_val = GTK_RETLOC_INT(args[4]);
161         rfunc = (GtkSignal_INT__POINTER_POINTER_INT_INT)func;
162         *return_val = (*rfunc)(object,
163                                GTK_VALUE_POINTER(args[0]),
164                                GTK_VALUE_POINTER(args[1]),
165                                GTK_VALUE_INT(args[2]),
166                                GTK_VALUE_INT(args[3]),
167                                func_data);
168 }
169 </programlisting>
170 </para>
171 </refsect2>
172
173
174 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:See_Also ##### -->
175 <para>
176 <variablelist>
177
178 <varlistentry>
179 <term>#GtkSignal</term>
180 <listitem><para>The signal handling functions (of which marshallers are 
181 really an implementation detail).</para></listitem>
182 </varlistentry>
183
184 </variablelist>
185 </para>
186
187
188 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:Short_Description ##### -->
189 Functions to adapt C structures to native calling convention.
190
191
192 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:Title ##### -->
193 Signal Marshallers
194
195
196 <!-- ##### SECTION ./tmpl/gtkprivate.sgml:Title ##### -->
197 Private Information
198
199
200 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:Long_Description ##### -->
201 <para>
202
203 </para>
204
205
206 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:See_Also ##### -->
207 <para>
208
209 </para>
210
211
212 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:Short_Description ##### -->
213
214
215
216 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:Title ##### -->
217 GtkModelSimple
218
219
220 <!-- ##### MACRO GTK_CLIST_CHILD_HAS_FOCUS ##### -->
221 <para>
222 A macro to check whether a child widget of the CList
223 has the focus.
224 </para>
225
226 @clist: The #GtkCList widget to check.
227
228 <!-- ##### MACRO GTK_ICON_SIZE_BUTTON ##### -->
229 <para>
230
231 </para>
232
233
234 <!-- ##### MACRO GTK_ICON_SIZE_DIALOG ##### -->
235 <para>
236
237 </para>
238
239
240 <!-- ##### MACRO GTK_ICON_SIZE_LARGE_TOOLBAR ##### -->
241 <para>
242
243 </para>
244
245
246 <!-- ##### MACRO GTK_ICON_SIZE_MENU ##### -->
247 <para>
248
249 </para>
250
251
252 <!-- ##### MACRO GTK_ICON_SIZE_SMALL_TOOLBAR ##### -->
253 <para>
254
255 </para>
256
257
258 <!-- ##### MACRO GTK_OBJECT_CONSTRUCTED ##### -->
259 <para>
260 Test whether a GtkObject's arguments have been prepared.
261 </para>
262
263 @obj: the object to examine.
264
265 <!-- ##### MACRO GTK_OBJECT_NSIGNALS ##### -->
266 <para>
267 Get the number of signals defined by this object.
268 </para>
269
270 @obj: the object to query.
271
272 <!-- ##### MACRO GTK_OBJECT_SIGNALS ##### -->
273 <para>
274 Get the array of signals defined for this object.
275 </para>
276
277 @obj: the object to fetch the signals from.
278
279 <!-- ##### MACRO GTK_STOCK_BUTTON_APPLY ##### -->
280 <para>
281
282 </para>
283
284
285 <!-- ##### MACRO GTK_STOCK_BUTTON_CANCEL ##### -->
286 <para>
287
288 </para>
289
290
291 <!-- ##### MACRO GTK_STOCK_BUTTON_CLOSE ##### -->
292 <para>
293
294 </para>
295
296
297 <!-- ##### MACRO GTK_STOCK_BUTTON_NO ##### -->
298 <para>
299
300 </para>
301
302
303 <!-- ##### MACRO GTK_STOCK_BUTTON_OK ##### -->
304 <para>
305
306 </para>
307
308
309 <!-- ##### MACRO GTK_STOCK_BUTTON_YES ##### -->
310 <para>
311
312 </para>
313
314
315 <!-- ##### MACRO GTK_TREE_SELECTION ##### -->
316 <para>
317 A macro that returns a GList that contains the selection of the root tree of @obj.
318 </para>
319
320 @obj: A pointer to the #GtkTree. @obj will accept any pointer, but it the pointer does not point to a #GtkTree, the results are undefined.
321
322 <!-- ##### MACRO GTK_TYPE_FLAT_FIRST ##### -->
323 <para>
324 The first "flat" (no struct) enumerated type value.
325 </para>
326
327
328 <!-- ##### MACRO GTK_TYPE_FLAT_LAST ##### -->
329 <para>
330 The last "flat" (no struct) enumerated type value.
331 </para>
332
333
334 <!-- ##### MACRO GTK_TYPE_IDENTIFIER ##### -->
335 <para>
336 Hide the name of gtk_identifier_get_type
337 </para>
338
339
340 <!-- ##### MACRO GTK_TYPE_MAKE ##### -->
341 <para>
342 Combine a fundemantal type and a sequence number to create a gtk type.
343 </para>
344
345 @parent_t: 
346 @seqno: 
347
348 <!-- ##### MACRO GTK_TYPE_NUM_BUILTINS ##### -->
349 <para>
350 No idea.
351 </para>
352
353
354 <!-- ##### MACRO GTK_TYPE_SEQNO ##### -->
355 <para>
356 Convert a gtk type into its sequence number
357 </para>
358
359 @type: 
360
361 <!-- ##### MACRO GTK_TYPE_STRUCTURED_FIRST ##### -->
362 <para>
363 The first structured enumerated type value.
364 </para>
365
366
367 <!-- ##### MACRO GTK_TYPE_STRUCTURED_LAST ##### -->
368 <para>
369 The last structured enumerated type value.
370 </para>
371
372
373 <!-- ##### MACRO GTK_TYPE_TREE_COLUMN ##### -->
374 <para>
375
376 </para>
377
378
379 <!-- ##### MACRO GTK_TYPE_TREE_VIEW_COLUMN ##### -->
380 <para>
381
382 </para>
383
384
385 <!-- ##### MACRO GTK_VALUE_ARGS ##### -->
386 <para>
387 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_ARGS
388 </para>
389
390 @a: 
391
392 <!-- ##### MACRO GTK_VALUE_CALLBACK ##### -->
393 <para>
394 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_CALLBACK
395 </para>
396
397 @a: 
398
399 <!-- ##### MACRO GTK_VALUE_C_CALLBACK ##### -->
400 <para>
401 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_C_CALLBACK
402 </para>
403
404 @a: 
405
406 <!-- ##### MACRO GTK_VALUE_FOREIGN ##### -->
407 <para>
408 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_C_FOREIGN
409 </para>
410
411 @a: 
412
413 <!-- ##### USER_FUNCTION GValueCompareFunc ##### -->
414 <para>
415
416 </para>
417
418 @a: 
419 @b: 
420 @Returns: 
421
422 <!-- ##### STRUCT GtkAccelEntry ##### -->
423 <para>
424 This is a private struct used by GTK+ internally, don't worry about it.
425 </para>
426
427 @accel_group: 
428 @accelerator_key: 
429 @accelerator_mods: 
430 @accel_flags: 
431 @object: 
432 @signal_id: 
433
434 <!-- ##### ARG GtkAccelLabel:accel-widget ##### -->
435 <para>
436 The widget whose accelerators are to be shown by the #GtkAccelLabel.
437 </para>
438
439
440 <!-- ##### ARG GtkAccelLabel:accel-width ##### -->
441 <para>
442
443 </para>
444
445
446 <!-- ##### USER_FUNCTION GtkArgGetFunc ##### -->
447 <para>
448 Define a function pointer.  Deprecated.
449 </para>
450
451 @object: 
452 @arg: 
453 @arg_id: 
454
455 <!-- ##### STRUCT GtkArgInfo ##### -->
456 <para>
457 A structure containing information about the argument.
458 Returned by gtk_arg_get_info().
459 </para>
460
461 @class_type: if the argument is an object, this is the object class type.
462 @name: the name of the argument.
463 @type: the type of the argument; it may be an object's type
464 or a fundamental type.
465 @arg_flags: flags applicable to the argument (i.e. readable, writable,
466 and whether it needs to be constructed).
467 @full_name: the object name and argument name separated by ::,
468 e.g. "GtkObject::user_data" or "GtkButton::label".
469 @arg_id: the unique argument identified.
470 @seq_id: ???
471
472 <!-- ##### USER_FUNCTION GtkArgSetFunc ##### -->
473 <para>
474 Define a function pointer.  Deprecated.
475 </para>
476
477 @object: 
478 @arg: 
479 @arg_id: 
480
481 <!-- ##### STRUCT GtkCellRendererTextPixbuf ##### -->
482 <para>
483
484 </para>
485
486 @parent: 
487
488 <!-- ##### ARG GtkColorSelection:previous-alpha ##### -->
489 <para>
490
491 </para>
492
493
494 <!-- ##### ARG GtkColorSelection:previous-color ##### -->
495 <para>
496
497 </para>
498
499
500 <!-- ##### SIGNAL GtkContainer::focus ##### -->
501 <para>
502
503 </para>
504
505 @container: the object which received the signal.
506 @direction: 
507 @Returns: 
508
509 <!-- ##### ARG GtkContainer:reallocate-redraws ##### -->
510 <para>
511
512 </para>
513
514
515 <!-- ##### STRUCT GtkData ##### -->
516 <para>
517 The #GtkData-struct struct contains no public fields.
518 </para>
519
520
521 <!-- ##### SIGNAL GtkData::disconnect ##### -->
522 <para>
523 Emitted to notify any views on the #GtkData object to disconnect from it,
524 possibly because the #GtkData object is about to be destroyed.
525 </para>
526
527 @data: the object which received the signal.
528
529 <!-- ##### SIGNAL GtkEditable::activate ##### -->
530 <para>
531 Indicates that the user has activated the widget
532 in some fashion. Generally, this will be done
533 with a keystroke. (The default binding for this
534 action is Return for #GtkEntry and
535 Control-Return for #GtkText.)
536 </para>
537
538 @editable: the object which received the signal.
539
540 <!-- ##### SIGNAL GtkEditable::changed ##### -->
541 <para>
542 Indicates that the user has changed the contents
543 of the widget.
544 </para>
545
546 @editable: the object which received the signal.
547
548 <!-- ##### SIGNAL GtkEditable::copy-clipboard ##### -->
549 <para>
550 An action signal. Causes the characters in the current selection to
551 be copied to the clipboard.
552 </para>
553
554 @editable: the object which received the signal.
555
556 <!-- ##### SIGNAL GtkEditable::cut-clipboard ##### -->
557 <para>
558 An action signal. Causes the characters in the current
559 selection to be copied to the clipboard and then deleted from
560 the widget.
561 </para>
562
563 @editable: the object which received the signal.
564
565 <!-- ##### SIGNAL GtkEditable::delete-text ##### -->
566 <para>
567 This signal is emitted when text is deleted from
568 the widget by the user. The default handler for
569 this signal will normally be responsible for inserting
570 the text, so by connecting to this signal and then
571 stopping the signal with gtk_signal_emit_stop(), it
572 is possible to modify the inserted text, or prevent
573 it from being inserted entirely. The @start_pos
574 and @end_pos parameters are interpreted as for
575 gtk_editable_delete_text()
576 </para>
577
578 @editable: the object which received the signal.
579 @start_pos: the starting position.
580 @end_pos: the end position.
581
582 <!-- ##### SIGNAL GtkEditable::insert-text ##### -->
583 <para>
584 This signal is emitted when text is inserted into
585 the widget by the user. The default handler for
586 this signal will normally be responsible for inserting
587 the text, so by connecting to this signal and then
588 stopping the signal with gtk_signal_emit_stop(), it
589 is possible to modify the inserted text, or prevent
590 it from being inserted entirely.
591 </para>
592
593 @editable: the object which received the signal.
594 @new_text: the new text to insert.
595 @new_text_length: the length of the new text.
596 @position: the position at which to insert the new text.
597            this is an in-out paramter. After the signal
598            emission is finished, it should point after   
599            the newly inserted text.
600
601 <!-- ##### SIGNAL GtkEditable::kill-char ##### -->
602 <para>
603 An action signal. Delete a single character.
604 </para>
605
606 @editable: the object which received the signal.
607 @direction: the direction in which to delete. Positive
608    indicates forward deletion, negative, backwards deletion.
609
610 <!-- ##### SIGNAL GtkEditable::kill-line ##### -->
611 <para>
612 An action signal. Delete a single line.
613 </para>
614
615 @editable: the object which received the signal.
616 @direction: the direction in which to delete. Positive
617    indicates forward deletion, negative, backwards deletion.
618
619 <!-- ##### SIGNAL GtkEditable::kill-word ##### -->
620 <para>
621 An action signal. Delete a single word.
622 </para>
623
624 @editable: the object which received the signal.
625 @direction: the direction in which to delete. Positive
626    indicates forward deletion, negative, backwards deletion.
627
628 <!-- ##### SIGNAL GtkEditable::move-cursor ##### -->
629 <para>
630 An action signal. Move the cursor position.
631 </para>
632
633 @editable: the object which received the signal.
634 @x: horizontal distance to move the cursor.
635 @y: vertical distance to move the cursor.
636
637 <!-- ##### SIGNAL GtkEditable::move-page ##### -->
638 <para>
639 An action signal. Move the cursor by pages.
640 </para>
641
642 @editable: the object which received the signal.
643 @x: Number of pages to move the cursor horizontally.
644 @y: Number of pages to move the cursor vertically.
645
646 <!-- ##### SIGNAL GtkEditable::move-to-column ##### -->
647 <para>
648 An action signal. Move the cursor to the given column.
649 </para>
650
651 @editable: the object which received the signal.
652 @column: the column to move to. (A negative value indicates
653          the last column)
654
655 <!-- ##### SIGNAL GtkEditable::move-to-row ##### -->
656 <para>
657 An action signal. Move the cursor to the given row.
658 </para>
659
660 @editable: the object which received the signal.
661 @row: the row to move to. (A negative value indicates 
662       the last row)
663
664 <!-- ##### SIGNAL GtkEditable::move-word ##### -->
665 <para>
666 An action signal. Move the cursor by words.
667 </para>
668
669 @editable: the object which received the signal.
670 @num_words: The number of words to move the
671 cursor. (Can be negative).
672
673 <!-- ##### SIGNAL GtkEditable::paste-clipboard ##### -->
674 <para>
675 An action signal. Causes the contents of the clipboard to
676 be pasted into the editable widget at the current cursor
677 position.
678 </para>
679
680 @editable: the object which received the signal.
681
682 <!-- ##### SIGNAL GtkEditable::set-editable ##### -->
683 <para>
684 Determines if the user can edit the text in the editable
685 widget or not. This is meant to be overriden by 
686 child classes and should not generally useful to
687 applications.
688 </para>
689
690 @editable: the object which received the signal.
691 @is_editable: %TRUE if the user is allowed to edit the text
692   in the widget.
693
694 <!-- ##### ARG GtkEditable:editable ##### -->
695 <para>
696 A boolean indicating whether the widget is editable by
697 the user.
698 </para>
699
700
701 <!-- ##### ARG GtkEditable:text-position ##### -->
702 <para>
703 The position of the cursor.
704 </para>
705
706
707 <!-- ##### USER_FUNCTION GtkEmissionHook ##### -->
708 <para>
709 A simple function pointer to get invoked when the
710 signal is emitted.  This allows you tie a hook to the signal type,
711 so that it will trap all emissions of that signal, from any object.
712 </para>
713 <para>
714 You may not attach these to signals created with the
715 #GTK_RUN_NO_HOOKS flag.
716 </para>
717
718 @object: 
719 @signal_id: 
720 @n_params: 
721 @params: 
722 @data: 
723 @Returns: 
724
725 <!-- ##### ENUM GtkFontFilterType ##### -->
726 <para>
727 A set of bit flags used to specify the filter being set
728 when calling gtk_font_selection_dialog_set_filter() or
729 gtk_font_selection_set_filter().
730 </para>
731
732 @GTK_FONT_FILTER_BASE: the base filter, which can't be changed by the user.
733 @GTK_FONT_FILTER_USER: the user filter, which can be changed from within the
734 'Filter' page of the #GtkFontSelection widget.
735
736 <!-- ##### ENUM GtkFontType ##### -->
737 <para>
738 A set of bit flags used to specify the type of fonts shown
739 when calling gtk_font_selection_dialog_set_filter() or
740 gtk_font_selection_set_filter().
741 </para>
742
743 @GTK_FONT_BITMAP: bitmap fonts.
744 @GTK_FONT_SCALABLE: scalable fonts.
745 @GTK_FONT_SCALABLE_BITMAP: scaled bitmap fonts.
746 @GTK_FONT_ALL: a bitwise combination of all of the above.
747
748 <!-- ##### ARG GtkHScale:adjustment ##### -->
749 <para>
750 the #GtkAdjustment which sets the range of the scale.
751 </para>
752
753
754 <!-- ##### ARG GtkHScrollbar:adjustment ##### -->
755 <para>
756
757 </para>
758
759
760 <!-- ##### STRUCT GtkIMContextSimple ##### -->
761 <para>
762
763 </para>
764
765 @object: 
766 @tables: 
767 @compose_buffer: 
768 @tentative_match: 
769 @tentative_match_len: 
770
771 <!-- ##### USER_FUNCTION GtkImageLoader ##### -->
772 <para>
773 A GtkImageLoader is used to load a filename found in
774 a RC file.
775 </para>
776
777 @window: the window for creating image
778 @colormap: the colormap for this image
779 @mask: a pointer to the location to store the mask
780 @transparent_color: the transparent color for the image
781 @filename: filename to load
782 @Returns: a #GtkPixmap representing @filename
783
784 <!-- ##### ARG GtkLabel:accel-keyval ##### -->
785 <para>
786
787 </para>
788
789
790 <!-- ##### ARG GtkObject:object-signal ##### -->
791 <para>
792 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
793 the signal to the object, so that the user data and objects
794 and swapped when the signal handler is invoked.
795 </para>
796 <para>
797 This is useful for handlers that are primarily notifying
798 other objects and could just invoke an already existing function
799 if the parameters were swapped.
800 See gtk_signal_connect_object() for more details.
801 </para>
802
803
804 <!-- ##### ARG GtkObject:object-signal-after ##### -->
805 <para>
806 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
807 the signal to the object, so that the user data and objects
808 and swapped when the signal handler is invoked,
809 and so that the handler is invoked after all others.
810 </para>
811 <para>
812 See gtk_signal_connect_object_after() for more details.
813 </para>
814
815
816 <!-- ##### ARG GtkObject:signal ##### -->
817 <para>
818 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
819 the signal to the object.
820 </para>
821
822
823 <!-- ##### ARG GtkObject:signal-after ##### -->
824 <para>
825 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
826 the signal to the object, so that the signal is always run
827 after other user handlers and the default handler.
828 </para>
829
830
831 <!-- ##### ARG GtkPacker:default-border-width ##### -->
832 <para>
833
834 </para>
835
836
837 <!-- ##### ARG GtkPacker:default-ipad-x ##### -->
838 <para>
839
840 </para>
841
842
843 <!-- ##### ARG GtkPacker:default-ipad-y ##### -->
844 <para>
845
846 </para>
847
848
849 <!-- ##### ARG GtkPacker:default-pad-x ##### -->
850 <para>
851
852 </para>
853
854
855 <!-- ##### ARG GtkPacker:default-pad-y ##### -->
856 <para>
857
858 </para>
859
860
861 <!-- ##### ARG GtkPacker:spacing ##### -->
862 <para>
863
864 </para>
865
866
867 <!-- ##### ARG GtkPaned:handle-size ##### -->
868 <para>
869
870 </para>
871
872
873 <!-- ##### STRUCT GtkPatternSpec ##### -->
874 <para>
875
876 </para>
877
878 @match_type: 
879 @pattern_length: 
880 @pattern: 
881 @pattern_reversed: 
882 @user_data: 
883 @seq_id: 
884
885 <!-- ##### ENUM GtkPrivateFlags ##### -->
886 <para>
887
888 </para>
889
890 @PRIVATE_GTK_USER_STYLE: 
891 @PRIVATE_GTK_RESIZE_PENDING: 
892 @PRIVATE_GTK_RESIZE_NEEDED: 
893 @PRIVATE_GTK_LEAVE_PENDING: 
894 @PRIVATE_GTK_HAS_SHAPE_MASK: 
895 @PRIVATE_GTK_IN_REPARENT: 
896 @PRIVATE_GTK_DIRECTION_SET: 
897 @PRIVATE_GTK_DIRECTION_LTR: 
898
899 <!-- ##### ARG GtkScrolledWindow:shadow ##### -->
900 <para>
901
902 </para>
903
904
905 <!-- ##### USER_FUNCTION GtkSignalDestroy ##### -->
906 <para>
907 A function which you can use to clean up when the
908 signal handler is destroyed.
909 </para>
910 <para>
911 For example, if your handler requires a few variables
912 that you made into a struct and allocated (using g_new()
913 or something), then you will probably want to free
914 it as soon as the hook is destroyed.  This will
915 allow you to do that. (For this in particular
916 it is convenient to pass g_free() as a #GtkSignalDestroy
917 function).
918 </para>
919
920 @data: The user data associated with the hook that is being
921 destroyed.
922
923 <!-- ##### USER_FUNCTION GtkSignalMarshal ##### -->
924 <para>
925 This is currently a hack left in for a scheme wrapper library.
926 It may be removed.
927 </para>
928 <para>
929 Don't use it.
930 </para>
931
932 @object: The object which emits the signal.
933 @data: The user data associated with the hook.
934 @nparams: The number of parameters to the function.
935 @args: The actual values of the arguments.
936 @arg_types: The types of the arguments.
937 @return_type: The type of the return value from the function
938 or #GTK_TYPE_NONE for no return value.
939
940 <!-- ##### STRUCT GtkSignalQuery ##### -->
941 <para>
942 This structure contains all the information about a particular
943 signal:  its name, the type it affects, the signature of the handlers,
944 and its unique identifying integer.
945 </para>
946
947 @object_type: 
948 @signal_id: 
949 @signal_name: 
950 @is_user_signal: 
951 @signal_flags: 
952 @return_val: 
953 @nparams: 
954 @params: 
955
956 <!-- ##### ARG GtkSpinButton:shadow-type ##### -->
957 <para>
958 the type of border that surrounds the arrows of a spin button.
959 </para>
960
961
962 <!-- ##### STRUCT GtkStatusbarMsg ##### -->
963 <para>
964 Holds the data for a statusbar message. <structfield>text</structfield> holds the actual text string. <structfield>context_id</structfield> is the context that this message is associated with, and <structfield>message_id</structfield> is this particular message's identifier. However, these fields should not be modified directly.
965 </para>
966
967 @text: 
968 @context_id: 
969 @message_id: 
970
971 <!-- ##### ARG GtkTextTag:justify ##### -->
972 <para>
973 A #GtkJustification for the text. This is only used when the tag is
974 applied to the first character in a paragraph.
975 </para>
976
977
978 <!-- ##### ARG GtkTextTag:left-wrapped-line-margin ##### -->
979 <para>
980 Pixel width of the left margin of the text for lines after the first
981 line in a wrapped paragraph.
982 </para>
983
984
985 <!-- ##### ARG GtkTextTag:left-wrapped-line-margin-set ##### -->
986 <para>
987
988 </para>
989
990
991 <!-- ##### ARG GtkTextTag:offset ##### -->
992 <para>
993 Pixels to offset the text horizontally or vertically, useful to
994 produce superscript and subscript.
995 </para>
996
997
998 <!-- ##### ARG GtkTextView:justify ##### -->
999 <para>
1000
1001 </para>
1002
1003
1004 <!-- ##### STRUCT GtkTreeSelectionClass ##### -->
1005 <para>
1006
1007 </para>
1008
1009
1010 <!-- ##### ENUM GtkTreeSelectionMode ##### -->
1011 <para>
1012
1013 </para>
1014
1015 @GTK_TREE_SELECTION_SINGLE: 
1016 @GTK_TREE_SELECTION_MULTI: 
1017
1018 <!-- ##### STRUCT GtkTreeView ##### -->
1019 <para>
1020
1021 </para>
1022
1023 @parent: 
1024 @priv: 
1025
1026 <!-- ##### ARG GtkVScale:adjustment ##### -->
1027 <para>
1028 the #GtkAdjustment which sets the range of the scale.
1029 </para>
1030
1031
1032 <!-- ##### ARG GtkVScrollbar:adjustment ##### -->
1033 <para>
1034
1035 </para>
1036
1037
1038 <!-- ##### SIGNAL GtkWidget::activate-mnemonic ##### -->
1039 <para>
1040
1041 </para>
1042
1043 @widget: the object which received the signal.
1044 @arg1: 
1045 @Returns: 
1046
1047 <!-- ##### SIGNAL GtkWidget::debug-msg ##### -->
1048 <para>
1049
1050 </para>
1051
1052 @widget: the object which received the signal.
1053 @message: 
1054
1055 <!-- ##### SIGNAL GtkWidget::draw ##### -->
1056 <para>
1057
1058 </para>
1059
1060 @widget: the object which received the signal.
1061 @area: 
1062
1063 <!-- ##### SIGNAL GtkWidget::draw-default ##### -->
1064 <para>
1065
1066 </para>
1067
1068 @widget: the object which received the signal.
1069
1070 <!-- ##### SIGNAL GtkWidget::draw-focus ##### -->
1071 <para>
1072
1073 </para>
1074
1075 @widget: the object which received the signal.
1076
1077 <!-- ##### ARG GtkWidget:height ##### -->
1078 <para>
1079
1080 </para>
1081
1082
1083 <!-- ##### ARG GtkWidget:width ##### -->
1084 <para>
1085
1086 </para>
1087
1088
1089 <!-- ##### ARG GtkWidget:x ##### -->
1090 <para>
1091
1092 </para>
1093
1094
1095 <!-- ##### ARG GtkWidget:y ##### -->
1096 <para>
1097
1098 </para>
1099
1100
1101 <!-- ##### ARG GtkWindow:auto-shrink ##### -->
1102 <para>
1103 If the window shrinks automatically when widgets within it shrink.
1104 </para>
1105
1106
1107 <!-- ##### ARG GtkWindow:icon-list ##### -->
1108 <para>
1109
1110 </para>
1111
1112
1113 <!-- ##### FUNCTION gtk_accel_group_create_add ##### -->
1114 <para>
1115
1116 </para>
1117
1118 @class_type: 
1119 @signal_flags: 
1120 @handler_offset: 
1121 @Returns: 
1122
1123 <!-- ##### FUNCTION gtk_accel_group_create_remove ##### -->
1124 <para>
1125
1126 </para>
1127
1128 @class_type: 
1129 @signal_flags: 
1130 @handler_offset: 
1131 @Returns: 
1132
1133 <!-- ##### FUNCTION gtk_accel_group_entries_from_object ##### -->
1134 <para>
1135
1136 </para>
1137
1138 @object: 
1139 @Returns: 
1140
1141 <!-- ##### FUNCTION gtk_accel_group_get_entry ##### -->
1142 <para>
1143
1144 </para>
1145
1146 @accel_group: 
1147 @accel_key: 
1148 @accel_mods: 
1149 @Returns: 
1150
1151 <!-- ##### FUNCTION gtk_accel_group_handle_add ##### -->
1152 <para>
1153
1154 </para>
1155
1156 @object: 
1157 @accel_signal_id: 
1158 @accel_group: 
1159 @accel_key: 
1160 @accel_mods: 
1161 @accel_flags: 
1162
1163 <!-- ##### FUNCTION gtk_accel_group_handle_remove ##### -->
1164 <para>
1165
1166 </para>
1167
1168 @object: 
1169 @accel_group: 
1170 @accel_key: 
1171 @accel_mods: 
1172
1173 <!-- ##### FUNCTION gtk_accel_group_lock_entry ##### -->
1174 <para>
1175
1176 </para>
1177
1178 @accel_group: 
1179 @accel_key: 
1180 @accel_mods: 
1181
1182 <!-- ##### FUNCTION gtk_accel_group_unlock_entry ##### -->
1183 <para>
1184
1185 </para>
1186
1187 @accel_group: 
1188 @accel_key: 
1189 @accel_mods: 
1190
1191 <!-- ##### FUNCTION gtk_accel_groups_from_object ##### -->
1192 <para>
1193
1194 </para>
1195
1196 @object: 
1197 @Returns: 
1198
1199 <!-- ##### FUNCTION gtk_arg_copy ##### -->
1200 <para>
1201 It will either copy data into an existing argument or allocate a new argument
1202 and copy the data.  Strings are duplicated.  All other pointers and
1203 values are copied (shallowly-- that is the pointers themselves are
1204 copied, not the data they point to.)
1205 </para>
1206 <para>
1207 You should call gtk_arg_reset() on dest_arg before calling this
1208 if the argument may contain string data that you want freed.
1209 </para>
1210
1211 @src_arg: the argument to duplicate.
1212 @dest_arg: the argument to copy over (or NULL to create a new #GtkArg).
1213 @Returns: the new #GtkArg (or dest_arg, if it was not NULL).
1214
1215 <!-- ##### FUNCTION gtk_arg_free ##### -->
1216 <para>
1217 Frees the argument, and optionally its contents.
1218 </para>
1219
1220 @arg: the argument to free.
1221 @free_contents: whether to free the string, if it is a string.
1222
1223 <!-- ##### FUNCTION gtk_arg_get_info ##### -->
1224 <para>
1225 Private: get information about an argument.
1226 </para>
1227
1228 @object_type: the type of object.
1229 @arg_info_hash_table: the hashtable of #GtkArgInfos.
1230 @arg_name: the name of the argument to lookup.
1231 @info_p: the argument info.
1232 @Returns: an error message on failure, or NULL otherwise.
1233
1234 <!-- ##### FUNCTION gtk_arg_info_equal ##### -->
1235 <para>
1236 A #GCompareFunc for hashing #GtkArgInfos.
1237 </para>
1238
1239 @arg_info_1: a #GtkArgInfo.
1240 @arg_info_2: a #GtkArgInfo.
1241 @Returns: whether the arguments are the same.
1242
1243 <!-- ##### FUNCTION gtk_arg_info_hash ##### -->
1244 <para>
1245 A #GHashFunc for hashing #GtkArgInfos.
1246 </para>
1247
1248 @arg_info: a #GtkArgInfo.
1249 @Returns: a hash value for that #GtkArgInfo.
1250
1251 <!-- ##### FUNCTION gtk_arg_name_strip_type ##### -->
1252 <para>
1253 Given a fully qualified argument name (e.g. "GtkButton::label")
1254 it returns just the argument name (e.g. "label") unless
1255 the argument name was invalid, in which case it returns NULL.
1256 </para>
1257
1258 @arg_name: the fully-qualified argument name.
1259 @Returns: the base argument name.
1260
1261 <!-- ##### FUNCTION gtk_arg_new ##### -->
1262 <para>
1263 Creates a new argument of a certain type, set to 0 or NULL.
1264 </para>
1265
1266 @arg_type: the type of the argument.
1267 @Returns: the newly created #GtkArg.
1268
1269 <!-- ##### FUNCTION gtk_arg_reset ##### -->
1270 <para>
1271
1272 </para>
1273
1274 @arg: 
1275
1276 <!-- ##### FUNCTION gtk_arg_to_valueloc ##### -->
1277 <para>
1278
1279 </para>
1280
1281 @arg: 
1282 @value_pointer: 
1283
1284 <!-- ##### FUNCTION gtk_arg_type_new_static ##### -->
1285 <para>
1286 Create a new argument registered with a class.
1287 </para>
1288
1289 @base_class_type: the basic type having the arguments, almost alway
1290 GTK_TYPE_OBJECT, except if your defining a different type argument
1291 that gets a different namespace.  #GtkContainer does this to define
1292 per-child arguments of the container.
1293 @arg_name: name of the argument to create.  (must be a static constant string)
1294 @class_n_args_offset: offset into the base class structure that tells
1295 the number of arguments.
1296 @arg_info_hash_table: hashtable of #GtkArgInfos.
1297 @arg_type: type of the argument.
1298 @arg_flags: flags of the argument.
1299 @arg_id: ???
1300 @Returns: the new #GtkArgInfo.
1301
1302 <!-- ##### FUNCTION gtk_arg_values_equal ##### -->
1303 <para>
1304
1305 </para>
1306
1307 @arg1: 
1308 @arg2: 
1309 @Returns: 
1310
1311 <!-- ##### FUNCTION gtk_args_collect ##### -->
1312 <para>
1313 Private:  given a hashtable of argument information it takes a vararg
1314 list and parses it into arguments (in the form of lists of #GtkArgs
1315 and lists of #GtkArgInfos.
1316 </para>
1317 <para>
1318 The list of arguments starts with first_arg_name then the first argument's
1319 value.  Followed by any number of additional name/argument pairs,
1320 terminated with NULL.
1321 </para>
1322
1323 @object_type: the type of object we are collecting arguments for.
1324 @arg_info_hash_table: a hashtable mapping from names of arguments
1325 to their #GtkArgInfos.
1326 @arg_list_p: a returned list of arguments obtained from parsing the
1327 varargs.
1328 @info_list_p: a returned list of the #GtkArgInfos.
1329 @first_arg_name: the name of the first argument.
1330 @var_args: a va_list containing the value of the first argument,
1331 followed by name/value pairs, followed by NULL.
1332 @Returns: an error message on failure, or NULL otherwise.
1333
1334 <!-- ##### FUNCTION gtk_args_collect_cleanup ##### -->
1335 <para>
1336 Private: erase lists of arguments returned from gtk_args_collect().
1337 </para>
1338
1339 @arg_list: arg_list_p returned from gtk_args_collect().
1340 @info_list: info_list_p returned from gtk_args_collect().
1341
1342 <!-- ##### FUNCTION gtk_args_query ##### -->
1343 <para>
1344 Private: from a class type and its arginfo hashtable,
1345 get an array of #GtkArgs that this object accepts.
1346 </para>
1347
1348 @class_type: the class type.
1349 @arg_info_hash_table: the hashtable of #GtkArgInfos.
1350 @arg_flags: returned array of argument flags.
1351 @n_args_p: the number of arguments this object accepts.
1352 @Returns: the array of arguments (or NULL on error).
1353
1354 <!-- ##### FUNCTION gtk_button_box_child_requisition ##### -->
1355 <para>\r
1356 This is an internally used function and should never be called from an\r
1357 application.\r
1358 </para>
1359
1360 @widget: 
1361 @nvis_children: 
1362 @width: 
1363 @height: 
1364
1365 <!-- ##### FUNCTION gtk_button_box_get_child_ipadding_default ##### -->
1366 <para>\r
1367 The internal padding of a button is the amount of space between the outside\r
1368 of the button and the widget it contains. This function gets the default\r
1369 amount of horizontal and vertical padding, placing the results in @ipad_x\r
1370 and @ipad_y, respectively.\r
1371 </para>
1372
1373 @ipad_x: the default horizontal internal button padding.
1374 @ipad_y: the default vertical internal button padding.
1375
1376 <!-- ##### FUNCTION gtk_button_box_get_child_size_default ##### -->
1377 <para>\r
1378 Retrieves the default minimum width and height for all button boxes, and\r
1379 places the values in @min_width and @min_height, respectively.\r
1380 </para>
1381
1382 @min_width: the default minimum width of a child widget.
1383 @min_height: the default minimum height of a child widget.
1384
1385 <!-- ##### FUNCTION gtk_button_box_set_child_ipadding_default ##### -->
1386 <para>\r
1387 Sets the default number of pixels that pad each button in every button box.\r
1388 </para>
1389
1390 @ipad_x: new default horizontal padding.
1391 @ipad_y: new default vertical padding.
1392
1393 <!-- ##### FUNCTION gtk_button_box_set_child_size_default ##### -->
1394 <para>\r
1395 Sets the default size of child buttons.\r
1396 </para>
1397
1398 @min_width: minimum default width for child buttons.
1399 @min_height: minimum default height for child buttons.
1400
1401 <!-- ##### FUNCTION gtk_button_new_accel ##### -->
1402 <para>
1403
1404 </para>
1405
1406 @uline_label: 
1407 @accel_group: 
1408 @Returns: 
1409
1410 <!-- ##### FUNCTION gtk_button_new_stock ##### -->
1411 <para>
1412
1413 </para>
1414
1415 @stock_id: 
1416 @accel_group: 
1417 @Returns: 
1418
1419 <!-- ##### FUNCTION gtk_cell_renderer_event ##### -->
1420 <para>
1421
1422 </para>
1423
1424 @cell: 
1425 @event: 
1426 @widget: 
1427 @path: 
1428 @background_area: 
1429 @cell_area: 
1430 @flags: 
1431 @Returns: 
1432
1433 <!-- ##### FUNCTION gtk_cell_renderer_text_pixbuf_new ##### -->
1434 <para>
1435
1436 </para>
1437
1438 @Returns: 
1439
1440 <!-- ##### FUNCTION gtk_clist_construct ##### -->
1441 <para>
1442 Initializes a previously allocated #GtkCList widget for use.  This should not
1443 normally be used to create a #GtkCList widget.  Use gtk_clist_new() instead.
1444 </para>
1445
1446 @clist: A pointer to an uninitialized #GtkCList widget.
1447 @columns: The number of columns the #GtkCList should have.
1448 @titles: An array of strings that should be used as the titles i
1449 of the columns.  There should be enough strings in the array for
1450 the number of columns specified.
1451
1452 <!-- ##### FUNCTION gtk_color_selection_get_old_color ##### -->
1453 <para>
1454
1455 </para>
1456
1457 @colorsel: 
1458 @color: 
1459
1460 <!-- ##### FUNCTION gtk_color_selection_get_use_opacity ##### -->
1461 <para>
1462
1463 </para>
1464
1465 @colorsel: 
1466 @Returns: 
1467
1468 <!-- ##### FUNCTION gtk_color_selection_get_use_palette ##### -->
1469 <para>
1470
1471 </para>
1472
1473 @colorsel: 
1474 @Returns: 
1475
1476 <!-- ##### FUNCTION gtk_color_selection_set_old_color ##### -->
1477 <para>
1478
1479 </para>
1480
1481 @colorsel: 
1482 @color: 
1483
1484 <!-- ##### FUNCTION gtk_color_selection_set_opacity ##### -->
1485 <para>
1486 Controls whether opacity can be set with the #GtkColorSelection.
1487 If this functionality is enabled, the necessary additional widgets
1488 are added to the #GtkColorSelection and the opacity value can be
1489 retrieved via the fourth value in the color array returned by
1490 the gtk_color_selection_get_color() function.
1491 </para>
1492
1493 @colorsel: a #GtkColorSelection.
1494 @use_opacity: a boolean indicating whether the opacity selection
1495 is enabled.
1496
1497 <!-- ##### FUNCTION gtk_color_selection_set_use_opacity ##### -->
1498 <para>
1499
1500 </para>
1501
1502 @colorsel: 
1503 @use_opacity: 
1504
1505 <!-- ##### FUNCTION gtk_color_selection_set_use_palette ##### -->
1506 <para>
1507
1508 </para>
1509
1510 @colorsel: 
1511 @use_palette: 
1512
1513 <!-- ##### FUNCTION gtk_container_add_child_arg_type ##### -->
1514 <para>
1515
1516 </para>
1517
1518 @arg_name: 
1519 @arg_type: 
1520 @arg_flags: 
1521 @arg_id: 
1522
1523 <!-- ##### FUNCTION gtk_container_add_with_args ##### -->
1524 <para>
1525
1526 </para>
1527
1528 @container: 
1529 @widget: 
1530 @first_arg_name: 
1531 @Varargs: 
1532
1533 <!-- ##### FUNCTION gtk_container_addv ##### -->
1534 <para>
1535
1536 </para>
1537
1538 @container: 
1539 @widget: 
1540 @n_args: 
1541 @args: 
1542
1543 <!-- ##### FUNCTION gtk_container_arg_get ##### -->
1544 <para>
1545
1546 </para>
1547
1548 @container: 
1549 @child: 
1550 @arg: 
1551 @info: 
1552
1553 <!-- ##### FUNCTION gtk_container_arg_set ##### -->
1554 <para>
1555
1556 </para>
1557
1558 @container: 
1559 @child: 
1560 @arg: 
1561 @info: 
1562
1563 <!-- ##### FUNCTION gtk_container_child_arg_get_info ##### -->
1564 <para>
1565
1566 </para>
1567
1568 @object_type: 
1569 @arg_name: 
1570 @info_p: 
1571 @Returns: 
1572
1573 <!-- ##### FUNCTION gtk_container_child_args_collect ##### -->
1574 <para>
1575
1576 </para>
1577
1578 @object_type: 
1579 @arg_list_p: 
1580 @info_list_p: 
1581 @first_arg_name: 
1582 @args: 
1583 @Returns: 
1584
1585 <!-- ##### FUNCTION gtk_container_child_getv ##### -->
1586 <para>
1587
1588 </para>
1589
1590 @container: 
1591 @child: 
1592 @n_args: 
1593 @args: 
1594
1595 <!-- ##### FUNCTION gtk_container_child_setv ##### -->
1596 <para>
1597
1598 </para>
1599
1600 @container: 
1601 @child: 
1602 @n_args: 
1603 @args: 
1604
1605 <!-- ##### FUNCTION gtk_container_dequeue_resize_handler ##### -->
1606 <para>
1607
1608 </para>
1609
1610 @container: 
1611
1612 <!-- ##### FUNCTION gtk_container_focus ##### -->
1613 <para>
1614
1615 </para>
1616
1617 @container: 
1618 @direction: 
1619 @Returns: 
1620
1621 <!-- ##### FUNCTION gtk_container_query_child_args ##### -->
1622 <para>
1623
1624 </para>
1625
1626 @class_type: 
1627 @arg_flags: 
1628 @nargs: 
1629 @Returns: 
1630
1631 <!-- ##### FUNCTION gtk_ctree_construct ##### -->
1632 <para>
1633 This function is not usually used by users.
1634 </para>
1635
1636 @ctree: 
1637 @columns: 
1638 @tree_column: 
1639 @titles: 
1640
1641 <!-- ##### FUNCTION gtk_drag_dest_handle_event ##### -->
1642 <para>
1643 Internal function.
1644 </para>
1645
1646 @toplevel: 
1647 @event: 
1648
1649 <!-- ##### FUNCTION gtk_drag_source_handle_event ##### -->
1650 <para>
1651 Internal function.
1652 </para>
1653
1654 @widget: 
1655 @event: 
1656
1657 <!-- ##### FUNCTION gtk_editable_changed ##### -->
1658 <para>
1659 Causes the "changed" signal to be emitted.
1660 </para>
1661
1662 @editable: a #GtkEditable widget.
1663
1664 <!-- ##### FUNCTION gtk_editable_claim_selection ##### -->
1665 <para>
1666 Claim or disclaim ownership of the PRIMARY X selection.
1667 </para>
1668
1669 @editable: a #GtkEditable widget.
1670 @claim: if %TRUE, claim the selection, otherwise, disclaim it.
1671 @time: the timestamp for claiming the selection.
1672
1673 <!-- ##### FUNCTION gtk_font_selection_dialog_set_filter ##### -->
1674 <para>
1675 Sets one of the two font filters, to limit the fonts shown.
1676 </para>
1677
1678 @fsd: a #GtkFontSelectionDialog.
1679 @filter_type: which of the two font filters to set, either
1680 #GTK_FONT_FILTER_BASE or #GTK_FONT_FILTER_USER. The user filter
1681 can be changed by the user, but the base filter is permanent.
1682 @font_type: the types of font to be shown. This is a bitwise combination of
1683 #GTK_FONT_BITMAP, #GTK_FONT_SCALABLE and #GTK_FONT_SCALABLE_BITMAP,
1684 or #GTK_FONT_ALL to show all three font types.
1685 @foundries: a NULL-terminated array of strings containing foundry names which
1686 will be shown, or NULL to show all foundries.
1687 @weights: a NULL-terminated array of strings containing weight names which
1688 will be shown, or NULL to show all weights.
1689 @slants: a NULL-terminated array of strings containing slant names which
1690 will be shown, or NULL to show all slants.
1691 @setwidths: a NULL-terminated array of strings containing setwidth names which
1692 will be shown, or NULL to show all setwidths.
1693 @spacings: a NULL-terminated array of strings containing spacings which
1694 will be shown, or NULL to show all spacings.
1695 @charsets: a NULL-terminated array of strings containing charset names which
1696 will be shown, or NULL to show all charsets.
1697
1698 <!-- ##### FUNCTION gtk_font_selection_set_filter ##### -->
1699 <para>
1700 Sets one of the two font filters, to limit the fonts shown.
1701 </para>
1702
1703 @fontsel: a #GtkFontSelection.
1704 @filter_type: which of the two font filters to set, either
1705 #GTK_FONT_FILTER_BASE or #GTK_FONT_FILTER_USER. The user filter
1706 can be changed by the user, but the base filter is permanent.
1707 @font_type: the types of font to be shown. This is a bitwise combination of
1708 #GTK_FONT_BITMAP, #GTK_FONT_SCALABLE and #GTK_FONT_SCALABLE_BITMAP,
1709 or #GTK_FONT_ALL to show all three font types.
1710 @foundries: a NULL-terminated array of strings containing foundry names which
1711 will be shown, or NULL to show all foundries.
1712 @weights: a NULL-terminated array of strings containing weight names which
1713 will be shown, or NULL to show all weights.
1714 @slants: a NULL-terminated array of strings containing slant names which
1715 will be shown, or NULL to show all slants.
1716 @setwidths: a NULL-terminated array of strings containing setwidth names which
1717 will be shown, or NULL to show all setwidths.
1718 @spacings: a NULL-terminated array of strings containing spacings which
1719 will be shown, or NULL to show all spacings.
1720 @charsets: a NULL-terminated array of strings containing charset names which
1721 will be shown, or NULL to show all charsets.
1722
1723 <!-- ##### FUNCTION gtk_identifier_get_type ##### -->
1724 <para>
1725 Get the type of GtkIdentifier.
1726 </para>
1727
1728 @Returns: GtkType -- the enumerated type of something.
1729
1730 <!-- ##### FUNCTION gtk_image_menu_item_add_image ##### -->
1731 <para>
1732
1733 </para>
1734
1735 @image_menu_item: 
1736 @child: 
1737
1738 <!-- ##### FUNCTION gtk_image_menu_item_get_type ##### -->
1739 <para>
1740
1741 </para>
1742
1743 @Returns: 
1744
1745 <!-- ##### FUNCTION gtk_label_set_markup_with_accel ##### -->
1746 <para>
1747
1748 </para>
1749
1750 @label: 
1751 @str: 
1752 @Returns: 
1753
1754 <!-- ##### FUNCTION gtk_list_store_new_with_types ##### -->
1755 <para>
1756
1757 </para>
1758
1759 @n_columns: 
1760 @Varargs: 
1761 @Returns: 
1762
1763 <!-- ##### FUNCTION gtk_list_store_set_cell ##### -->
1764 <para>
1765
1766 </para>
1767
1768 @store: 
1769 @iter: 
1770 @column: 
1771 @value: 
1772
1773 <!-- ##### FUNCTION gtk_list_store_set_column_type ##### -->
1774 <para>
1775
1776 </para>
1777
1778 @store: 
1779 @column: 
1780 @type: 
1781
1782 <!-- ##### FUNCTION gtk_list_store_set_n_columns ##### -->
1783 <para>
1784
1785 </para>
1786
1787 @store: 
1788 @n_columns: 
1789
1790 <!-- ##### FUNCTION gtk_menu_ensure_uline_accel_group ##### -->
1791 <para>
1792
1793 </para>
1794
1795 @menu: 
1796 @Returns: 
1797
1798 <!-- ##### FUNCTION gtk_menu_get_uline_accel_group ##### -->
1799 <para>
1800
1801 </para>
1802
1803 @menu: 
1804 @Returns: 
1805
1806 <!-- ##### FUNCTION gtk_menu_item_configure ##### -->
1807 <para>
1808 Sets whether the menu item should show a submenu indicator, which is a right
1809 arrow.
1810 </para>
1811
1812 @menu_item: the menu item
1813 @show_toggle_indicator: unused
1814 @show_submenu_indicator: whether to show the arrow or not
1815
1816 <!-- ##### FUNCTION gtk_menu_item_set_placement ##### -->
1817 <para>
1818 Specifies the placement of the submenu around the menu item. The placement
1819 is usually #GTK_LEFT_RIGHT for menu items in a popup menu and
1820 #GTK_TOP_BOTTOM in menu bars.
1821 </para>
1822 <para>
1823 This function is useless in usual applications.
1824 </para>
1825
1826 @menu_item: the menu item
1827 @placement: the submenu placement
1828
1829 <!-- ##### FUNCTION gtk_object_arg_get ##### -->
1830 <para>
1831 Private function to get an argument and argument info from an object.
1832 </para>
1833
1834 @object: the object whose argument should be retrieved.
1835 @arg: the argument, for the name on input, the rest is filled on output.
1836 @info: a #GtkArgInfo structure to optionally fill in.
1837
1838 <!-- ##### FUNCTION gtk_object_arg_get_info ##### -->
1839 <para>
1840 Query information about an argument type.
1841 </para>
1842
1843 @object_type: type of object to query about.
1844 @arg_name: name of the argument.
1845 @info_p: pointer to be filled in with a pointer to the GtkArgInfo.
1846 @Returns: an error message, or NULL on success.
1847 It is the caller's responsibility to call g_free() in the event of error.
1848
1849 <!-- ##### FUNCTION gtk_object_arg_set ##### -->
1850 <para>
1851 Private function to set an argument and argument info to an object.
1852 </para>
1853
1854 @object: the object whose argument should be set.
1855 @arg: the argument.
1856 @info: infomation about this type of argument in general.
1857
1858 <!-- ##### FUNCTION gtk_object_args_collect ##### -->
1859 <para>
1860 Private: Gets an array of #GtkArgs from a va_list C structure.
1861 </para>
1862
1863 @object_type: the type of object to collect arguments for.
1864 @arg_list_p: pointer to be filled in with a list of parsed arguments.
1865 @info_list_p: optional pointer for a returned list #GtkArgInfos.
1866 @first_arg_name: name of first argument.
1867 @var_args: value of first argument, followed by more key/value pairs,
1868 terminated by NULL.
1869 @Returns: an error message, or NULL on success.
1870 It is the caller's responsibility to call g_free() in the event of error.
1871
1872 <!-- ##### FUNCTION gtk_object_class_add_signals ##### -->
1873 <para>
1874 Add an array of signals to a #GtkObjectClass.
1875 Usually this is called when registering a new type of object.
1876 </para>
1877
1878 @klass: the object class to append signals to.
1879 @signals: the signals to append.
1880 @nsignals: the number of signals being appended.
1881
1882 <!-- ##### FUNCTION gtk_object_class_user_signal_new ##### -->
1883 <para>
1884 Define a signal-handler for a new signal on an already defined
1885 object.
1886 </para>
1887 <para>
1888 See the signal documentation for more general information.
1889 </para>
1890
1891 @klass: the object class to define the signal for.
1892 @name: the name of the signal.
1893 @signal_flags: the default emission behavior for the signal.
1894 See gtk_signal_new().
1895 @marshaller: a function that will take an array of GtkArgs
1896 and invoke the appropriate handler with the normal calling
1897 conventions.
1898 @return_val: specify the return-value type for the signal
1899 (or GTK_TYPE_NONE for no return-value).
1900 @nparams: specify the number of parameters the signal
1901 receives from the caller of gtk_signal_emit().
1902 @Varargs: list of nparams #GtkTypes to pass to the signal handlers.
1903 @Returns: the signal id.  (See #GtkSignals)
1904
1905 <!-- ##### FUNCTION gtk_object_class_user_signal_newv ##### -->
1906 <para>
1907 Define a signal-handler for a new signal on an already defined
1908 object.
1909 </para>
1910
1911 @klass: the object class to define the signal for.
1912 @name: the name of the signal.
1913 @signal_flags: the default emission behavior for the signal.
1914 See gtk_signal_new().
1915 @marshaller: takes a GtkObject, a #GtkSignalFunc, and an array
1916 of arguments, and invokes the function using the appropriate
1917 calling conventions.  Usually just select a function
1918 out of gtkmarshal.h.
1919 @return_val: specify the return-value type for the signal (possibly
1920 #GTK_TYPE_NONE).
1921 @nparams: specify the number of parameters the signal
1922 receives from the caller of gtk_signal_emit().
1923 @params: array of #GtkTypes the signal handlers for this signal
1924 should have in their prototype (of length nparams).
1925 @Returns: the signal id.  (See #GtkSignals)
1926
1927 <!-- ##### FUNCTION gtk_object_constructed ##### -->
1928 <para>
1929 Mark an allocated object as constructed.
1930 This is used for situations
1931 that require precise control of the construction process.
1932 </para>
1933 <para>
1934 This is done when gtk_object_default_construct() is inadequate.
1935 In #GtkCList the need arises because #GtkCList does construction work that
1936 must happen <emphasis>after</emphasis> its derivers.  This work
1937 cannot be done in an initializer function, so an alternate
1938 constructor is mandatory.  It calls gtk_object_constructed() to
1939 indicate it has done its job, so that no other constructor will
1940 be invoked.
1941 </para>
1942 <para>
1943 Normally this function is just automatically run from
1944 gtk_object_default_construct().
1945 </para>
1946
1947 @object: object which has been constructed.  This is usually
1948 done automatically by gtk_object_new() and gtk_object_newv().
1949
1950 <!-- ##### FUNCTION gtk_object_default_construct ##### -->
1951 <para>
1952 This function is called to construct arguments that haven't been initialized
1953 but have the #GTK_ARG_CONSTRUCT flag set.
1954 </para>
1955 <para>
1956 All number arguments are set to 0.  All pointers and strings
1957 are set to NULL.
1958 </para>
1959 <para>
1960 Normally invoked by gtk_object_new() automatically; gtk_type_new() can
1961 be used to bypass it.
1962 </para>
1963
1964 @object: the object to initialize.
1965
1966 <!-- ##### FUNCTION gtk_object_getv ##### -->
1967 <para>
1968 Gets an array of argument values from an object.
1969 </para>
1970
1971 @object: the object to get arguments from.
1972 @n_args: the number of arguments to query.
1973 @args: the arguments to fill in.
1974
1975 <!-- ##### FUNCTION gtk_object_newv ##### -->
1976 <para>
1977 Construct an object with an array of arguments.
1978 </para>
1979
1980 @object_type: the type of the object to create.
1981 @n_args: the number of arguments to set.
1982 @args: an array of n_args arguments (which are name and value pairs).
1983 @Returns: the new GtkObject.
1984
1985 <!-- ##### FUNCTION gtk_object_query_args ##### -->
1986 <para>
1987 Get all the arguments that may be used for a given type.
1988 </para>
1989 <para>
1990 In Java, this type of mechanism is called 
1991 <wordasword>introspection</wordasword>.  It is used by applications
1992 like Glade, that have to determine what can be done to an object
1993 at run-time.
1994 </para>
1995
1996 @class_type: the GtkType of the ObjectClass
1997 (returned from GTK_OBJECT_CLASS(class)-&gt;type for example).
1998 @arg_flags: if non-NULL, obtains the #GtkArgFlags that apply to
1999 each argument.  You must g_free() this if you request it.
2000 @n_args: the number of arguments is returned in this field.
2001 @Returns: an array of arguments, that you must deallocate with g_free().
2002
2003 <!-- ##### FUNCTION gtk_object_setv ##### -->
2004 <para>
2005 Set an array of arguments.
2006 </para>
2007
2008 @object: the object whose arguments should be set.
2009 @n_args: the number of arguments to set.
2010 @args: the desired values, as an array of #GtkArgs (which contain 
2011 the names, types, and values of the arguments).
2012
2013 <!-- ##### FUNCTION gtk_paned_compute_position ##### -->
2014 <para>
2015 Internal function used by #GtkHPaned and #GtkVPaned
2016 </para>
2017
2018 @paned: 
2019 @allocation: 
2020 @child1_req: 
2021 @child2_req: 
2022
2023 <!-- ##### FUNCTION gtk_paned_set_handle_size ##### -->
2024 <para>
2025 Set the the handle size to @size x @size pixels.
2026 </para>
2027
2028 @paned: a paned widget
2029 @size: the size in pixels
2030
2031 <!-- ##### FUNCTION gtk_pattern_match ##### -->
2032 <para>
2033
2034 </para>
2035
2036 @pspec: 
2037 @string_length: 
2038 @string: 
2039 @string_reversed: 
2040 @Returns: 
2041
2042 <!-- ##### FUNCTION gtk_pattern_match_simple ##### -->
2043 <para>
2044
2045 </para>
2046
2047 @pattern: 
2048 @string: 
2049 @Returns: 
2050
2051 <!-- ##### FUNCTION gtk_pattern_match_string ##### -->
2052 <para>
2053
2054 </para>
2055
2056 @pspec: 
2057 @string: 
2058 @Returns: 
2059
2060 <!-- ##### FUNCTION gtk_pattern_spec_free_segs ##### -->
2061 <para>
2062
2063 </para>
2064
2065 @pspec: 
2066
2067 <!-- ##### FUNCTION gtk_pattern_spec_init ##### -->
2068 <para>
2069
2070 </para>
2071
2072 @pspec: 
2073 @pattern: 
2074
2075 <!-- ##### FUNCTION gtk_rc_init ##### -->
2076 <para>
2077 Internal function.
2078 </para>
2079
2080
2081 <!-- ##### FUNCTION gtk_rc_load_image ##### -->
2082 <para>
2083 Internal function. Loads an image using the current
2084 image loader.
2085 </para>
2086
2087 @colormap: the colormap to use for the image
2088 @transparent_color: the transparent color for the image
2089 @filename: the filename of the image file
2090 @Returns: a #GtkPixmap representing @filename
2091
2092 <!-- ##### FUNCTION gtk_rc_set_image_loader ##### -->
2093 <para>
2094 Sets the function that GTK+ will use to load images 
2095 </para>
2096
2097 @loader: the #GtkImageLoader to use
2098
2099 <!-- ##### FUNCTION gtk_ruler_draw_pos ##### -->
2100 <para>
2101
2102 </para>
2103
2104 @ruler: the gtkruler
2105
2106 <!-- ##### FUNCTION gtk_ruler_draw_ticks ##### -->
2107 <para>
2108
2109 </para>
2110
2111 @ruler: the gtkruler
2112
2113 <!-- ##### FUNCTION gtk_settings_get_global ##### -->
2114 <para>
2115
2116 </para>
2117
2118 @Returns: 
2119
2120 <!-- ##### FUNCTION gtk_signal_add_emission_hook ##### -->
2121 <para>
2122 Add an emission hook for a type of signal, for any object.
2123 </para>
2124
2125 @signal_id: the type of signal to hook for.
2126 @hook_func: the function to invoke to handle the emission hook.
2127 @data: the user data passed in to hook_func.
2128 @Returns: the id (that you may pass as a parameter
2129 to gtk_signal_remove_emission_hook()).
2130 @i: 
2131 @h: 
2132 @d: 
2133
2134 <!-- ##### FUNCTION gtk_signal_add_emission_hook_full ##### -->
2135 <para>
2136 Add an emission hook for a type of signal, for any object.
2137 (with control of what happens when the hook is
2138 destroyed).
2139 </para>
2140
2141 @signal_id: the type of signal add the hook for.
2142 @hook_func: the function to invoke to handle the hook.
2143 @data: the user data passed in to hook_func.
2144 @destroy: a function to invoke when the hook is destroyed,
2145 to clean up any allocation done just for this
2146 signal handler.
2147 @Returns: the id (that you may pass as a parameter
2148 to gtk_signal_remove_emission_hook()).
2149
2150 <!-- ##### FUNCTION gtk_signal_handler_pending_by_id ##### -->
2151 <para>
2152 Returns whether a connection id is valid (and optionally not blocked).
2153 </para>
2154
2155 @object: the object to search for the desired handler.
2156 @handler_id: the connection id.
2157 @may_be_blocked: whether it is acceptable to return a blocked
2158 handler.
2159 @Returns: TRUE if the signal exists and wasn't blocked,
2160 unless #may_be_blocked was specified.  FALSE otherwise.
2161
2162 <!-- ##### FUNCTION gtk_signal_handlers_destroy ##### -->
2163 <para>
2164 Destroy all the signal handlers connected to an object.
2165 This is done automatically when the object is destroyed.
2166 </para>
2167 <para>
2168 This function is labeled private.
2169 </para>
2170
2171 @object: the object whose signal handlers should be destroyed.
2172
2173 <!-- ##### FUNCTION gtk_signal_init ##### -->
2174 <para>
2175
2176 </para>
2177
2178
2179 <!-- ##### FUNCTION gtk_signal_n_emissions ##### -->
2180 <para>
2181 Find out the recursion depth of emissions for a particular type
2182 of signal and object.  (So it will
2183 always return 0 or 1 if #GTK_RUN_NO_RECURSE is specified)
2184 This is a way to avoid recursion:  you can see if
2185 you are currently running in that signal handler and emit it only
2186 if you are.
2187 </para>
2188 <para>Another way to look at it is that this number increases
2189 by one when #gtk_signal_emit(), et al, are called,
2190 and decreases by one when #gtk_signal_emit() returns.
2191 </para>
2192
2193 @object: the object with the signal handler.
2194 @signal_id: the signal id.
2195 @Returns: the recursion depth of emissions of this signal for this
2196 object.
2197
2198 <!-- ##### FUNCTION gtk_signal_n_emissions_by_name ##### -->
2199 <para>
2200 Find out the recursion depth of emissions for a particular type
2201 of signal and object.  Just like gtk_signal_n_emissions()
2202 except it will lookup the signal id for you.
2203 </para>
2204
2205 @object: the object with the signal handler.
2206 @name: the signal name.
2207 @Returns: the recursion depth of emissions of this signal for this
2208 object.
2209
2210 <!-- ##### FUNCTION gtk_signal_query ##### -->
2211 <para>
2212 Obtain information about a signal.
2213 </para>
2214
2215 @signal_id: the signal type identifier.
2216 @Returns: a pointer to a GtkSignalQuery structure
2217 which contains all the information, or NULL.
2218 The pointer is allocated just for you:  you must g_free() it.
2219
2220 <!-- ##### FUNCTION gtk_signal_remove_emission_hook ##### -->
2221 <para>
2222 Delete an emission hook. (see gtk_signal_add_emission_hook())
2223 </para>
2224
2225 @signal_id: the id of the signal type.
2226 @hook_id: the id of the emission handler, returned by add_emission_hook().
2227 @i: 
2228 @h: 
2229
2230 <!-- ##### FUNCTION gtk_signal_set_funcs ##### -->
2231 <para>
2232 These set default functions to call when the user didn't
2233 supply a function when connecting.  (These are rarely
2234 used, and probably only for language bindings)
2235 </para>
2236 <para>
2237 By default, there are no such functions.
2238 </para>
2239
2240 @marshal_func: the function to invoke on every handlers for which there
2241 isn't a function pointer.  May be NULL.
2242 @destroy_func: the function to invoke when each hook is destroyed.
2243 May be NULL.
2244
2245 <!-- ##### FUNCTION gtk_spin_button_set_shadow_type ##### -->
2246 <para>
2247 Creates a border around the arrows of a #GtkSpinButton. The type of border is determined by @shadow_type.
2248 </para>
2249
2250 @spin_button: a #GtkSpinButton
2251 @shadow_type: the new border type.
2252
2253 <!-- ##### FUNCTION gtk_stock_list_items ##### -->
2254 <para>
2255
2256 </para>
2257
2258 @Returns: 
2259
2260 <!-- ##### FUNCTION gtk_text_buffer_paste_primary ##### -->
2261 <para>
2262
2263 </para>
2264
2265 @buffer: 
2266 @override_location: 
2267 @default_editable: 
2268
2269 <!-- ##### FUNCTION gtk_text_iter_reorder ##### -->
2270 <para>
2271
2272 </para>
2273
2274 @first: 
2275 @second: 
2276
2277 <!-- ##### FUNCTION gtk_text_iter_spew ##### -->
2278 <para>
2279
2280 </para>
2281
2282 @iter: 
2283 @desc: 
2284
2285 <!-- ##### FUNCTION gtk_text_view_set_text_window_size ##### -->
2286 <para>
2287
2288 </para>
2289
2290 @text_view: 
2291 @width: 
2292 @height: 
2293
2294 <!-- ##### FUNCTION gtk_trace_referencing ##### -->
2295 <para>
2296 Private: print debugging information while doing a gtk_object_ref() or 
2297 a gtk_object_unref().
2298 </para>
2299
2300 @object: object to reference or unreference.
2301 @func: name of caller's function to print (used within macros).
2302 @dummy: unused.
2303 @line: line number (used within macros).
2304 @do_ref: whether to reference or unreference.
2305
2306 <!-- ##### FUNCTION gtk_tree_model_ref_iter ##### -->
2307 <para>
2308
2309 </para>
2310
2311 @tree_model: 
2312 @iter: 
2313
2314 <!-- ##### FUNCTION gtk_tree_model_sort_set_compare ##### -->
2315 <para>
2316
2317 </para>
2318
2319 @tree_model_sort: 
2320 @func: 
2321
2322 <!-- ##### FUNCTION gtk_tree_model_sort_set_sort_column ##### -->
2323 <para>
2324
2325 </para>
2326
2327 @tree_model_sort: 
2328 @sort_col: 
2329
2330 <!-- ##### FUNCTION gtk_tree_model_unref_iter ##### -->
2331 <para>
2332
2333 </para>
2334
2335 @tree_model: 
2336 @iter: 
2337
2338 <!-- ##### FUNCTION gtk_tree_store_new_with_types ##### -->
2339 <para>
2340
2341 </para>
2342
2343 @n_columns: 
2344 @Varargs: 
2345 @Returns: 
2346
2347 <!-- ##### FUNCTION gtk_tree_store_set_cell ##### -->
2348 <para>
2349
2350 </para>
2351
2352 @tree_store: 
2353 @iter: 
2354 @column: 
2355 @value: 
2356
2357 <!-- ##### FUNCTION gtk_tree_store_set_column_type ##### -->
2358 <para>
2359
2360 </para>
2361
2362 @tree_store: 
2363 @column: 
2364 @type: 
2365 @store: 
2366
2367 <!-- ##### FUNCTION gtk_tree_store_set_n_columns ##### -->
2368 <para>
2369
2370 </para>
2371
2372 @tree_store: 
2373 @n_columns: 
2374
2375 <!-- ##### FUNCTION gtk_tree_view_column_set_cell_data ##### -->
2376 <para>
2377
2378 </para>
2379
2380 @tree_column: 
2381 @tree_model: 
2382 @iter: 
2383
2384 <!-- ##### FUNCTION gtk_tree_view_column_set_cell_renderer ##### -->
2385 <para>
2386
2387 </para>
2388
2389 @tree_column: 
2390 @cell: 
2391
2392 <!-- ##### FUNCTION gtk_tree_view_column_set_width ##### -->
2393 <para>
2394
2395 </para>
2396
2397 @tree_column: 
2398 @width: 
2399 @size: 
2400
2401 <!-- ##### FUNCTION gtk_type_check_class_cast ##### -->
2402 <para>
2403 Given a GtkTypeClass pointer @klass, and a GtkType @cast_type, make
2404 sure that it's okay to cast something of that @klass into a @cast_type.
2405 </para>
2406
2407 @klass: GtkTypeClass*
2408 @cast_type: GtkType
2409 @Returns: Always return @klass.
2410
2411 <!-- ##### FUNCTION gtk_type_check_object_cast ##### -->
2412 <para>
2413 Given a pointer to a GtkTypeObject @type_object, and a GtkType @cast_type,
2414 make sure that it's okay to cast @type_object into a @cast_type.
2415 </para>
2416
2417 @type_object: GtkTypeObject*
2418 @cast_type: GtkType
2419 @Returns: the same GtkTypeObject* as @type_object
2420
2421 <!-- ##### FUNCTION gtk_type_children_types ##### -->
2422 <para>
2423 Return the pointer to the type's children's types.
2424 </para>
2425
2426 @type: GtkType
2427 @Returns: pointer to a GList
2428
2429 <!-- ##### FUNCTION gtk_type_describe_heritage ##### -->
2430 <para>
2431 Print the types @type inherits from.
2432 </para>
2433
2434 @type: GtkType
2435
2436 <!-- ##### FUNCTION gtk_type_describe_tree ##### -->
2437 <para>
2438 Given a @type, describe all of its children, and their children.  Only
2439 show the size if @show_size is true.
2440 </para>
2441
2442 @type: GtkType
2443 @show_size: gboolean
2444
2445 <!-- ##### FUNCTION gtk_type_free ##### -->
2446 <para>
2447 Given the type of an object and a pointer to it, the object is freed.
2448 </para>
2449
2450 @type: GtkType
2451 @mem: gpointer to the object
2452
2453 <!-- ##### FUNCTION gtk_type_get_varargs_type ##### -->
2454 <para>
2455 Get the varargs type associated with @foreign_type
2456 </para>
2457
2458 @foreign_type: GtkType
2459 @Returns: GtkType
2460
2461 <!-- ##### FUNCTION gtk_type_parent_class ##### -->
2462 <para>
2463 Return the class of the parent.  Initialize the class if necessary.
2464 Return NULL if anything goes wrong.
2465 </para>
2466
2467 @type: GtkType
2468 @Returns: gpointer to the klass.
2469
2470 <!-- ##### FUNCTION gtk_type_query ##### -->
2471 <para>
2472 Given a type, return various interesting parameters of the type.
2473 </para>
2474
2475 @type: GtkType
2476 @Returns: GtkTypeQuery*
2477
2478 <!-- ##### FUNCTION gtk_type_register_enum ##### -->
2479 <para>
2480 Register a new set of enum @values and give them the name in
2481 @type_name.
2482 </para>
2483
2484 @type_name: must not be null.
2485 @values: GtkEnumValue*
2486 @Returns: 
2487
2488 <!-- ##### FUNCTION gtk_type_register_flags ##### -->
2489 <para>
2490 Register a new set of flags @values and give them the name in
2491 @type_name.
2492 </para>
2493
2494 @type_name: must not be null.
2495 @values: GtkFlagValue*
2496 @Returns: 
2497
2498 <!-- ##### FUNCTION gtk_type_set_chunk_alloc ##### -->
2499 <para>
2500 Set the mem_chunk size so it will hold @n_chunks of the objects of that @type.
2501 </para>
2502
2503 @type: There must be an unlocked TypeNode associated with this type otherwise nothing happens.
2504 @n_chunks: 
2505
2506 <!-- ##### FUNCTION gtk_type_set_varargs_type ##### -->
2507 <para>
2508 Set the varargs type for a fundamental type @foreign_type.
2509 </para>
2510
2511 @foreign_type: Must be a GtkType with a sequence number of zero.  Must not be a
2512 fundamental type.
2513 @varargs_type: Must be a GtkType which is either structured or flag, or NONE.
2514
2515 <!-- ##### FUNCTION gtk_widget_activate_mnemonic ##### -->
2516 <para>
2517
2518 </para>
2519
2520 @widget: 
2521 @group_cycling: 
2522 @Returns: 
2523
2524 <!-- ##### FUNCTION gtk_widget_get_usize ##### -->
2525 <para>
2526
2527 </para>
2528
2529 @widget: 
2530 @width: 
2531 @height: 
2532
2533 <!-- ##### FUNCTION gtk_widget_pop_style ##### -->
2534 <para>
2535
2536 </para>
2537
2538
2539 <!-- ##### FUNCTION gtk_widget_popup ##### -->
2540 <para>
2541
2542 </para>
2543
2544 @widget: 
2545 @x: 
2546 @y: 
2547
2548 <!-- ##### FUNCTION gtk_widget_push_style ##### -->
2549 <para>
2550
2551 </para>
2552
2553 @style: 
2554
2555 <!-- ##### FUNCTION gtk_widget_set_default_style ##### -->
2556 <para>
2557
2558 </para>
2559
2560 @style: 
2561
2562 <!-- ##### FUNCTION gtk_window_activate_mnemonic ##### -->
2563 <para>
2564
2565 </para>
2566
2567 @window: 
2568 @keyval: 
2569 @modifier: 
2570 @Returns: 
2571
2572 <!-- ##### FUNCTION gtk_window_get_default_accel_group ##### -->
2573 <para>
2574
2575 </para>
2576
2577 @window: 
2578 @Returns: 
2579
2580 <!-- ##### FUNCTION gtk_window_get_resizeable ##### -->
2581 <para>
2582
2583 </para>
2584
2585 @window: 
2586 @Returns: 
2587
2588 <!-- ##### FUNCTION gtk_window_set_decorations_hint ##### -->
2589 <para>
2590
2591 </para>
2592
2593 @window: 
2594 @decorations: 
2595
2596 <!-- ##### FUNCTION gtk_window_set_functions_hint ##### -->
2597 <para>
2598
2599 </para>
2600
2601 @window: 
2602 @functions: 
2603
2604 <!-- ##### FUNCTION gtk_window_set_resizeable ##### -->
2605 <para>
2606
2607 </para>
2608
2609 @window: 
2610 @setting: 
2611 @resizeable: 
2612