Patch from tavi_duma2002@yahoo.co.uk
svn path=/trunk/gtk-sharp/; revision=44515
This commit is contained in:
parent
afa17eacee
commit
aa87b5bc36
1 changed files with 19 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Type Name="Widget" FullName="Gtk.Widget">
|
<Type Name="Widget" FullName="Gtk.Widget">
|
||||||
<TypeSignature Language="C#" Value="public class Widget : Gtk.Object, Implementor, IWrapper, IWrapper, IDisposable" Maintainer="Hector Gomez M" />
|
<TypeSignature Language="C#" Value="public class Widget : Gtk.Object, Implementor, IWrapper, IWrapper, IDisposable" Maintainer="Hector Gomez M" />
|
||||||
<AssemblyInfo>
|
<AssemblyInfo>
|
||||||
|
@ -819,6 +819,21 @@
|
||||||
<para>
|
<para>
|
||||||
All other style values are left untouched. See also <see cref="M:Gtk.Widget.ModifyStyle" />.
|
All other style values are left untouched. See also <see cref="M:Gtk.Widget.ModifyStyle" />.
|
||||||
</para>
|
</para>
|
||||||
|
<para>
|
||||||
|
To change the font of a simple Widget:
|
||||||
|
|
||||||
|
<example>
|
||||||
|
<code lang="C#">
|
||||||
|
using Pango;
|
||||||
|
...
|
||||||
|
[Widget] Label label1;
|
||||||
|
...
|
||||||
|
|
||||||
|
...
|
||||||
|
label1.ModifyFont(FontDescription.FromString("Courier 16"));
|
||||||
|
...
|
||||||
|
</code>
|
||||||
|
</example></para>
|
||||||
</remarks>
|
</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member>
|
||||||
|
@ -4103,8 +4118,7 @@ Widgets are required to honor the size allocation they receive; a size request i
|
||||||
<summary>This function works like <see cref="M:Gtk.Widget.QueueResize()" />, except that the widget is not invalidated.</summary>
|
<summary>This function works like <see cref="M:Gtk.Widget.QueueResize()" />, except that the widget is not invalidated.</summary>
|
||||||
<remarks />
|
<remarks />
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member><Member MemberName="ListMnemonicLabels">
|
||||||
<Member MemberName="ListMnemonicLabels">
|
|
||||||
<MemberSignature Language="C#" Value="public Gtk.Widget[] ListMnemonicLabels ();" />
|
<MemberSignature Language="C#" Value="public Gtk.Widget[] ListMnemonicLabels ();" />
|
||||||
<MemberType>Method</MemberType>
|
<MemberType>Method</MemberType>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
|
@ -4116,8 +4130,7 @@ Widgets are required to honor the size allocation they receive; a size request i
|
||||||
<returns>a <see cref="T:Gtk.Widget[]" /></returns>
|
<returns>a <see cref="T:Gtk.Widget[]" /></returns>
|
||||||
<remarks />
|
<remarks />
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member><Member MemberName="CanActivateAccel">
|
||||||
<Member MemberName="CanActivateAccel">
|
|
||||||
<MemberSignature Language="C#" Value="public bool CanActivateAccel (uint signal_id);" />
|
<MemberSignature Language="C#" Value="public bool CanActivateAccel (uint signal_id);" />
|
||||||
<MemberType>Method</MemberType>
|
<MemberType>Method</MemberType>
|
||||||
<ReturnValue>
|
<ReturnValue>
|
||||||
|
@ -4209,5 +4222,4 @@ Widgets are required to honor the size allocation they receive; a size request i
|
||||||
<returns>a <see cref="T:System.Boolean" /></returns>
|
<returns>a <see cref="T:System.Boolean" /></returns>
|
||||||
<remarks>Override this method in a subclass to provide a default handler for the <see cref="M:Gtk.Widget.WidgetEventAfter" /> event.</remarks>
|
<remarks>Override this method in a subclass to provide a default handler for the <see cref="M:Gtk.Widget.WidgetEventAfter" /> event.</remarks>
|
||||||
</Docs>
|
</Docs>
|
||||||
</Member>
|
</Member></Members></Type>
|
||||||
</Members></Type>
|
|
Loading…
Reference in a new issue