Added documentation for GtkWindowGroup
authorDmitry Kalyanov <Kalyanov.Dmitry@gmail.com>
Sat, 12 Sep 2009 12:54:54 +0000 (16:54 +0400)
committerDmitry Kalyanov <Kalyanov.Dmitry@gmail.com>
Sat, 12 Sep 2009 12:54:54 +0000 (16:54 +0400)
doc/gtk.main_loop.texi
doc/gtk.objects.texi
doc/gtk.widgets.texi

index ccd992f..c298388 100644 (file)
@@ -135,3 +135,7 @@ A condition inheriting from @code{error} that is used to signal the fact that th
 @RFunction gtk-call-aborted-condition
 
 Returns the error that caused call to aborted.
+
+@RFunction grab-add
+
+Undocumented yet
index ca66404..a2eb1d1 100644 (file)
@@ -2233,8 +2233,13 @@ Signals:
 @Class window-group
 Superclass: @ref{g-object}
 
+Window-group limits the effect of grabs. Grabs added with @ref{grab-add} only affect windows within the same @ref{window-group}.
+
 Slots:
 @itemize
+@item @anchor{slot.window-group.windows}windows. Type: list of @ref{gtk-window}. Accessor: @anchor{fn.window-group-windows}@code{window-group-windows}. Read-only.
+
+A list of the @ref{gtk-window}s that belong to @ref{window-group}.
 @end itemize
 
 
@@ -2242,6 +2247,17 @@ Signals:
 @itemize
 @end itemize
 
+@RMethod window-group-add-window
+@lisp
+(window-group-add-window window-group window)
+@end lisp
 
+Adds a @var{window} (a @ref{gtk-window}) to a @var{window-group} (a @ref{window-group})
+
+@RMethod window-group-remove-window
+@lisp
+(window-group-remove-window window-group window
+@end lisp
 
+Removes a @var{window} (a @ref{gtk-window}) from a @var{window-group} (a @ref{window-group})
 
index 9befeba..b736725 100644 (file)
@@ -3416,3 +3416,4 @@ Undocumented yet
 @RMethod widget-grab-focus
 
 Undocumented yet
+