]> Pileus Git - ~andy/gtk/blob - docs/reference/gtk/tmpl/gtk-unused.sgml
BOXED,BOXED,BOXED,BOXED): new marshaller.
[~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 <!-- ##### ENUM GtkPrivateFlags ##### -->
602 <para>
603
604 </para>
605
606 @PRIVATE_GTK_USER_STYLE: 
607 @PRIVATE_GTK_RESIZE_PENDING: 
608 @PRIVATE_GTK_RESIZE_NEEDED: 
609 @PRIVATE_GTK_LEAVE_PENDING: 
610 @PRIVATE_GTK_HAS_SHAPE_MASK: 
611 @PRIVATE_GTK_IN_REPARENT: 
612 @PRIVATE_GTK_DIRECTION_SET: 
613 @PRIVATE_GTK_DIRECTION_LTR: 
614
615 <!-- ##### USER_FUNCTION GtkSignalDestroy ##### -->
616 <para>
617 A function which you can use to clean up when the
618 signal handler is destroyed.
619 </para>
620 <para>
621 For example, if your handler requires a few variables
622 that you made into a struct and allocated (using g_new()
623 or something), then you will probably want to free
624 it as soon as the hook is destroyed.  This will
625 allow you to do that. (For this in particular
626 it is convenient to pass g_free() as a #GtkSignalDestroy
627 function).
628 </para>
629
630 @data: The user data associated with the hook that is being
631 destroyed.
632
633 <!-- ##### USER_FUNCTION GtkSignalMarshal ##### -->
634 <para>
635 This is currently a hack left in for a scheme wrapper library.
636 It may be removed.
637 </para>
638 <para>
639 Don't use it.
640 </para>
641
642 @object: The object which emits the signal.
643 @data: The user data associated with the hook.
644 @nparams: The number of parameters to the function.
645 @args: The actual values of the arguments.
646 @arg_types: The types of the arguments.
647 @return_type: The type of the return value from the function
648 or #GTK_TYPE_NONE for no return value.
649
650 <!-- ##### STRUCT GtkSignalQuery ##### -->
651 <para>
652 This structure contains all the information about a particular
653 signal:  its name, the type it affects, the signature of the handlers,
654 and its unique identifying integer.
655 </para>
656
657 @object_type: 
658 @signal_id: 
659 @signal_name: 
660 @is_user_signal: 
661 @signal_flags: 
662 @return_val: 
663 @nparams: 
664 @params: 
665
666 <!-- ##### ARG GtkSpinButton:shadow-type ##### -->
667 <para>
668 the type of border that surrounds the arrows of a spin button.
669 </para>
670
671
672 <!-- ##### STRUCT GtkStatusbarMsg ##### -->
673 <para>
674 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.
675 </para>
676
677 @text: 
678 @context_id: 
679 @message_id: 
680
681 <!-- ##### ARG GtkTextTag:justify ##### -->
682 <para>
683 A #GtkJustification for the text. This is only used when the tag is
684 applied to the first character in a paragraph.
685 </para>
686
687
688 <!-- ##### ARG GtkTextTag:left-wrapped-line-margin ##### -->
689 <para>
690 Pixel width of the left margin of the text for lines after the first
691 line in a wrapped paragraph.
692 </para>
693
694
695 <!-- ##### ARG GtkTextTag:left-wrapped-line-margin-set ##### -->
696 <para>
697
698 </para>
699
700
701 <!-- ##### ARG GtkTextTag:offset ##### -->
702 <para>
703 Pixels to offset the text horizontally or vertically, useful to
704 produce superscript and subscript.
705 </para>
706
707
708 <!-- ##### ARG GtkTextView:justify ##### -->
709 <para>
710
711 </para>
712
713
714 <!-- ##### ARG GtkTextView:wrap-mode ##### -->
715 <para>
716
717 </para>
718
719
720 <!-- ##### SIGNAL GtkWidget::activate-mnemonic ##### -->
721 <para>
722
723 </para>
724
725 @widget: the object which received the signal.
726 @arg1: 
727 @Returns: 
728
729 <!-- ##### SIGNAL GtkWidget::debug-msg ##### -->
730 <para>
731
732 </para>
733
734 @widget: the object which received the signal.
735 @message: 
736
737 <!-- ##### SIGNAL GtkWidget::draw ##### -->
738 <para>
739
740 </para>
741
742 @widget: the object which received the signal.
743 @area: 
744
745 <!-- ##### SIGNAL GtkWidget::draw-default ##### -->
746 <para>
747
748 </para>
749
750 @widget: the object which received the signal.
751
752 <!-- ##### SIGNAL GtkWidget::draw-focus ##### -->
753 <para>
754
755 </para>
756
757 @widget: the object which received the signal.
758
759 <!-- ##### SIGNAL GtkWidget::size-request ##### -->
760 <para>
761
762 </para>
763
764 @widget: the object which received the signal.
765 @requisition: 
766
767 <!-- ##### FUNCTION gtk_button_box_child_requisition ##### -->
768 <para>\r
769 This is an internally used function and should never be called from an\r
770 application.\r
771 </para>
772
773 @widget: 
774 @nvis_children: 
775 @width: 
776 @height: 
777
778 <!-- ##### FUNCTION gtk_button_box_get_child_ipadding_default ##### -->
779 <para>\r
780 The internal padding of a button is the amount of space between the outside\r
781 of the button and the widget it contains. This function gets the default\r
782 amount of horizontal and vertical padding, placing the results in @ipad_x\r
783 and @ipad_y, respectively.\r
784 </para>
785
786 @ipad_x: the default horizontal internal button padding.
787 @ipad_y: the default vertical internal button padding.
788
789 <!-- ##### FUNCTION gtk_button_box_get_child_size_default ##### -->
790 <para>\r
791 Retrieves the default minimum width and height for all button boxes, and\r
792 places the values in @min_width and @min_height, respectively.\r
793 </para>
794
795 @min_width: the default minimum width of a child widget.
796 @min_height: the default minimum height of a child widget.
797
798 <!-- ##### FUNCTION gtk_button_box_set_child_ipadding_default ##### -->
799 <para>\r
800 Sets the default number of pixels that pad each button in every button box.\r
801 </para>
802
803 @ipad_x: new default horizontal padding.
804 @ipad_y: new default vertical padding.
805
806 <!-- ##### FUNCTION gtk_button_box_set_child_size_default ##### -->
807 <para>\r
808 Sets the default size of child buttons.\r
809 </para>
810
811 @min_width: minimum default width for child buttons.
812 @min_height: minimum default height for child buttons.
813
814 <!-- ##### FUNCTION gtk_button_new_accel ##### -->
815 <para>
816
817 </para>
818
819 @uline_label: 
820 @accel_group: 
821 @Returns: 
822
823 <!-- ##### FUNCTION gtk_button_new_stock ##### -->
824 <para>
825
826 </para>
827
828 @stock_id: 
829 @accel_group: 
830 @Returns: 
831
832 <!-- ##### FUNCTION gtk_clist_construct ##### -->
833 <para>
834 Initializes a previously allocated #GtkCList widget for use.  This should not
835 normally be used to create a #GtkCList widget.  Use gtk_clist_new() instead.
836 </para>
837
838 @clist: A pointer to an uninitialized #GtkCList widget.
839 @columns: The number of columns the #GtkCList should have.
840 @titles: An array of strings that should be used as the titles i
841 of the columns.  There should be enough strings in the array for
842 the number of columns specified.
843
844 <!-- ##### FUNCTION gtk_color_selection_set_opacity ##### -->
845 <para>
846 Controls whether opacity can be set with the #GtkColorSelection.
847 If this functionality is enabled, the necessary additional widgets
848 are added to the #GtkColorSelection and the opacity value can be
849 retrieved via the fourth value in the color array returned by
850 the gtk_color_selection_get_color() function.
851 </para>
852
853 @colorsel: a #GtkColorSelection.
854 @use_opacity: a boolean indicating whether the opacity selection
855 is enabled.
856
857 <!-- ##### FUNCTION gtk_ctree_construct ##### -->
858 <para>
859 This function is not usually used by users.
860 </para>
861
862 @ctree: 
863 @columns: 
864 @tree_column: 
865 @titles: 
866
867 <!-- ##### FUNCTION gtk_editable_changed ##### -->
868 <para>
869 Causes the "changed" signal to be emitted.
870 </para>
871
872 @editable: a #GtkEditable widget.
873
874 <!-- ##### FUNCTION gtk_editable_claim_selection ##### -->
875 <para>
876 Claim or disclaim ownership of the PRIMARY X selection.
877 </para>
878
879 @editable: a #GtkEditable widget.
880 @claim: if %TRUE, claim the selection, otherwise, disclaim it.
881 @time: the timestamp for claiming the selection.
882
883 <!-- ##### FUNCTION gtk_font_selection_dialog_set_filter ##### -->
884 <para>
885 Sets one of the two font filters, to limit the fonts shown.
886 </para>
887
888 @fsd: a #GtkFontSelectionDialog.
889 @filter_type: which of the two font filters to set, either
890 #GTK_FONT_FILTER_BASE or #GTK_FONT_FILTER_USER. The user filter
891 can be changed by the user, but the base filter is permanent.
892 @font_type: the types of font to be shown. This is a bitwise combination of
893 #GTK_FONT_BITMAP, #GTK_FONT_SCALABLE and #GTK_FONT_SCALABLE_BITMAP,
894 or #GTK_FONT_ALL to show all three font types.
895 @foundries: a NULL-terminated array of strings containing foundry names which
896 will be shown, or NULL to show all foundries.
897 @weights: a NULL-terminated array of strings containing weight names which
898 will be shown, or NULL to show all weights.
899 @slants: a NULL-terminated array of strings containing slant names which
900 will be shown, or NULL to show all slants.
901 @setwidths: a NULL-terminated array of strings containing setwidth names which
902 will be shown, or NULL to show all setwidths.
903 @spacings: a NULL-terminated array of strings containing spacings which
904 will be shown, or NULL to show all spacings.
905 @charsets: a NULL-terminated array of strings containing charset names which
906 will be shown, or NULL to show all charsets.
907
908 <!-- ##### FUNCTION gtk_font_selection_set_filter ##### -->
909 <para>
910 Sets one of the two font filters, to limit the fonts shown.
911 </para>
912
913 @fontsel: a #GtkFontSelection.
914 @filter_type: which of the two font filters to set, either
915 #GTK_FONT_FILTER_BASE or #GTK_FONT_FILTER_USER. The user filter
916 can be changed by the user, but the base filter is permanent.
917 @font_type: the types of font to be shown. This is a bitwise combination of
918 #GTK_FONT_BITMAP, #GTK_FONT_SCALABLE and #GTK_FONT_SCALABLE_BITMAP,
919 or #GTK_FONT_ALL to show all three font types.
920 @foundries: a NULL-terminated array of strings containing foundry names which
921 will be shown, or NULL to show all foundries.
922 @weights: a NULL-terminated array of strings containing weight names which
923 will be shown, or NULL to show all weights.
924 @slants: a NULL-terminated array of strings containing slant names which
925 will be shown, or NULL to show all slants.
926 @setwidths: a NULL-terminated array of strings containing setwidth names which
927 will be shown, or NULL to show all setwidths.
928 @spacings: a NULL-terminated array of strings containing spacings which
929 will be shown, or NULL to show all spacings.
930 @charsets: a NULL-terminated array of strings containing charset names which
931 will be shown, or NULL to show all charsets.
932
933 <!-- ##### FUNCTION gtk_identifier_get_type ##### -->
934 <para>
935 Get the type of GtkIdentifier.
936 </para>
937
938 @Returns: GtkType -- the enumerated type of something.
939
940 <!-- ##### FUNCTION gtk_label_set_markup_with_accel ##### -->
941 <para>
942
943 </para>
944
945 @label: 
946 @str: 
947 @Returns: 
948
949 <!-- ##### FUNCTION gtk_list_store_set_cell ##### -->
950 <para>
951
952 </para>
953
954 @store: 
955 @iter: 
956 @column: 
957 @value: 
958
959 <!-- ##### FUNCTION gtk_menu_ensure_uline_accel_group ##### -->
960 <para>
961
962 </para>
963
964 @menu: 
965 @Returns: 
966
967 <!-- ##### FUNCTION gtk_menu_get_uline_accel_group ##### -->
968 <para>
969
970 </para>
971
972 @menu: 
973 @Returns: 
974
975 <!-- ##### FUNCTION gtk_object_arg_get ##### -->
976 <para>
977 Private function to get an argument and argument info from an object.
978 </para>
979
980 @object: the object whose argument should be retrieved.
981 @arg: the argument, for the name on input, the rest is filled on output.
982 @info: a #GtkArgInfo structure to optionally fill in.
983
984 <!-- ##### FUNCTION gtk_object_arg_get_info ##### -->
985 <para>
986 Query information about an argument type.
987 </para>
988
989 @object_type: type of object to query about.
990 @arg_name: name of the argument.
991 @info_p: pointer to be filled in with a pointer to the GtkArgInfo.
992 @Returns: an error message, or NULL on success.
993 It is the caller's responsibility to call g_free() in the event of error.
994
995 <!-- ##### FUNCTION gtk_object_arg_set ##### -->
996 <para>
997 Private function to set an argument and argument info to an object.
998 </para>
999
1000 @object: the object whose argument should be set.
1001 @arg: the argument.
1002 @info: infomation about this type of argument in general.
1003
1004 <!-- ##### FUNCTION gtk_object_args_collect ##### -->
1005 <para>
1006 Private: Gets an array of #GtkArgs from a va_list C structure.
1007 </para>
1008
1009 @object_type: the type of object to collect arguments for.
1010 @arg_list_p: pointer to be filled in with a list of parsed arguments.
1011 @info_list_p: optional pointer for a returned list #GtkArgInfos.
1012 @first_arg_name: name of first argument.
1013 @var_args: value of first argument, followed by more key/value pairs,
1014 terminated by NULL.
1015 @Returns: an error message, or NULL on success.
1016 It is the caller's responsibility to call g_free() in the event of error.
1017
1018 <!-- ##### FUNCTION gtk_object_class_add_signals ##### -->
1019 <para>
1020 Add an array of signals to a #GtkObjectClass.
1021 Usually this is called when registering a new type of object.
1022 </para>
1023
1024 @klass: the object class to append signals to.
1025 @signals: the signals to append.
1026 @nsignals: the number of signals being appended.
1027
1028 <!-- ##### FUNCTION gtk_object_class_user_signal_new ##### -->
1029 <para>
1030 Define a signal-handler for a new signal on an already defined
1031 object.
1032 </para>
1033 <para>
1034 See the signal documentation for more general information.
1035 </para>
1036
1037 @klass: the object class to define the signal for.
1038 @name: the name of the signal.
1039 @signal_flags: the default emission behavior for the signal.
1040 See gtk_signal_new().
1041 @marshaller: a function that will take an array of GtkArgs
1042 and invoke the appropriate handler with the normal calling
1043 conventions.
1044 @return_val: specify the return-value type for the signal
1045 (or GTK_TYPE_NONE for no return-value).
1046 @nparams: specify the number of parameters the signal
1047 receives from the caller of gtk_signal_emit().
1048 @Varargs: list of nparams #GtkTypes to pass to the signal handlers.
1049 @Returns: the signal id.  (See #GtkSignals)
1050
1051 <!-- ##### FUNCTION gtk_object_class_user_signal_newv ##### -->
1052 <para>
1053 Define a signal-handler for a new signal on an already defined
1054 object.
1055 </para>
1056
1057 @klass: the object class to define the signal for.
1058 @name: the name of the signal.
1059 @signal_flags: the default emission behavior for the signal.
1060 See gtk_signal_new().
1061 @marshaller: takes a GtkObject, a #GtkSignalFunc, and an array
1062 of arguments, and invokes the function using the appropriate
1063 calling conventions.  Usually just select a function
1064 out of gtkmarshal.h.
1065 @return_val: specify the return-value type for the signal (possibly
1066 #GTK_TYPE_NONE).
1067 @nparams: specify the number of parameters the signal
1068 receives from the caller of gtk_signal_emit().
1069 @params: array of #GtkTypes the signal handlers for this signal
1070 should have in their prototype (of length nparams).
1071 @Returns: the signal id.  (See #GtkSignals)
1072
1073 <!-- ##### FUNCTION gtk_object_constructed ##### -->
1074 <para>
1075 Mark an allocated object as constructed.
1076 This is used for situations
1077 that require precise control of the construction process.
1078 </para>
1079 <para>
1080 This is done when gtk_object_default_construct() is inadequate.
1081 In #GtkCList the need arises because #GtkCList does construction work that
1082 must happen <emphasis>after</emphasis> its derivers.  This work
1083 cannot be done in an initializer function, so an alternate
1084 constructor is mandatory.  It calls gtk_object_constructed() to
1085 indicate it has done its job, so that no other constructor will
1086 be invoked.
1087 </para>
1088 <para>
1089 Normally this function is just automatically run from
1090 gtk_object_default_construct().
1091 </para>
1092
1093 @object: object which has been constructed.  This is usually
1094 done automatically by gtk_object_new() and gtk_object_newv().
1095
1096 <!-- ##### FUNCTION gtk_object_default_construct ##### -->
1097 <para>
1098 This function is called to construct arguments that haven't been initialized
1099 but have the #GTK_ARG_CONSTRUCT flag set.
1100 </para>
1101 <para>
1102 All number arguments are set to 0.  All pointers and strings
1103 are set to NULL.
1104 </para>
1105 <para>
1106 Normally invoked by gtk_object_new() automatically; gtk_type_new() can
1107 be used to bypass it.
1108 </para>
1109
1110 @object: the object to initialize.
1111
1112 <!-- ##### FUNCTION gtk_object_getv ##### -->
1113 <para>
1114 Gets an array of argument values from an object.
1115 </para>
1116
1117 @object: the object to get arguments from.
1118 @n_args: the number of arguments to query.
1119 @args: the arguments to fill in.
1120
1121 <!-- ##### FUNCTION gtk_object_newv ##### -->
1122 <para>
1123 Construct an object with an array of arguments.
1124 </para>
1125
1126 @object_type: the type of the object to create.
1127 @n_args: the number of arguments to set.
1128 @args: an array of n_args arguments (which are name and value pairs).
1129 @Returns: the new GtkObject.
1130
1131 <!-- ##### FUNCTION gtk_object_query_args ##### -->
1132 <para>
1133 Get all the arguments that may be used for a given type.
1134 </para>
1135 <para>
1136 In Java, this type of mechanism is called 
1137 <wordasword>introspection</wordasword>.  It is used by applications
1138 like Glade, that have to determine what can be done to an object
1139 at run-time.
1140 </para>
1141
1142 @class_type: the GtkType of the ObjectClass
1143 (returned from GTK_OBJECT_CLASS(class)-&gt;type for example).
1144 @arg_flags: if non-NULL, obtains the #GtkArgFlags that apply to
1145 each argument.  You must g_free() this if you request it.
1146 @n_args: the number of arguments is returned in this field.
1147 @Returns: an array of arguments, that you must deallocate with g_free().
1148
1149 <!-- ##### FUNCTION gtk_object_setv ##### -->
1150 <para>
1151 Set an array of arguments.
1152 </para>
1153
1154 @object: the object whose arguments should be set.
1155 @n_args: the number of arguments to set.
1156 @args: the desired values, as an array of #GtkArgs (which contain 
1157 the names, types, and values of the arguments).
1158
1159 <!-- ##### FUNCTION gtk_paned_compute_position ##### -->
1160 <para>
1161 Internal function used by #GtkHPaned and #GtkVPaned
1162 </para>
1163
1164 @paned: 
1165 @allocation: 
1166 @child1_req: 
1167 @child2_req: 
1168
1169 <!-- ##### FUNCTION gtk_rc_init ##### -->
1170 <para>
1171 Internal function.
1172 </para>
1173
1174
1175 <!-- ##### FUNCTION gtk_ruler_draw_pos ##### -->
1176 <para>
1177
1178 </para>
1179
1180 @ruler: the gtkruler
1181
1182 <!-- ##### FUNCTION gtk_ruler_draw_ticks ##### -->
1183 <para>
1184
1185 </para>
1186
1187 @ruler: the gtkruler
1188
1189 <!-- ##### FUNCTION gtk_signal_add_emission_hook ##### -->
1190 <para>
1191 Add an emission hook for a type of signal, for any object.
1192 </para>
1193
1194 @signal_id: the type of signal to hook for.
1195 @hook_func: the function to invoke to handle the emission hook.
1196 @data: the user data passed in to hook_func.
1197 @Returns: the id (that you may pass as a parameter
1198 to gtk_signal_remove_emission_hook()).
1199 @i: 
1200 @h: 
1201 @d: 
1202
1203 <!-- ##### FUNCTION gtk_signal_add_emission_hook_full ##### -->
1204 <para>
1205 Add an emission hook for a type of signal, for any object.
1206 (with control of what happens when the hook is
1207 destroyed).
1208 </para>
1209
1210 @signal_id: the type of signal add the hook for.
1211 @hook_func: the function to invoke to handle the hook.
1212 @data: the user data passed in to hook_func.
1213 @destroy: a function to invoke when the hook is destroyed,
1214 to clean up any allocation done just for this
1215 signal handler.
1216 @Returns: the id (that you may pass as a parameter
1217 to gtk_signal_remove_emission_hook()).
1218
1219 <!-- ##### FUNCTION gtk_signal_handler_pending_by_id ##### -->
1220 <para>
1221 Returns whether a connection id is valid (and optionally not blocked).
1222 </para>
1223
1224 @object: the object to search for the desired handler.
1225 @handler_id: the connection id.
1226 @may_be_blocked: whether it is acceptable to return a blocked
1227 handler.
1228 @Returns: TRUE if the signal exists and wasn't blocked,
1229 unless #may_be_blocked was specified.  FALSE otherwise.
1230
1231 <!-- ##### FUNCTION gtk_signal_handlers_destroy ##### -->
1232 <para>
1233 Destroy all the signal handlers connected to an object.
1234 This is done automatically when the object is destroyed.
1235 </para>
1236 <para>
1237 This function is labeled private.
1238 </para>
1239
1240 @object: the object whose signal handlers should be destroyed.
1241
1242 <!-- ##### FUNCTION gtk_signal_init ##### -->
1243 <para>
1244
1245 </para>
1246
1247
1248 <!-- ##### FUNCTION gtk_signal_n_emissions ##### -->
1249 <para>
1250 Find out the recursion depth of emissions for a particular type
1251 of signal and object.  (So it will
1252 always return 0 or 1 if #GTK_RUN_NO_RECURSE is specified)
1253 This is a way to avoid recursion:  you can see if
1254 you are currently running in that signal handler and emit it only
1255 if you are.
1256 </para>
1257 <para>Another way to look at it is that this number increases
1258 by one when #gtk_signal_emit(), et al, are called,
1259 and decreases by one when #gtk_signal_emit() returns.
1260 </para>
1261
1262 @object: the object with the signal handler.
1263 @signal_id: the signal id.
1264 @Returns: the recursion depth of emissions of this signal for this
1265 object.
1266
1267 <!-- ##### FUNCTION gtk_signal_n_emissions_by_name ##### -->
1268 <para>
1269 Find out the recursion depth of emissions for a particular type
1270 of signal and object.  Just like gtk_signal_n_emissions()
1271 except it will lookup the signal id for you.
1272 </para>
1273
1274 @object: the object with the signal handler.
1275 @name: the signal name.
1276 @Returns: the recursion depth of emissions of this signal for this
1277 object.
1278
1279 <!-- ##### FUNCTION gtk_signal_query ##### -->
1280 <para>
1281 Obtain information about a signal.
1282 </para>
1283
1284 @signal_id: the signal type identifier.
1285 @Returns: a pointer to a GtkSignalQuery structure
1286 which contains all the information, or NULL.
1287 The pointer is allocated just for you:  you must g_free() it.
1288
1289 <!-- ##### FUNCTION gtk_signal_remove_emission_hook ##### -->
1290 <para>
1291 Delete an emission hook. (see gtk_signal_add_emission_hook())
1292 </para>
1293
1294 @signal_id: the id of the signal type.
1295 @hook_id: the id of the emission handler, returned by add_emission_hook().
1296 @i: 
1297 @h: 
1298
1299 <!-- ##### FUNCTION gtk_signal_set_funcs ##### -->
1300 <para>
1301 These set default functions to call when the user didn't
1302 supply a function when connecting.  (These are rarely
1303 used, and probably only for language bindings)
1304 </para>
1305 <para>
1306 By default, there are no such functions.
1307 </para>
1308
1309 @marshal_func: the function to invoke on every handlers for which there
1310 isn't a function pointer.  May be NULL.
1311 @destroy_func: the function to invoke when each hook is destroyed.
1312 May be NULL.
1313
1314 <!-- ##### FUNCTION gtk_spin_button_set_shadow_type ##### -->
1315 <para>
1316 Creates a border around the arrows of a #GtkSpinButton. The type of border is determined by @shadow_type.
1317 </para>
1318
1319 @spin_button: a #GtkSpinButton
1320 @shadow_type: the new border type.
1321
1322 <!-- ##### FUNCTION gtk_trace_referencing ##### -->
1323 <para>
1324 Private: print debugging information while doing a gtk_object_ref() or 
1325 a gtk_object_unref().
1326 </para>
1327
1328 @object: object to reference or unreference.
1329 @func: name of caller's function to print (used within macros).
1330 @dummy: unused.
1331 @line: line number (used within macros).
1332 @do_ref: whether to reference or unreference.
1333
1334 <!-- ##### FUNCTION gtk_tree_model_ref_iter ##### -->
1335 <para>
1336
1337 </para>
1338
1339 @tree_model: 
1340 @iter: 
1341
1342 <!-- ##### FUNCTION gtk_tree_model_unref_iter ##### -->
1343 <para>
1344
1345 </para>
1346
1347 @tree_model: 
1348 @iter: 
1349
1350 <!-- ##### FUNCTION gtk_tree_store_set_cell ##### -->
1351 <para>
1352
1353 </para>
1354
1355 @tree_store: 
1356 @iter: 
1357 @column: 
1358 @value: 
1359
1360 <!-- ##### FUNCTION gtk_type_check_class_cast ##### -->
1361 <para>
1362 Given a GtkTypeClass pointer @klass, and a GtkType @cast_type, make
1363 sure that it's okay to cast something of that @klass into a @cast_type.
1364 </para>
1365
1366 @klass: GtkTypeClass*
1367 @cast_type: GtkType
1368 @Returns: Always return @klass.
1369
1370 <!-- ##### FUNCTION gtk_type_check_object_cast ##### -->
1371 <para>
1372 Given a pointer to a GtkTypeObject @type_object, and a GtkType @cast_type,
1373 make sure that it's okay to cast @type_object into a @cast_type.
1374 </para>
1375
1376 @type_object: GtkTypeObject*
1377 @cast_type: GtkType
1378 @Returns: the same GtkTypeObject* as @type_object
1379
1380 <!-- ##### FUNCTION gtk_type_children_types ##### -->
1381 <para>
1382 Return the pointer to the type's children's types.
1383 </para>
1384
1385 @type: GtkType
1386 @Returns: pointer to a GList
1387
1388 <!-- ##### FUNCTION gtk_type_describe_heritage ##### -->
1389 <para>
1390 Print the types @type inherits from.
1391 </para>
1392
1393 @type: GtkType
1394
1395 <!-- ##### FUNCTION gtk_type_describe_tree ##### -->
1396 <para>
1397 Given a @type, describe all of its children, and their children.  Only
1398 show the size if @show_size is true.
1399 </para>
1400
1401 @type: GtkType
1402 @show_size: gboolean
1403
1404 <!-- ##### FUNCTION gtk_type_free ##### -->
1405 <para>
1406 Given the type of an object and a pointer to it, the object is freed.
1407 </para>
1408
1409 @type: GtkType
1410 @mem: gpointer to the object
1411
1412 <!-- ##### FUNCTION gtk_type_get_varargs_type ##### -->
1413 <para>
1414 Get the varargs type associated with @foreign_type
1415 </para>
1416
1417 @foreign_type: GtkType
1418 @Returns: GtkType
1419
1420 <!-- ##### FUNCTION gtk_type_parent_class ##### -->
1421 <para>
1422 Return the class of the parent.  Initialize the class if necessary.
1423 Return NULL if anything goes wrong.
1424 </para>
1425
1426 @type: GtkType
1427 @Returns: gpointer to the klass.
1428
1429 <!-- ##### FUNCTION gtk_type_query ##### -->
1430 <para>
1431 Given a type, return various interesting parameters of the type.
1432 </para>
1433
1434 @type: GtkType
1435 @Returns: GtkTypeQuery*
1436
1437 <!-- ##### FUNCTION gtk_type_register_enum ##### -->
1438 <para>
1439 Register a new set of enum @values and give them the name in
1440 @type_name.
1441 </para>
1442
1443 @type_name: must not be null.
1444 @values: GtkEnumValue*
1445 @Returns: 
1446
1447 <!-- ##### FUNCTION gtk_type_register_flags ##### -->
1448 <para>
1449 Register a new set of flags @values and give them the name in
1450 @type_name.
1451 </para>
1452
1453 @type_name: must not be null.
1454 @values: GtkFlagValue*
1455 @Returns: 
1456
1457 <!-- ##### FUNCTION gtk_type_set_chunk_alloc ##### -->
1458 <para>
1459 Set the mem_chunk size so it will hold @n_chunks of the objects of that @type.
1460 </para>
1461
1462 @type: There must be an unlocked TypeNode associated with this type otherwise nothing happens.
1463 @n_chunks: 
1464
1465 <!-- ##### FUNCTION gtk_type_set_varargs_type ##### -->
1466 <para>
1467 Set the varargs type for a fundamental type @foreign_type.
1468 </para>
1469
1470 @foreign_type: Must be a GtkType with a sequence number of zero.  Must not be a
1471 fundamental type.
1472 @varargs_type: Must be a GtkType which is either structured or flag, or NONE.
1473
1474 <!-- ##### FUNCTION gtk_widget_activate_mnemonic ##### -->
1475 <para>
1476
1477 </para>
1478
1479 @widget: 
1480 @group_cycling: 
1481 @Returns: 
1482
1483 <!-- ##### FUNCTION gtk_widget_popup ##### -->
1484 <para>
1485
1486 </para>
1487
1488 @widget: 
1489 @x: 
1490 @y: 
1491
1492 <!-- ##### FUNCTION gtk_window_activate_mnemonic ##### -->
1493 <para>
1494
1495 </para>
1496
1497 @window: 
1498 @keyval: 
1499 @modifier: 
1500 @Returns: 
1501
1502 <!-- ##### FUNCTION gtk_window_get_default_accel_group ##### -->
1503 <para>
1504
1505 </para>
1506
1507 @window: 
1508 @Returns: 
1509