diff --git a/documentation/Fl_Widget.html b/documentation/Fl_Widget.html
index 5509a8f85..933e1ef7e 100644
--- a/documentation/Fl_Widget.html
+++ b/documentation/Fl_Widget.html
@@ -53,11 +53,11 @@ after these.
changed
|
|
|
+ - type
+
- user_data
- visible
- w
- when
@@ -150,27 +146,11 @@ way to update the display, such as scrolling from the old position).
position(x,y) is a shortcut for resize(x,y,w(),h()),
and size(w,h) is a shortcut for resize(x(),y(),w,h).
-
-
-The initial size and position of the widget. This is a copy of the
-arguments that the constructor was called with. This information is
-used by Fl_Group to calculate new sizes of
-the children when they are resized.
-
-init_size() calls resize() with the passed sizes,
-and then replaces the initial size with the new values. If this widget
-is a group you will have to init_size all the children as well or
-unpredictable results will occur.
-
Return a pointer to the Fl_Window
that this widget is in (it will skip any and all parent widgets between
-this and the window). Returns NULL if none. Note: for an
+this and the window). Returns NULL if none. Note: for an
Fl_Window, this returns it's parent window (if any),
not this window.
@@ -376,5 +356,13 @@ this widget. Returns false if b is NULL.
Returns true if this is a child of a, or is equal to a.
Returns false if a is NULL.
+
+
+Tries to make this widget be the Fl::focus() widget, by first
+sending it an FL_FOCUS event, and if it returns non-zero,
+setting Fl::focus() to this widget. You should use this
+method to assign the focus to an widget. Returns true if the widget
+accepted the focus.
+
|