doc: Add a bit of documentation for Widget.OnDrawn

This commit is contained in:
Bertrand Lorentz 2013-12-04 20:42:05 +01:00
parent 49f1bb86aa
commit 4593870178

View File

@ -1226,7 +1226,7 @@ class TestClose
<ReturnType>Gtk.DrawnHandler</ReturnType> <ReturnType>Gtk.DrawnHandler</ReturnType>
</ReturnValue> </ReturnValue>
<Docs> <Docs>
<summary>To be added.</summary> <summary>Raised when the widget needs to be fully or partially redrawn.</summary>
<remarks>To be added.</remarks> <remarks>To be added.</remarks>
<since version="Gtk# 3.0" /> <since version="Gtk# 3.0" />
</Docs> </Docs>
@ -3500,10 +3500,10 @@ To change the font of a simple Widget:
<Parameter Name="cr" Type="Cairo.Context" /> <Parameter Name="cr" Type="Cairo.Context" />
</Parameters> </Parameters>
<Docs> <Docs>
<param name="cr">To be added.</param> <param name="cr">a <see cref="T:Cairo.Context" /> to be used to paint the widget.</param>
<summary>To be added.</summary> <summary>Default handler for the <see cref="M:Gtk.Widget.Drawn" /> event.</summary>
<returns>To be added.</returns> <returns>a <see cref="T:System.Boolean" /></returns>
<remarks>To be added.</remarks> <remarks>Override this method in a subclass to provide a default handler for the <see cref="M:Gtk.Widget.Drawn" /> event. The <see cref="T:Cairo.Context" /> will be disposed after this method returns, so you should no keep a reference to it outside of the scope of this method.</remarks>
<since version="Gtk# 3.0" /> <since version="Gtk# 3.0" />
</Docs> </Docs>
</Member> </Member>