diff --git a/doc/en/Gtk/Window.xml b/doc/en/Gtk/Window.xml
index b22bc359b..29a34f261 100644
--- a/doc/en/Gtk/Window.xml
+++ b/doc/en/Gtk/Window.xml
@@ -461,10 +461,20 @@
- To be added
+ Sets the default size of an object, with the specified width and height arguments.
To be added: an object of type 'int'
To be added: an object of type 'int'
- To be added
+
+
+ It is used for setting the default size an object will have. The first argument,
+ int width, defines the default width of the object ( in pixels ). A similar situation
+ happens with the second argument, int height.
+
+
+ It only affects the initial size of the Window, so the user can resizes it. If the
+ Window is hidden and re-shown, it will remmeber the size it had before get hidding.
+
+
@@ -518,9 +528,13 @@
- To be added
+ Sets the position for a Window, based on the Gtk.WindowPosition position argument.
To be added: an object of type 'Gtk.WindowPosition'
- To be added
+
+
+ Is is used for placing the Window in some area, depending on the Gtk.WindowPosition position argument.
+
+
@@ -605,10 +619,16 @@
- To be added
+ Creates a new Window object, based on the Gtk.WindowType type argument.
To be added: an object of type 'Gtk.WindowType'
To be added: an object of type 'Gtk.Window'
- To be added
+
+
+ Creates a new Window object, wich can be of type TopLevel ( most of the cases )
+ or PopUp. Take care with the use of PopUp type, since it is not controlled by the window
+ manager.
+
+
@@ -630,10 +650,16 @@
- To be added
+ Creates a new TopLevel Window object, with the specified string argument as the title.
To be added: an object of type 'string'
To be added: an object of type 'Gtk.Window'
- To be added
+
+
+ Creates a new TopLevel Window object, using the string title argument to specify the Window title.
+ You get the same if you use the public Window ( Gtk.WindowType type ) constructor and later
+ set the string Title property.
+
+
@@ -858,10 +884,17 @@
- To be added
+ Sets if a Window will be decorated or not ( borderless ).
To be added: an object of type 'bool'
To be added: an object of type 'bool'
- To be added
+
+ With this property you control if a window will be decorated or not.
+
+ By default, windows are decorated with a title bar and resize controls. Some window managers
+ allow to disable these decorations, creating a borderless Window. If you set this property as false,
+ Gtk# will try to convince the window manager not to decorate the Window.
+
+
@@ -874,10 +907,15 @@
- To be added
+ Sets if a Window will be resizable by the user or not.
To be added: an object of type 'bool'
To be added: an object of type 'bool'
- To be added
+
+
+ By default, windows are resizable, so you can change the size of them. But if you set this property
+ to false, the user won't be able to change the size of them.
+
+
@@ -890,10 +928,15 @@
- To be added
+ Property used for setting/getting the window position.
To be added: an object of type 'Gtk.WindowPosition'
To be added: an object of type 'Gtk.WindowPosition'
- To be added
+
+
+ This property will alow you to define where a Window must be displayed on the screen.
+ It work with the Gtk.WindowPosition enum, soy maybe you should check it before use it.
+
+
@@ -906,10 +949,16 @@
- To be added
+ Property used for defining the default height of a window.
To be added: an object of type 'int'
To be added: an object of type 'int'
- To be added
+
+
+ This property will allow you to define the default height for your Window.
+ It only define the default one, so if the Window is resized, it won't be able to do
+ anything.
+
+
@@ -970,10 +1019,18 @@
- To be added
+ Property used for setting the Window Title.
To be added: an object of type 'string'
To be added: an object of type 'string'
- To be added
+
+
+ This property will allow you to set the Window Title. The Title of a window
+ will be displayed in its title bar. Since the title bar is rendered by the window managers on
+ X Window System, the way it appears will depend on the user preferences. This title should help
+ the users to distinguish a window from others opened. A good title will have the application name
+ an the actual document, for example.
+
+
@@ -1097,4 +1154,4 @@
-
\ No newline at end of file
+