[Mono-docs-list] Little Window.xml advance

Carlos Alberto Cortez is118149@mail.udlap.mx
24 Feb 2003 11:37:47 -0600


--=-dcAqLphpRGhSsvCm4raR
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

A little Window.xml advance ( today ).


Carlos.
-- 
--------------------------------------------------
/* The definition of myself */
using Cortez;
using GeniusIntelligence;

public class Carlos : Human, IGenius, ILinuxUser {

	static void Main () {

		Me.Run();

	}

	static string PHON : 2 34 31 63
	static string NICKNAME : Zero

}

--------------------------------------------------

--=-dcAqLphpRGhSsvCm4raR
Content-Disposition: attachment; filename=window.diff
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; name=window.diff; charset=ISO-8859-1

? window.diff
Index: Window.xml
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /cvs/public/gtk-sharp/doc/en/Gtk/Window.xml,v
retrieving revision 1.4
diff -u -r1.4 Window.xml
--- Window.xml	23 Feb 2003 07:26:20 -0000	1.4
+++ Window.xml	24 Feb 2003 17:37:54 -0000
@@ -1,5 +1,5 @@
 <Type Name=3D"Window" FullName=3D"Gtk.Window">
-  <TypeSignature Language=3D"C#" Value=3D"public class Window : Gtk.Bin, I=
mplementor, IWrapper, IWrapper, IDisposable" Maintainer=3D"auto" />
+  <TypeSignature Language=3D"C#" Value=3D"public class Window : Gtk.Bin, I=
mplementor, IWrapper, IWrapper, IDisposable" Maintainer=3D"Carlos Alberto C=
ortez" />
   <AssemblyInfo>
     <AssemblyName>gtk-sharp</AssemblyName>
     <AssemblyVersion>0.0.0.0</AssemblyVersion>
@@ -157,10 +157,16 @@
         <Parameter Name=3D"height" Type=3D"System.Int32&amp;" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Obtains the actual with and height of a Window.</summary>
         <param name=3D"width">To be added: an object of type 'int&amp;'</p=
aram>
         <param name=3D"height">To be added: an object of type 'int&amp;'</=
param>
-        <remarks>To be added</remarks>
+        <remarks>
+	  <para>
+	    Obtains the actual size of a Window, returning the width and height v=
alues to out-type arguments.=20
+	    If the Window is not on the screen, it returns the size Gtk+ will sug=
gest to the window manager for=20
+	    the initial window size.
+	  </para>
+	</remarks>
       </Docs>
     </Member>
     <Member MemberName=3D"GetDefaultSize">
@@ -174,10 +180,16 @@
         <Parameter Name=3D"height" Type=3D"System.Int32&amp;" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Obtains the default size of the Window.</summary>
         <param name=3D"width">To be added: an object of type 'int&amp;'</p=
aram>
         <param name=3D"height">To be added: an object of type 'int&amp;'</=
param>
-        <remarks>To be added</remarks>
+        <remarks>
+	  <para>
+	    Obtains the default size of the Window, returning the width and heigh=
t values to out-type arguments.
+	    A value of -1 for width or height indicates that a default size has n=
ot been explicitly set for that dimention,
+	    so the "natural" size of the Window will be used.
+	  </para>
+	</remarks>
       </Docs>
     </Member>
     <Member MemberName=3D"Resize">
@@ -975,10 +987,16 @@
         <Parameter Name=3D"value" Type=3D"System.Boolean" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Property used for setting if a Window must be destroyed w=
hen its parent does.</summary>
         <param name=3D"value">To be added: an object of type 'bool'</param=
>
         <returns>To be added: an object of type 'bool'</returns>
-        <remarks>To be added</remarks>
+        <remarks>
+	  <para>
+	    If this property has the false value, then destroying the transient p=
arent of our Window will destroy
+	    the window itself. This is useful for dialogs that shouldn't persist =
beyond the lifetime of the main Window
+	    they're associated with.
+	  </para>
+	</remarks>
       </Docs>
     </Member>
     <Member MemberName=3D"Modal">
@@ -991,10 +1009,15 @@
         <Parameter Name=3D"value" Type=3D"System.Boolean" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Property used for setting if a Window must be or not moda=
l.</summary>
         <param name=3D"value">To be added: an object of type 'bool'</param=
>
         <returns>To be added: an object of type 'bool'</returns>
-        <remarks>To be added</remarks>
+        <remarks>
+	  <para>
+	    This property defines if a Window is modal or non-modal. Modal Window=
s prevent interaction with other Windows
+	    in the same application.
+	  </para>
+	</remarks>
       </Docs>
     </Member>
     <Member MemberName=3D"AllowGrow">
@@ -1044,9 +1067,14 @@
         <ReturnType>Gtk.WindowType</ReturnType>
       </ReturnValue>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Read only property used for getting the WindowType of a s=
pecified Window.</summary>
         <returns>To be added: an object of type 'Gtk.WindowType'</returns>
-        <remarks>To be added</remarks>
+        <remarks>
+	  <para>
+	    This read-only property will let you know the <see cref=3D"T:Gtk.Wind=
owType"/>Gtk.WindowType of the=20
+            specified Window; this is, the type the Window is.
+	  </para>
+	</remarks>
       </Docs>
     </Member>
     <Member MemberName=3D"DefaultWidth">
@@ -1059,10 +1087,16 @@
         <Parameter Name=3D"value" Type=3D"System.Int32" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Property used for defining the deafult width of a Window.=
</summary>
         <param name=3D"value">To be added: an object of type 'int'</param>
         <returns>To be added: an object of type 'int'</returns>
-        <remarks>To be added</remarks>
+        <remarks>
+	  <para>
+	    This property will allow you to define the default width for your Win=
dow.
+            It only define the default one, so if the Window is resized, i=
t won't be able to do
+            anything.
+	  </para>
+	</remarks>
       </Docs>
     </Member>
     <Member MemberName=3D"Icon">
@@ -1158,4 +1192,4 @@
       </Docs>
     </Member>
   </Members>
-</Type>
\ No newline at end of file
+</Type>

--=-dcAqLphpRGhSsvCm4raR--