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

}

--------------------------------------------------
? window.diff
Index: Window.xml
===================================================================
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="Window" FullName="Gtk.Window">
-  <TypeSignature Language="C#" Value="public class Window : Gtk.Bin, Implementor, 
IWrapper, IWrapper, IDisposable" Maintainer="auto" />
+  <TypeSignature Language="C#" Value="public class Window : Gtk.Bin, Implementor, 
IWrapper, IWrapper, IDisposable" Maintainer="Carlos Alberto Cortez" />
   <AssemblyInfo>
     <AssemblyName>gtk-sharp</AssemblyName>
     <AssemblyVersion>0.0.0.0</AssemblyVersion>
@@ -157,10 +157,16 @@
         <Parameter Name="height" Type="System.Int32&amp;" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Obtains the actual with and height of a Window.</summary>
         <param name="width">To be added: an object of type 'int&amp;'</param>
         <param name="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 values 
to out-type arguments. 
+           If the Window is not on the screen, it returns the size Gtk+ will suggest 
to the window manager for 
+           the initial window size.
+         </para>
+       </remarks>
       </Docs>
     </Member>
     <Member MemberName="GetDefaultSize">
@@ -174,10 +180,16 @@
         <Parameter Name="height" Type="System.Int32&amp;" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Obtains the default size of the Window.</summary>
         <param name="width">To be added: an object of type 'int&amp;'</param>
         <param name="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 height 
values to out-type arguments.
+           A value of -1 for width or height indicates that a default size has not 
been explicitly set for that dimention,
+           so the "natural" size of the Window will be used.
+         </para>
+       </remarks>
       </Docs>
     </Member>
     <Member MemberName="Resize">
@@ -975,10 +987,16 @@
         <Parameter Name="value" Type="System.Boolean" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Property used for setting if a Window must be destroyed when its 
parent does.</summary>
         <param name="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 parent 
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="Modal">
@@ -991,10 +1009,15 @@
         <Parameter Name="value" Type="System.Boolean" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Property used for setting if a Window must be or not modal.</summary>
         <param name="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 Windows 
prevent interaction with other Windows
+           in the same application.
+         </para>
+       </remarks>
       </Docs>
     </Member>
     <Member MemberName="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 specified 
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="T:Gtk.WindowType"/>Gtk.WindowType of the 
+            specified Window; this is, the type the Window is.
+         </para>
+       </remarks>
       </Docs>
     </Member>
     <Member MemberName="DefaultWidth">
@@ -1059,10 +1087,16 @@
         <Parameter Name="value" Type="System.Int32" />
       </Parameters>
       <Docs>
-        <summary>To be added</summary>
+        <summary>Property used for defining the deafult width of a Window.</summary>
         <param name="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 Window.
+            It only define the default one, so if the Window is resized, it won't be 
able to do
+            anything.
+         </para>
+       </remarks>
       </Docs>
     </Member>
     <Member MemberName="Icon">
@@ -1158,4 +1192,4 @@
       </Docs>
     </Member>
   </Members>
-</Type>
\ No newline at end of file
+</Type>

Reply via email to