]> Pileus Git - ~andy/gtk/blob - docs/reference/gtk/tmpl/gtk-unused.sgml
use more elaborate variable names.
[~andy/gtk] / docs / reference / gtk / tmpl / gtk-unused.sgml
1 <!-- ##### SECTION ./tmpl/gtkdata.sgml:Long_Description ##### -->
2 <para>
3 The #GtkData object is a very simple object intended to be used as a base
4 class for objects which contain data (i.e. the 'Model' in the object-oriented
5 Model/View/Controller framework).
6 </para>
7 <para>
8 Currently it is not very useful since all it provides is a "disconnect" signal.
9 This signal could be emitted by a #GtkData subclass to notify any 'Views'
10 that they should disconnect from the #GtkData (the 'Model'), possibly just
11 before the #GtkData is destroyed.
12 </para>
13
14
15 <!-- ##### SECTION ./tmpl/gtkdata.sgml:See_Also ##### -->
16 <para>
17
18 </para>
19
20
21 <!-- ##### SECTION ./tmpl/gtkdata.sgml:Short_Description ##### -->
22 abstract base class for objects containing data.
23
24
25 <!-- ##### SECTION ./tmpl/gtkdata.sgml:Title ##### -->
26 GtkData
27
28
29 <!-- ##### SECTION ./tmpl/gtkdebug.sgml:Title ##### -->
30 Debugging
31
32
33 <!-- ##### SECTION ./tmpl/gtkenums.sgml.sgml:Title ##### -->
34 gtkenums.sgml
35
36
37 <!-- ##### SECTION ./tmpl/gtkimcontextsimple.sgml:Title ##### -->
38 GtkIMContextSimple
39
40
41 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:Long_Description ##### -->
42 <refsect2>
43 <title>What are Signal Marshallers?</title>
44 <para>
45 Marshals are functions which all have the same prototype:
46 they take a #GtkObject, a #GtkSignalFunc, a #gpointer,
47 and an array of argument values.
48 The functions are names gtk_marshall_RETURNTYPE__PARAMTYPE1_PARAMTYPE2....
49 </para>
50 <para>
51 They then call a native function:  the GtkObject is the first
52 parameter passed in.  The arguments are passed in the native
53 calling convention:  chars, shorts, ints, longs may be packed
54 on the stack, or tucked in registers:  it doesn't matter
55 because the same calling convention will be generated
56 inside the gtkmarshal code as is expected where you define
57 your handlers.
58 </para>
59 <para>
60 So the function named:
61 <programlisting>
62 gtk_marshal_BOOL__POINTER_INT_INT_UINT(GtkObject*, GtkSignalFunc, gpointer, GtkArg*);
63 </programlisting>
64 will call the #GtkSignalFunc assuming it was a function with signature:
65 <programlisting>
66 gboolean sigfunc(gpointer,gint,gint,guint);
67 </programlisting>
68 </para>
69 </refsect2>
70 <refsect2>
71 <title>Writing Custom Marshals</title>
72 <para>
73 Marshals are primarily used as arguments to gtk_signal_new().
74 Sometimes, you may find that a marshaller you need isn't available
75 in the standard list.  Then you have to write your own.
76 </para>
77 <para>
78 If you wish to define a signal with a new type of argument list.
79 Suppose you want 2 pointers and 2 integers.
80 You would write:
81 <programlisting>
82 typedef int (*GtkSignal_INT__POINTER_POINTER_INT_INT)(
83                         gpointer, gpointer, gint, gint
84 );
85
86 void marshal_INT__POINTER_POINTER_INT_INT(GtkObject*    object,
87                                            GtkSignalFunc func,
88                                            gpointer      func_data,
89                                            GtkArg*       args)
90 {
91         GtkSignal_NONE__POINTER_POINTER_INT_INT rfunc;
92         gint* return_val;
93         return_val = GTK_RETLOC_INT(args[4]);
94         rfunc = (GtkSignal_INT__POINTER_POINTER_INT_INT)func;
95         *return_val = (*rfunc)(object,
96                                GTK_VALUE_POINTER(args[0]),
97                                GTK_VALUE_POINTER(args[1]),
98                                GTK_VALUE_INT(args[2]),
99                                GTK_VALUE_INT(args[3]),
100                                func_data);
101 }
102 </programlisting>
103 </para>
104 </refsect2>
105
106
107 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:See_Also ##### -->
108 <para>
109 <variablelist>
110
111 <varlistentry>
112 <term>#GtkSignal</term>
113 <listitem><para>The signal handling functions (of which marshallers are 
114 really an implementation detail).</para></listitem>
115 </varlistentry>
116
117 </variablelist>
118 </para>
119
120
121 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:Short_Description ##### -->
122 Functions to adapt C structures to native calling convention.
123
124
125 <!-- ##### SECTION ./tmpl/gtkmarshal.sgml:Title ##### -->
126 Signal Marshallers
127
128
129 <!-- ##### SECTION ./tmpl/gtkprivate.sgml:Title ##### -->
130 Private Information
131
132
133 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:Long_Description ##### -->
134 <para>
135
136 </para>
137
138
139 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:See_Also ##### -->
140 <para>
141
142 </para>
143
144
145 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:Short_Description ##### -->
146
147
148
149 <!-- ##### SECTION ./tmpl/gtktreemodelsimple.sgml:Title ##### -->
150 GtkModelSimple
151
152
153 <!-- ##### MACRO GTK_CLIST_CHILD_HAS_FOCUS ##### -->
154 <para>
155 A macro to check whether a child widget of the CList
156 has the focus.
157 </para>
158
159 @clist: The #GtkCList widget to check.
160
161 <!-- ##### MACRO GTK_ICON_SIZE_BUTTON ##### -->
162 <para>
163
164 </para>
165
166
167 <!-- ##### MACRO GTK_ICON_SIZE_DIALOG ##### -->
168 <para>
169
170 </para>
171
172
173 <!-- ##### MACRO GTK_ICON_SIZE_LARGE_TOOLBAR ##### -->
174 <para>
175
176 </para>
177
178
179 <!-- ##### MACRO GTK_ICON_SIZE_MENU ##### -->
180 <para>
181
182 </para>
183
184
185 <!-- ##### MACRO GTK_ICON_SIZE_SMALL_TOOLBAR ##### -->
186 <para>
187
188 </para>
189
190
191 <!-- ##### MACRO GTK_OBJECT_CONSTRUCTED ##### -->
192 <para>
193 Test whether a GtkObject's arguments have been prepared.
194 </para>
195
196 @obj: the object to examine.
197
198 <!-- ##### MACRO GTK_OBJECT_NSIGNALS ##### -->
199 <para>
200 Get the number of signals defined by this object.
201 </para>
202
203 @obj: the object to query.
204
205 <!-- ##### MACRO GTK_OBJECT_SIGNALS ##### -->
206 <para>
207 Get the array of signals defined for this object.
208 </para>
209
210 @obj: the object to fetch the signals from.
211
212 <!-- ##### MACRO GTK_TREE_SELECTION ##### -->
213 <para>
214 A macro that returns a GList that contains the selection of the root tree of @obj.
215 </para>
216
217 @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.
218
219 <!-- ##### MACRO GTK_TYPE_FLAT_FIRST ##### -->
220 <para>
221 The first "flat" (no struct) enumerated type value.
222 </para>
223
224
225 <!-- ##### MACRO GTK_TYPE_FLAT_LAST ##### -->
226 <para>
227 The last "flat" (no struct) enumerated type value.
228 </para>
229
230
231 <!-- ##### MACRO GTK_TYPE_IDENTIFIER ##### -->
232 <para>
233 Hide the name of gtk_identifier_get_type
234 </para>
235
236
237 <!-- ##### MACRO GTK_TYPE_MAKE ##### -->
238 <para>
239 Combine a fundemantal type and a sequence number to create a gtk type.
240 </para>
241
242 @parent_t: 
243 @seqno: 
244
245 <!-- ##### MACRO GTK_TYPE_NUM_BUILTINS ##### -->
246 <para>
247 No idea.
248 </para>
249
250
251 <!-- ##### MACRO GTK_TYPE_SEQNO ##### -->
252 <para>
253 Convert a gtk type into its sequence number
254 </para>
255
256 @type: 
257
258 <!-- ##### MACRO GTK_TYPE_STRUCTURED_FIRST ##### -->
259 <para>
260 The first structured enumerated type value.
261 </para>
262
263
264 <!-- ##### MACRO GTK_TYPE_STRUCTURED_LAST ##### -->
265 <para>
266 The last structured enumerated type value.
267 </para>
268
269
270 <!-- ##### MACRO GTK_TYPE_TREE_COLUMN ##### -->
271 <para>
272
273 </para>
274
275
276 <!-- ##### MACRO GTK_VALUE_ARGS ##### -->
277 <para>
278 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_ARGS
279 </para>
280
281 @a: 
282
283 <!-- ##### MACRO GTK_VALUE_CALLBACK ##### -->
284 <para>
285 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_CALLBACK
286 </para>
287
288 @a: 
289
290 <!-- ##### MACRO GTK_VALUE_C_CALLBACK ##### -->
291 <para>
292 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_C_CALLBACK
293 </para>
294
295 @a: 
296
297 <!-- ##### MACRO GTK_VALUE_FOREIGN ##### -->
298 <para>
299 Use to get the value of a GtkArg whose GtkType is GTK_TYPE_C_FOREIGN
300 </para>
301
302 @a: 
303
304 <!-- ##### STRUCT GtkData ##### -->
305 <para>
306 The #GtkData-struct struct contains no public fields.
307 </para>
308
309
310 <!-- ##### SIGNAL GtkData::disconnect ##### -->
311 <para>
312 Emitted to notify any views on the #GtkData object to disconnect from it,
313 possibly because the #GtkData object is about to be destroyed.
314 </para>
315
316 @data: the object which received the signal.
317
318 <!-- ##### SIGNAL GtkEditable::activate ##### -->
319 <para>
320 Indicates that the user has activated the widget
321 in some fashion. Generally, this will be done
322 with a keystroke. (The default binding for this
323 action is Return for #GtkEntry and
324 Control-Return for #GtkText.)
325 </para>
326
327 @editable: the object which received the signal.
328
329 <!-- ##### SIGNAL GtkEditable::changed ##### -->
330 <para>
331 Indicates that the user has changed the contents
332 of the widget.
333 </para>
334
335 @editable: the object which received the signal.
336
337 <!-- ##### SIGNAL GtkEditable::copy-clipboard ##### -->
338 <para>
339 An action signal. Causes the characters in the current selection to
340 be copied to the clipboard.
341 </para>
342
343 @editable: the object which received the signal.
344
345 <!-- ##### SIGNAL GtkEditable::cut-clipboard ##### -->
346 <para>
347 An action signal. Causes the characters in the current
348 selection to be copied to the clipboard and then deleted from
349 the widget.
350 </para>
351
352 @editable: the object which received the signal.
353
354 <!-- ##### SIGNAL GtkEditable::delete-text ##### -->
355 <para>
356 This signal is emitted when text is deleted from
357 the widget by the user. The default handler for
358 this signal will normally be responsible for inserting
359 the text, so by connecting to this signal and then
360 stopping the signal with gtk_signal_emit_stop(), it
361 is possible to modify the inserted text, or prevent
362 it from being inserted entirely. The @start_pos
363 and @end_pos parameters are interpreted as for
364 gtk_editable_delete_text()
365 </para>
366
367 @editable: the object which received the signal.
368 @start_pos: the starting position.
369 @end_pos: the end position.
370
371 <!-- ##### SIGNAL GtkEditable::insert-text ##### -->
372 <para>
373 This signal is emitted when text is inserted into
374 the widget by the user. The default handler for
375 this signal will normally be responsible for inserting
376 the text, so by connecting to this signal and then
377 stopping the signal with gtk_signal_emit_stop(), it
378 is possible to modify the inserted text, or prevent
379 it from being inserted entirely.
380 </para>
381
382 @editable: the object which received the signal.
383 @new_text: the new text to insert.
384 @new_text_length: the length of the new text.
385 @position: the position at which to insert the new text.
386            this is an in-out paramter. After the signal
387            emission is finished, it should point after   
388            the newly inserted text.
389
390 <!-- ##### SIGNAL GtkEditable::kill-char ##### -->
391 <para>
392 An action signal. Delete a single character.
393 </para>
394
395 @editable: the object which received the signal.
396 @direction: the direction in which to delete. Positive
397    indicates forward deletion, negative, backwards deletion.
398
399 <!-- ##### SIGNAL GtkEditable::kill-line ##### -->
400 <para>
401 An action signal. Delete a single line.
402 </para>
403
404 @editable: the object which received the signal.
405 @direction: the direction in which to delete. Positive
406    indicates forward deletion, negative, backwards deletion.
407
408 <!-- ##### SIGNAL GtkEditable::kill-word ##### -->
409 <para>
410 An action signal. Delete a single word.
411 </para>
412
413 @editable: the object which received the signal.
414 @direction: the direction in which to delete. Positive
415    indicates forward deletion, negative, backwards deletion.
416
417 <!-- ##### SIGNAL GtkEditable::move-cursor ##### -->
418 <para>
419 An action signal. Move the cursor position.
420 </para>
421
422 @editable: the object which received the signal.
423 @x: horizontal distance to move the cursor.
424 @y: vertical distance to move the cursor.
425
426 <!-- ##### SIGNAL GtkEditable::move-page ##### -->
427 <para>
428 An action signal. Move the cursor by pages.
429 </para>
430
431 @editable: the object which received the signal.
432 @x: Number of pages to move the cursor horizontally.
433 @y: Number of pages to move the cursor vertically.
434
435 <!-- ##### SIGNAL GtkEditable::move-to-column ##### -->
436 <para>
437 An action signal. Move the cursor to the given column.
438 </para>
439
440 @editable: the object which received the signal.
441 @column: the column to move to. (A negative value indicates
442          the last column)
443
444 <!-- ##### SIGNAL GtkEditable::move-to-row ##### -->
445 <para>
446 An action signal. Move the cursor to the given row.
447 </para>
448
449 @editable: the object which received the signal.
450 @row: the row to move to. (A negative value indicates 
451       the last row)
452
453 <!-- ##### SIGNAL GtkEditable::move-word ##### -->
454 <para>
455 An action signal. Move the cursor by words.
456 </para>
457
458 @editable: the object which received the signal.
459 @num_words: The number of words to move the
460 cursor. (Can be negative).
461
462 <!-- ##### SIGNAL GtkEditable::paste-clipboard ##### -->
463 <para>
464 An action signal. Causes the contents of the clipboard to
465 be pasted into the editable widget at the current cursor
466 position.
467 </para>
468
469 @editable: the object which received the signal.
470
471 <!-- ##### SIGNAL GtkEditable::set-editable ##### -->
472 <para>
473 Determines if the user can edit the text in the editable
474 widget or not. This is meant to be overriden by 
475 child classes and should not generally useful to
476 applications.
477 </para>
478
479 @editable: the object which received the signal.
480 @is_editable: %TRUE if the user is allowed to edit the text
481   in the widget.
482
483 <!-- ##### ARG GtkEditable:editable ##### -->
484 <para>
485 A boolean indicating whether the widget is editable by
486 the user.
487 </para>
488
489
490 <!-- ##### ARG GtkEditable:text-position ##### -->
491 <para>
492 The position of the cursor.
493 </para>
494
495
496 <!-- ##### USER_FUNCTION GtkEmissionHook ##### -->
497 <para>
498 A simple function pointer to get invoked when the
499 signal is emitted.  This allows you tie a hook to the signal type,
500 so that it will trap all emissions of that signal, from any object.
501 </para>
502 <para>
503 You may not attach these to signals created with the
504 #GTK_RUN_NO_HOOKS flag.
505 </para>
506
507 @object: 
508 @signal_id: 
509 @n_params: 
510 @params: 
511 @data: 
512 @Returns: 
513
514 <!-- ##### ENUM GtkFontFilterType ##### -->
515 <para>
516 A set of bit flags used to specify the filter being set
517 when calling gtk_font_selection_dialog_set_filter() or
518 gtk_font_selection_set_filter().
519 </para>
520
521 @GTK_FONT_FILTER_BASE: the base filter, which can't be changed by the user.
522 @GTK_FONT_FILTER_USER: the user filter, which can be changed from within the
523 'Filter' page of the #GtkFontSelection widget.
524
525 <!-- ##### ENUM GtkFontType ##### -->
526 <para>
527 A set of bit flags used to specify the type of fonts shown
528 when calling gtk_font_selection_dialog_set_filter() or
529 gtk_font_selection_set_filter().
530 </para>
531
532 @GTK_FONT_BITMAP: bitmap fonts.
533 @GTK_FONT_SCALABLE: scalable fonts.
534 @GTK_FONT_SCALABLE_BITMAP: scaled bitmap fonts.
535 @GTK_FONT_ALL: a bitwise combination of all of the above.
536
537 <!-- ##### ARG GtkFrame:shadow-type ##### -->
538 <para>
539
540 </para>
541
542
543 <!-- ##### STRUCT GtkIMContextSimple ##### -->
544 <para>
545
546 </para>
547
548 @object: 
549 @tables: 
550 @compose_buffer: 
551 @tentative_match: 
552 @tentative_match_len: 
553
554 <!-- ##### ARG GtkLabel:accel-keyval ##### -->
555 <para>
556
557 </para>
558
559
560 <!-- ##### ARG GtkObject:object-signal ##### -->
561 <para>
562 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
563 the signal to the object, so that the user data and objects
564 and swapped when the signal handler is invoked.
565 </para>
566 <para>
567 This is useful for handlers that are primarily notifying
568 other objects and could just invoke an already existing function
569 if the parameters were swapped.
570 See gtk_signal_connect_object() for more details.
571 </para>
572
573
574 <!-- ##### ARG GtkObject:object-signal-after ##### -->
575 <para>
576 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
577 the signal to the object, so that the user data and objects
578 and swapped when the signal handler is invoked,
579 and so that the handler is invoked after all others.
580 </para>
581 <para>
582 See gtk_signal_connect_object_after() for more details.
583 </para>
584
585
586 <!-- ##### ARG GtkObject:signal ##### -->
587 <para>
588 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
589 the signal to the object.
590 </para>
591
592
593 <!-- ##### ARG GtkObject:signal-after ##### -->
594 <para>
595 Setting this with a GtkType of GTK_TYPE_SIGNAL connects
596 the signal to the object, so that the signal is always run
597 after other user handlers and the default handler.
598 </para>
599
600
601 <!-- ##### ARG GtkPaned:handle-size ##### -->
602 <para>
603
604 </para>
605
606
607 <!-- ##### ENUM GtkPrivateFlags ##### -->
608 <para>
609
610 </para>
611
612 @PRIVATE_GTK_USER_STYLE: 
613 @PRIVATE_GTK_RESIZE_PENDING: 
614 @PRIVATE_GTK_RESIZE_NEEDED: 
615 @PRIVATE_GTK_LEAVE_PENDING: 
616 @PRIVATE_GTK_HAS_SHAPE_MASK: 
617 @PRIVATE_GTK_IN_REPARENT: 
618 @PRIVATE_GTK_DIRECTION_SET: 
619 @PRIVATE_GTK_DIRECTION_LTR: 
620
621 <!-- ##### USER_FUNCTION GtkSignalDestroy ##### -->
622 <para>
623 A function which you can use to clean up when the
624 signal handler is destroyed.
625 </para>
626 <para>
627 For example, if your handler requires a few variables
628 that you made into a struct and allocated (using g_new()
629 or something), then you will probably want to free
630 it as soon as the hook is destroyed.  This will
631 allow you to do that. (For this in particular
632 it is convenient to pass g_free() as a #GtkSignalDestroy
633 function).
634 </para>
635
636 @data: The user data associated with the hook that is being
637 destroyed.
638
639 <!-- ##### USER_FUNCTION GtkSignalMarshal ##### -->
640 <para>
641 This is currently a hack left in for a scheme wrapper library.
642 It may be removed.
643 </para>
644 <para>
645 Don't use it.
646 </para>
647
648 @object: The object which emits the signal.
649 @data: The user data associated with the hook.
650 @nparams: The number of parameters to the function.
651 @args: The actual values of the arguments.
652 @arg_types: The types of the arguments.
653 @return_type: The type of the return value from the function
654 or #GTK_TYPE_NONE for no return value.
655
656 <!-- ##### STRUCT GtkSignalQuery ##### -->
657 <para>
658 This structure contains all the information about a particular
659 signal:  its name, the type it affects, the signature of the handlers,
660 and its unique identifying integer.
661 </para>
662
663 @object_type: 
664 @signal_id: 
665 @signal_name: 
666 @is_user_signal: 
667 @signal_flags: 
668 @return_val: 
669 @nparams: 
670 @params: 
671
672 <!-- ##### ARG GtkSpinButton:shadow-type ##### -->
673 <para>
674 the type of border that surrounds the arrows of a spin button.
675 </para>
676
677
678 <!-- ##### STRUCT GtkStatusbarMsg ##### -->
679 <para>
680 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.
681 </para>
682
683 @text: 
684 @context_id: 
685 @message_id: 
686
687 <!-- ##### ARG GtkTextTag:justify ##### -->
688 <para>
689 A #GtkJustification for the text. This is only used when the tag is
690 applied to the first character in a paragraph.
691 </para>
692
693
694 <!-- ##### ARG GtkTextTag:left-wrapped-line-margin ##### -->
695 <para>
696 Pixel width of the left margin of the text for lines after the first
697 line in a wrapped paragraph.
698 </para>
699
700
701 <!-- ##### ARG GtkTextTag:left-wrapped-line-margin-set ##### -->
702 <para>
703
704 </para>
705
706
707 <!-- ##### ARG GtkTextTag:offset ##### -->
708 <para>
709 Pixels to offset the text horizontally or vertically, useful to
710 produce superscript and subscript.
711 </para>
712
713
714 <!-- ##### ARG GtkTextView:justify ##### -->
715 <para>
716
717 </para>
718
719
720 <!-- ##### ARG GtkTextView:wrap-mode ##### -->
721 <para>
722
723 </para>
724
725
726 <!-- ##### SIGNAL GtkWidget::activate-mnemonic ##### -->
727 <para>
728
729 </para>
730
731 @widget: the object which received the signal.
732 @arg1: 
733 @Returns: 
734
735 <!-- ##### SIGNAL GtkWidget::debug-msg ##### -->
736 <para>
737
738 </para>
739
740 @widget: the object which received the signal.
741 @message: 
742
743 <!-- ##### SIGNAL GtkWidget::draw ##### -->
744 <para>
745
746 </para>
747
748 @widget: the object which received the signal.
749 @area: 
750
751 <!-- ##### SIGNAL GtkWidget::draw-default ##### -->
752 <para>
753
754 </para>
755
756 @widget: the object which received the signal.
757
758 <!-- ##### SIGNAL GtkWidget::draw-focus ##### -->
759 <para>
760
761 </para>
762
763 @widget: the object which received the signal.
764
765 <!-- ##### FUNCTION gtk_button_box_child_requisition ##### -->
766 <para>\r
767 This is an internally used function and should never be called from an\r
768 application.\r
769 </para>
770
771 @widget: 
772 @nvis_children: 
773 @width: 
774 @height: 
775
776 <!-- ##### FUNCTION gtk_button_box_get_child_ipadding_default ##### -->
777 <para>\r
778 The internal padding of a button is the amount of space between the outside\r
779 of the button and the widget it contains. This function gets the default\r
780 amount of horizontal and vertical padding, placing the results in @ipad_x\r
781 and @ipad_y, respectively.\r
782 </para>
783
784 @ipad_x: the default horizontal internal button padding.
785 @ipad_y: the default vertical internal button padding.
786
787 <!-- ##### FUNCTION gtk_button_box_get_child_size_default ##### -->
788 <para>\r
789 Retrieves the default minimum width and height for all button boxes, and\r
790 places the values in @min_width and @min_height, respectively.\r
791 </para>
792
793 @min_width: the default minimum width of a child widget.
794 @min_height: the default minimum height of a child widget.
795
796 <!-- ##### FUNCTION gtk_button_box_set_child_ipadding_default ##### -->
797 <para>\r
798 Sets the default number of pixels that pad each button in every button box.\r
799 </para>
800
801 @ipad_x: new default horizontal padding.
802 @ipad_y: new default vertical padding.
803
804 <!-- ##### FUNCTION gtk_button_box_set_child_size_default ##### -->
805 <para>\r
806 Sets the default size of child buttons.\r
807 </para>
808
809 @min_width: minimum default width for child buttons.
810 @min_height: minimum default height for child buttons.
811
812 <!-- ##### FUNCTION gtk_button_new_accel ##### -->
813 <para>
814
815 </para>
816
817 @uline_label: 
818 @accel_group: 
819 @Returns: 
820
821 <!-- ##### FUNCTION gtk_button_new_stock ##### -->
822 <para>
823
824 </para>
825
826 @stock_id: 
827 @accel_group: 
828 @Returns: 
829
830 <!-- ##### FUNCTION gtk_clist_construct ##### -->
831 <para>
832 Initializes a previously allocated #GtkCList widget for use.  This should not
833 normally be used to create a #GtkCList widget.  Use gtk_clist_new() instead.
834 </para>
835
836 @clist: A pointer to an uninitialized #GtkCList widget.
837 @columns: The number of columns the #GtkCList should have.
838 @titles: An array of strings that should be used as the titles i
839 of the columns.  There should be enough strings in the array for
840 the number of columns specified.
841
842 <!-- ##### FUNCTION gtk_color_selection_set_opacity ##### -->
843 <para>
844 Controls whether opacity can be set with the #GtkColorSelection.
845 If this functionality is enabled, the necessary additional widgets
846 are added to the #GtkColorSelection and the opacity value can be
847 retrieved via the fourth value in the color array returned by
848 the gtk_color_selection_get_color() function.
849 </para>
850
851 @colorsel: a #GtkColorSelection.
852 @use_opacity: a boolean indicating whether the opacity selection
853 is enabled.
854
855 <!-- ##### FUNCTION gtk_ctree_construct ##### -->
856 <para>
857 This function is not usually used by users.
858 </para>
859
860 @ctree: 
861 @columns: 
862 @tree_column: 
863 @titles: 
864
865 <!-- ##### FUNCTION gtk_editable_changed ##### -->
866 <para>
867 Causes the "changed" signal to be emitted.
868 </para>
869
870 @editable: a #GtkEditable widget.
871
872 <!-- ##### FUNCTION gtk_editable_claim_selection ##### -->
873 <para>
874 Claim or disclaim ownership of the PRIMARY X selection.
875 </para>
876
877 @editable: a #GtkEditable widget.
878 @claim: if %TRUE, claim the selection, otherwise, disclaim it.
879 @time: the timestamp for claiming the selection.
880
881 <!-- ##### FUNCTION gtk_font_selection_dialog_set_filter ##### -->
882 <para>
883 Sets one of the two font filters, to limit the fonts shown.
884 </para>
885
886 @fsd: a #GtkFontSelectionDialog.
887 @filter_type: which of the two font filters to set, either
888 #GTK_FONT_FILTER_BASE or #GTK_FONT_FILTER_USER. The user filter
889 can be changed by the user, but the base filter is permanent.
890 @font_type: the types of font to be shown. This is a bitwise combination of
891 #GTK_FONT_BITMAP, #GTK_FONT_SCALABLE and #GTK_FONT_SCALABLE_BITMAP,
892 or #GTK_FONT_ALL to show all three font types.
893 @foundries: a NULL-terminated array of strings containing foundry names which
894 will be shown, or NULL to show all foundries.
895 @weights: a NULL-terminated array of strings containing weight names which
896 will be shown, or NULL to show all weights.
897 @slants: a NULL-terminated array of strings containing slant names which
898 will be shown, or NULL to show all slants.
899 @setwidths: a NULL-terminated array of strings containing setwidth names which
900 will be shown, or NULL to show all setwidths.
901 @spacings: a NULL-terminated array of strings containing spacings which
902 will be shown, or NULL to show all spacings.
903 @charsets: a NULL-terminated array of strings containing charset names which
904 will be shown, or NULL to show all charsets.
905
906 <!-- ##### FUNCTION gtk_font_selection_set_filter ##### -->
907 <para>
908 Sets one of the two font filters, to limit the fonts shown.
909 </para>
910
911 @fontsel: a #GtkFontSelection.
912 @filter_type: which of the two font filters to set, either
913 #GTK_FONT_FILTER_BASE or #GTK_FONT_FILTER_USER. The user filter
914 can be changed by the user, but the base filter is permanent.
915 @font_type: the types of font to be shown. This is a bitwise combination of
916 #GTK_FONT_BITMAP, #GTK_FONT_SCALABLE and #GTK_FONT_SCALABLE_BITMAP,
917 or #GTK_FONT_ALL to show all three font types.
918 @foundries: a NULL-terminated array of strings containing foundry names which
919 will be shown, or NULL to show all foundries.
920 @weights: a NULL-terminated array of strings containing weight names which
921 will be shown, or NULL to show all weights.
922 @slants: a NULL-terminated array of strings containing slant names which
923 will be shown, or NULL to show all slants.
924 @setwidths: a NULL-terminated array of strings containing setwidth names which
925 will be shown, or NULL to show all setwidths.
926 @spacings: a NULL-terminated array of strings containing spacings which
927 will be shown, or NULL to show all spacings.
928 @charsets: a NULL-terminated array of strings containing charset names which
929 will be shown, or NULL to show all charsets.
930
931 <!-- ##### FUNCTION gtk_identifier_get_type ##### -->
932 <para>
933 Get the type of GtkIdentifier.
934 </para>
935
936 @Returns: GtkType -- the enumerated type of something.
937
938 <!-- ##### FUNCTION gtk_label_set_markup_with_accel ##### -->
939 <para>
940
941 </para>
942
943 @label: 
944 @str: 
945 @Returns: 
946
947 <!-- ##### FUNCTION gtk_list_store_set_cell ##### -->
948 <para>
949
950 </para>
951
952 @store: 
953 @iter: 
954 @column: 
955 @value: 
956
957 <!-- ##### FUNCTION gtk_menu_ensure_uline_accel_group ##### -->
958 <para>
959
960 </para>
961
962 @menu: 
963 @Returns: 
964
965 <!-- ##### FUNCTION gtk_menu_get_uline_accel_group ##### -->
966 <para>
967
968 </para>
969
970 @menu: 
971 @Returns: 
972
973 <!-- ##### FUNCTION gtk_object_arg_get ##### -->
974 <para>
975 Private function to get an argument and argument info from an object.
976 </para>
977
978 @object: the object whose argument should be retrieved.
979 @arg: the argument, for the name on input, the rest is filled on output.
980 @info: a #GtkArgInfo structure to optionally fill in.
981
982 <!-- ##### FUNCTION gtk_object_arg_get_info ##### -->
983 <para>
984 Query information about an argument type.
985 </para>
986
987 @object_type: type of object to query about.
988 @arg_name: name of the argument.
989 @info_p: pointer to be filled in with a pointer to the GtkArgInfo.
990 @Returns: an error message, or NULL on success.
991 It is the caller's responsibility to call g_free() in the event of error.
992
993 <!-- ##### FUNCTION gtk_object_arg_set ##### -->
994 <para>
995 Private function to set an argument and argument info to an object.
996 </para>
997
998 @object: the object whose argument should be set.
999 @arg: the argument.
1000 @info: infomation about this type of argument in general.
1001
1002 <!-- ##### FUNCTION gtk_object_args_collect ##### -->
1003 <para>
1004 Private: Gets an array of #GtkArgs from a va_list C structure.
1005 </para>
1006
1007 @object_type: the type of object to collect arguments for.
1008 @arg_list_p: pointer to be filled in with a list of parsed arguments.
1009 @info_list_p: optional pointer for a returned list #GtkArgInfos.
1010 @first_arg_name: name of first argument.
1011 @var_args: value of first argument, followed by more key/value pairs,
1012 terminated by NULL.
1013 @Returns: an error message, or NULL on success.
1014 It is the caller's responsibility to call g_free() in the event of error.
1015
1016 <!-- ##### FUNCTION gtk_object_class_add_signals ##### -->
1017 <para>
1018 Add an array of signals to a #GtkObjectClass.
1019 Usually this is called when registering a new type of object.
1020 </para>
1021
1022 @klass: the object class to append signals to.
1023 @signals: the signals to append.
1024 @nsignals: the number of signals being appended.
1025
1026 <!-- ##### FUNCTION gtk_object_class_user_signal_new ##### -->
1027 <para>
1028 Define a signal-handler for a new signal on an already defined
1029 object.
1030 </para>
1031 <para>
1032 See the signal documentation for more general information.
1033 </para>
1034
1035 @klass: the object class to define the signal for.
1036 @name: the name of the signal.
1037 @signal_flags: the default emission behavior for the signal.
1038 See gtk_signal_new().
1039 @marshaller: a function that will take an array of GtkArgs
1040 and invoke the appropriate handler with the normal calling
1041 conventions.
1042 @return_val: specify the return-value type for the signal
1043 (or GTK_TYPE_NONE for no return-value).
1044 @nparams: specify the number of parameters the signal
1045 receives from the caller of gtk_signal_emit().
1046 @Varargs: list of nparams #GtkTypes to pass to the signal handlers.
1047 @Returns: the signal id.  (See #GtkSignals)
1048
1049 <!-- ##### FUNCTION gtk_object_class_user_signal_newv ##### -->
1050 <para>
1051 Define a signal-handler for a new signal on an already defined
1052 object.
1053 </para>
1054
1055 @klass: the object class to define the signal for.
1056 @name: the name of the signal.
1057 @signal_flags: the default emission behavior for the signal.
1058 See gtk_signal_new().
1059 @marshaller: takes a GtkObject, a #GtkSignalFunc, and an array
1060 of arguments, and invokes the function using the appropriate
1061 calling conventions.  Usually just select a function
1062 out of gtkmarshal.h.
1063 @return_val: specify the return-value type for the signal (possibly
1064 #GTK_TYPE_NONE).
1065 @nparams: specify the number of parameters the signal
1066 receives from the caller of gtk_signal_emit().
1067 @params: array of #GtkTypes the signal handlers for this signal
1068 should have in their prototype (of length nparams).
1069 @Returns: the signal id.  (See #GtkSignals)
1070
1071 <!-- ##### FUNCTION gtk_object_constructed ##### -->
1072 <para>
1073 Mark an allocated object as constructed.
1074 This is used for situations
1075 that require precise control of the construction process.
1076 </para>
1077 <para>
1078 This is done when gtk_object_default_construct() is inadequate.
1079 In #GtkCList the need arises because #GtkCList does construction work that
1080 must happen <emphasis>after</emphasis> its derivers.  This work
1081 cannot be done in an initializer function, so an alternate
1082 constructor is mandatory.  It calls gtk_object_constructed() to
1083 indicate it has done its job, so that no other constructor will
1084 be invoked.
1085 </para>
1086 <para>
1087 Normally this function is just automatically run from
1088 gtk_object_default_construct().
1089 </para>
1090
1091 @object: object which has been constructed.  This is usually
1092 done automatically by gtk_object_new() and gtk_object_newv().
1093
1094 <!-- ##### FUNCTION gtk_object_default_construct ##### -->
1095 <para>
1096 This function is called to construct arguments that haven't been initialized
1097 but have the #GTK_ARG_CONSTRUCT flag set.
1098 </para>
1099 <para>
1100 All number arguments are set to 0.  All pointers and strings
1101 are set to NULL.
1102 </para>
1103 <para>
1104 Normally invoked by gtk_object_new() automatically; gtk_type_new() can
1105 be used to bypass it.
1106 </para>
1107
1108 @object: the object to initialize.
1109
1110 <!-- ##### FUNCTION gtk_object_getv ##### -->
1111 <para>
1112 Gets an array of argument values from an object.
1113 </para>
1114
1115 @object: the object to get arguments from.
1116 @n_args: the number of arguments to query.
1117 @args: the arguments to fill in.
1118
1119 <!-- ##### FUNCTION gtk_object_newv ##### -->
1120 <para>
1121 Construct an object with an array of arguments.
1122 </para>
1123
1124 @object_type: the type of the object to create.
1125 @n_args: the number of arguments to set.
1126 @args: an array of n_args arguments (which are name and value pairs).
1127 @Returns: the new GtkObject.
1128
1129 <!-- ##### FUNCTION gtk_object_query_args ##### -->
1130 <para>
1131 Get all the arguments that may be used for a given type.
1132 </para>
1133 <para>
1134 In Java, this type of mechanism is called 
1135 <wordasword>introspection</wordasword>.  It is used by applications
1136 like Glade, that have to determine what can be done to an object
1137 at run-time.
1138 </para>
1139
1140 @class_type: the GtkType of the ObjectClass
1141 (returned from GTK_OBJECT_CLASS(class)-&gt;type for example).
1142 @arg_flags: if non-NULL, obtains the #GtkArgFlags that apply to
1143 each argument.  You must g_free() this if you request it.
1144 @n_args: the number of arguments is returned in this field.
1145 @Returns: an array of arguments, that you must deallocate with g_free().
1146
1147 <!-- ##### FUNCTION gtk_object_setv ##### -->
1148 <para>
1149 Set an array of arguments.
1150 </para>
1151
1152 @object: the object whose arguments should be set.
1153 @n_args: the number of arguments to set.
1154 @args: the desired values, as an array of #GtkArgs (which contain 
1155 the names, types, and values of the arguments).
1156
1157 <!-- ##### FUNCTION gtk_paned_compute_position ##### -->
1158 <para>
1159 Internal function used by #GtkHPaned and #GtkVPaned
1160 </para>
1161
1162 @paned: 
1163 @allocation: 
1164 @child1_req: 
1165 @child2_req: 
1166
1167 <!-- ##### FUNCTION gtk_paned_set_handle_size ##### -->
1168 <para>
1169 Set the the handle size to @size x @size pixels.
1170 </para>
1171
1172 @paned: a paned widget
1173 @size: the size in pixels
1174
1175 <!-- ##### FUNCTION gtk_rc_init ##### -->
1176 <para>
1177 Internal function.
1178 </para>
1179
1180
1181 <!-- ##### FUNCTION gtk_ruler_draw_pos ##### -->
1182 <para>
1183
1184 </para>
1185
1186 @ruler: the gtkruler
1187
1188 <!-- ##### FUNCTION gtk_ruler_draw_ticks ##### -->
1189 <para>
1190
1191 </para>
1192
1193 @ruler: the gtkruler
1194
1195 <!-- ##### FUNCTION gtk_signal_add_emission_hook ##### -->
1196 <para>
1197 Add an emission hook for a type of signal, for any object.
1198 </para>
1199
1200 @signal_id: the type of signal to hook for.
1201 @hook_func: the function to invoke to handle the emission hook.
1202 @data: the user data passed in to hook_func.
1203 @Returns: the id (that you may pass as a parameter
1204 to gtk_signal_remove_emission_hook()).
1205 @i: 
1206 @h: 
1207 @d: 
1208
1209 <!-- ##### FUNCTION gtk_signal_add_emission_hook_full ##### -->
1210 <para>
1211 Add an emission hook for a type of signal, for any object.
1212 (with control of what happens when the hook is
1213 destroyed).
1214 </para>
1215
1216 @signal_id: the type of signal add the hook for.
1217 @hook_func: the function to invoke to handle the hook.
1218 @data: the user data passed in to hook_func.
1219 @destroy: a function to invoke when the hook is destroyed,
1220 to clean up any allocation done just for this
1221 signal handler.
1222 @Returns: the id (that you may pass as a parameter
1223 to gtk_signal_remove_emission_hook()).
1224
1225 <!-- ##### FUNCTION gtk_signal_handler_pending_by_id ##### -->
1226 <para>
1227 Returns whether a connection id is valid (and optionally not blocked).
1228 </para>
1229
1230 @object: the object to search for the desired handler.
1231 @handler_id: the connection id.
1232 @may_be_blocked: whether it is acceptable to return a blocked
1233 handler.
1234 @Returns: TRUE if the signal exists and wasn't blocked,
1235 unless #may_be_blocked was specified.  FALSE otherwise.
1236
1237 <!-- ##### FUNCTION gtk_signal_handlers_destroy ##### -->
1238 <para>
1239 Destroy all the signal handlers connected to an object.
1240 This is done automatically when the object is destroyed.
1241 </para>
1242 <para>
1243 This function is labeled private.
1244 </para>
1245
1246 @object: the object whose signal handlers should be destroyed.
1247
1248 <!-- ##### FUNCTION gtk_signal_init ##### -->
1249 <para>
1250
1251 </para>
1252
1253
1254 <!-- ##### FUNCTION gtk_signal_n_emissions ##### -->
1255 <para>
1256 Find out the recursion depth of emissions for a particular type
1257 of signal and object.  (So it will
1258 always return 0 or 1 if #GTK_RUN_NO_RECURSE is specified)
1259 This is a way to avoid recursion:  you can see if
1260 you are currently running in that signal handler and emit it only
1261 if you are.
1262 </para>
1263 <para>Another way to look at it is that this number increases
1264 by one when #gtk_signal_emit(), et al, are called,
1265 and decreases by one when #gtk_signal_emit() returns.
1266 </para>
1267
1268 @object: the object with the signal handler.
1269 @signal_id: the signal id.
1270 @Returns: the recursion depth of emissions of this signal for this
1271 object.
1272
1273 <!-- ##### FUNCTION gtk_signal_n_emissions_by_name ##### -->
1274 <para>
1275 Find out the recursion depth of emissions for a particular type
1276 of signal and object.  Just like gtk_signal_n_emissions()
1277 except it will lookup the signal id for you.
1278 </para>
1279
1280 @object: the object with the signal handler.
1281 @name: the signal name.
1282 @Returns: the recursion depth of emissions of this signal for this
1283 object.
1284
1285 <!-- ##### FUNCTION gtk_signal_query ##### -->
1286 <para>
1287 Obtain information about a signal.
1288 </para>
1289
1290 @signal_id: the signal type identifier.
1291 @Returns: a pointer to a GtkSignalQuery structure
1292 which contains all the information, or NULL.
1293 The pointer is allocated just for you:  you must g_free() it.
1294
1295 <!-- ##### FUNCTION gtk_signal_remove_emission_hook ##### -->
1296 <para>
1297 Delete an emission hook. (see gtk_signal_add_emission_hook())
1298 </para>
1299
1300 @signal_id: the id of the signal type.
1301 @hook_id: the id of the emission handler, returned by add_emission_hook().
1302 @i: 
1303 @h: 
1304
1305 <!-- ##### FUNCTION gtk_signal_set_funcs ##### -->
1306 <para>
1307 These set default functions to call when the user didn't
1308 supply a function when connecting.  (These are rarely
1309 used, and probably only for language bindings)
1310 </para>
1311 <para>
1312 By default, there are no such functions.
1313 </para>
1314
1315 @marshal_func: the function to invoke on every handlers for which there
1316 isn't a function pointer.  May be NULL.
1317 @destroy_func: the function to invoke when each hook is destroyed.
1318 May be NULL.
1319
1320 <!-- ##### FUNCTION gtk_spin_button_set_shadow_type ##### -->
1321 <para>
1322 Creates a border around the arrows of a #GtkSpinButton. The type of border is determined by @shadow_type.
1323 </para>
1324
1325 @spin_button: a #GtkSpinButton
1326 @shadow_type: the new border type.
1327
1328 <!-- ##### FUNCTION gtk_trace_referencing ##### -->
1329 <para>
1330 Private: print debugging information while doing a gtk_object_ref() or 
1331 a gtk_object_unref().
1332 </para>
1333
1334 @object: object to reference or unreference.
1335 @func: name of caller's function to print (used within macros).
1336 @dummy: unused.
1337 @line: line number (used within macros).
1338 @do_ref: whether to reference or unreference.
1339
1340 <!-- ##### FUNCTION gtk_tree_model_ref_iter ##### -->
1341 <para>
1342
1343 </para>
1344
1345 @tree_model: 
1346 @iter: 
1347
1348 <!-- ##### FUNCTION gtk_tree_model_unref_iter ##### -->
1349 <para>
1350
1351 </para>
1352
1353 @tree_model: 
1354 @iter: 
1355
1356 <!-- ##### FUNCTION gtk_tree_store_set_cell ##### -->
1357 <para>
1358
1359 </para>
1360
1361 @tree_store: 
1362 @iter: 
1363 @column: 
1364 @value: 
1365
1366 <!-- ##### FUNCTION gtk_type_check_class_cast ##### -->
1367 <para>
1368 Given a GtkTypeClass pointer @klass, and a GtkType @cast_type, make
1369 sure that it's okay to cast something of that @klass into a @cast_type.
1370 </para>
1371
1372 @klass: GtkTypeClass*
1373 @cast_type: GtkType
1374 @Returns: Always return @klass.
1375
1376 <!-- ##### FUNCTION gtk_type_check_object_cast ##### -->
1377 <para>
1378 Given a pointer to a GtkTypeObject @type_object, and a GtkType @cast_type,
1379 make sure that it's okay to cast @type_object into a @cast_type.
1380 </para>
1381
1382 @type_object: GtkTypeObject*
1383 @cast_type: GtkType
1384 @Returns: the same GtkTypeObject* as @type_object
1385
1386 <!-- ##### FUNCTION gtk_type_children_types ##### -->
1387 <para>
1388 Return the pointer to the type's children's types.
1389 </para>
1390
1391 @type: GtkType
1392 @Returns: pointer to a GList
1393
1394 <!-- ##### FUNCTION gtk_type_describe_heritage ##### -->
1395 <para>
1396 Print the types @type inherits from.
1397 </para>
1398
1399 @type: GtkType
1400
1401 <!-- ##### FUNCTION gtk_type_describe_tree ##### -->
1402 <para>
1403 Given a @type, describe all of its children, and their children.  Only
1404 show the size if @show_size is true.
1405 </para>
1406
1407 @type: GtkType
1408 @show_size: gboolean
1409
1410 <!-- ##### FUNCTION gtk_type_free ##### -->
1411 <para>
1412 Given the type of an object and a pointer to it, the object is freed.
1413 </para>
1414
1415 @type: GtkType
1416 @mem: gpointer to the object
1417
1418 <!-- ##### FUNCTION gtk_type_get_varargs_type ##### -->
1419 <para>
1420 Get the varargs type associated with @foreign_type
1421 </para>
1422
1423 @foreign_type: GtkType
1424 @Returns: GtkType
1425
1426 <!-- ##### FUNCTION gtk_type_parent_class ##### -->
1427 <para>
1428 Return the class of the parent.  Initialize the class if necessary.
1429 Return NULL if anything goes wrong.
1430 </para>
1431
1432 @type: GtkType
1433 @Returns: gpointer to the klass.
1434
1435 <!-- ##### FUNCTION gtk_type_query ##### -->
1436 <para>
1437 Given a type, return various interesting parameters of the type.
1438 </para>
1439
1440 @type: GtkType
1441 @Returns: GtkTypeQuery*
1442
1443 <!-- ##### FUNCTION gtk_type_register_enum ##### -->
1444 <para>
1445 Register a new set of enum @values and give them the name in
1446 @type_name.
1447 </para>
1448
1449 @type_name: must not be null.
1450 @values: GtkEnumValue*
1451 @Returns: 
1452
1453 <!-- ##### FUNCTION gtk_type_register_flags ##### -->
1454 <para>
1455 Register a new set of flags @values and give them the name in
1456 @type_name.
1457 </para>
1458
1459 @type_name: must not be null.
1460 @values: GtkFlagValue*
1461 @Returns: 
1462
1463 <!-- ##### FUNCTION gtk_type_set_chunk_alloc ##### -->
1464 <para>
1465 Set the mem_chunk size so it will hold @n_chunks of the objects of that @type.
1466 </para>
1467
1468 @type: There must be an unlocked TypeNode associated with this type otherwise nothing happens.
1469 @n_chunks: 
1470
1471 <!-- ##### FUNCTION gtk_type_set_varargs_type ##### -->
1472 <para>
1473 Set the varargs type for a fundamental type @foreign_type.
1474 </para>
1475
1476 @foreign_type: Must be a GtkType with a sequence number of zero.  Must not be a
1477 fundamental type.
1478 @varargs_type: Must be a GtkType which is either structured or flag, or NONE.
1479
1480 <!-- ##### FUNCTION gtk_widget_activate_mnemonic ##### -->
1481 <para>
1482
1483 </para>
1484
1485 @widget: 
1486 @group_cycling: 
1487 @Returns: 
1488
1489 <!-- ##### FUNCTION gtk_widget_popup ##### -->
1490 <para>
1491
1492 </para>
1493
1494 @widget: 
1495 @x: 
1496 @y: 
1497
1498 <!-- ##### FUNCTION gtk_window_activate_mnemonic ##### -->
1499 <para>
1500
1501 </para>
1502
1503 @window: 
1504 @keyval: 
1505 @modifier: 
1506 @Returns: 
1507
1508 <!-- ##### FUNCTION gtk_window_get_default_accel_group ##### -->
1509 <para>
1510
1511 </para>
1512
1513 @window: 
1514 @Returns: 
1515