Ryujinx-GtkSharp/Source/doc/en/Gtk/AspectFrame.xml
2017-09-04 22:36:28 -03:00

184 lines
8.4 KiB
XML

<Type Name="AspectFrame" FullName="Gtk.AspectFrame">
<TypeSignature Language="C#" Maintainer="Lee Mallabone" Value="public class AspectFrame : Gtk.Frame" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AspectFrame extends Gtk.Frame" />
<AssemblyInfo>
<AssemblyName>gtk-sharp</AssemblyName>
<AssemblyPublicKey>
</AssemblyPublicKey>
</AssemblyInfo>
<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<Base>
<BaseTypeName>Gtk.Frame</BaseTypeName>
</Base>
<Interfaces>
</Interfaces>
<Docs>
<summary>A frame that constrains its child to a particular aspect ratio.</summary>
<remarks>
<para>The AspectFrame is useful when you want pack a widget so that it can resize but always retains the same aspect ratio. For instance, one might be drawing a small preview of a larger image. AspectFrame derives from <see cref="T:Gtk.Frame" />, so it can draw a label and a frame around the child. The frame will be "shrink-wrapped" to the size of the child.</para>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AspectFrame (IntPtr raw);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(native int raw) cil managed" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="raw" Type="System.IntPtr" />
</Parameters>
<Docs>
<param name="raw">Pointer to the C object.</param>
<summary>Internal constructor</summary>
<remarks>
<para>This is an internal constructor, and should not be used by user code.</para>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AspectFrame (string label, float xalign, float yalign, float ratio, bool obey_child);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string label, float32 xalign, float32 yalign, float32 ratio, bool obey_child) cil managed" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters>
<Parameter Name="label" Type="System.String" />
<Parameter Name="xalign" Type="System.Single" />
<Parameter Name="yalign" Type="System.Single" />
<Parameter Name="ratio" Type="System.Single" />
<Parameter Name="obey_child" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="label">A title for the frame, can be <see langword="null" />.</param>
<param name="xalign">Horizontal alignment of the child within the allocation of the AspectFrame.</param>
<param name="yalign">Vertical alignment of the child within the allocation of the AspectFrame.</param>
<param name="ratio">The desired aspect ratio.</param>
<param name="obey_child">If <see langword="true" />, ratio is ignored, and the aspect ratio is taken from the requistion of the child.</param>
<summary>The main way to construct a new AspectFrame.</summary>
<remarks>
<para>Alignment values range from 0.0 (left/top aligned) to 1.0 (right/bottom aligned).</para>
</remarks>
</Docs>
</Member>
<Member MemberName="GType">
<MemberSignature Language="C#" Value="public static GLib.GType GType { get; }" />
<MemberSignature Language="ILAsm" Value=".property valuetype GLib.GType GType" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>GType Property.</summary>
<value>a <see cref="T:GLib.GType" /></value>
<remarks>Returns the native <see cref="T:GLib.GType" /> value for <see cref="T:Gtk.AspectFrame" />.</remarks>
</Docs>
</Member>
<Member MemberName="ObeyChild">
<MemberSignature Language="C#" Value="public bool ObeyChild { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool ObeyChild" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>GLib.Property("obey-child")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<summary>Allow the frame to use its child widget's aspect ratio.</summary>
<value>The current size ratio of the child widget</value>
<remarks />
</Docs>
</Member>
<Member MemberName="Ratio">
<MemberSignature Language="C#" Value="public float Ratio { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 Ratio" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>GLib.Property("ratio")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<summary>The aspect ratio of the child widget's size.</summary>
<value>The aspect ratio between 0.0 and 1.0 representing the child's size constraints.</value>
<remarks>
<para>Setting this ratio is ignored if <see cref="P:Gtk.AspectFrame.ObeyChild" /> is set to <see langword="true" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="Set">
<MemberSignature Language="C#" Value="public void Set (float xalign, float yalign, float ratio, bool obey_child);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Set(float32 xalign, float32 yalign, float32 ratio, bool obey_child) cil managed" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="xalign" Type="System.Single" />
<Parameter Name="yalign" Type="System.Single" />
<Parameter Name="ratio" Type="System.Single" />
<Parameter Name="obey_child" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="xalign">Horizontal alignment of the child within the allocation of the AspectFrame.</param>
<param name="yalign">Vertical alignment of the child within the allocation of the AspectFrame.</param>
<param name="ratio">The desired aspect ratio.</param>
<param name="obey_child">If <see langword="true" />, ratio is ignored, and the aspect ratio is taken from the requistion of the child.</param>
<summary>Set the size and alignment properties of this AspectFrame.</summary>
<remarks>
<para>Alignment values range from 0.0 (left/top aligned) to 1.0 (right/bottom aligned).</para>
</remarks>
</Docs>
</Member>
<Member MemberName="Xalign">
<MemberSignature Language="C#" Value="public float Xalign { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 Xalign" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>GLib.Property("xalign")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<summary>Horiontal alignment of the child widget in the AspectFrame.</summary>
<value>A value between 0.0 and 1.0.</value>
<remarks />
</Docs>
</Member>
<Member MemberName="Yalign">
<MemberSignature Language="C#" Value="public float Yalign { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 Yalign" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>GLib.Property("yalign")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<summary>Vertical alignment of the child widget in the AspectFrame.</summary>
<value>A value between 0.0 and 1.0.</value>
<remarks />
</Docs>
</Member>
</Members>
</Type>