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