2003-02-12 02:00:12 +00:00
<Type Name= "ToggleButton" FullName= "Gtk.ToggleButton" >
2003-05-15 06:05:07 +00:00
<TypeSignature Language= "C#" Value= "public class ToggleButton : Gtk.Button, Implementor, IWrapper, IWrapper, IDisposable" Maintainer= "John Luke" />
2003-02-12 02:00:12 +00:00
<AssemblyInfo >
<AssemblyName > gtk-sharp</AssemblyName>
2003-12-24 01:35:30 +00:00
<AssemblyPublicKey >
</AssemblyPublicKey>
2003-02-12 02:00:12 +00:00
<AssemblyVersion > 0.0.0.0</AssemblyVersion>
2003-10-28 00:48:23 +00:00
<AssemblyCulture > neutral</AssemblyCulture>
2003-02-12 02:00:12 +00:00
<Attributes />
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<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>
2003-02-12 02:00:12 +00:00
<Docs >
2003-04-24 18:38:39 +00:00
<summary > A button that can be toggled on and off.</summary>
<remarks >
2003-05-08 20:26:02 +00:00
<para > A <see cref= "T:Gtk.ToggleButton" /> is a <see cref= "T:Gtk.Button" /> which will remain 'pressed-in' when clicked.
2003-07-08 18:44:29 +00:00
Clicking again will cause the toggle button to return to its normal state. This is useful if you need to maintain the state of a button.</para>
2003-05-08 20:26:02 +00:00
<example >
<code lang= "C#" source= "ToggleButton.cs" >
2003-05-01 23:30:59 +00:00
using Gtk;
using System;
2003-04-24 18:38:39 +00:00
2003-05-01 23:30:59 +00:00
public class ToggleButtonApp {
2003-04-24 18:38:39 +00:00
2003-05-01 23:30:59 +00:00
ToggleButton btn;
2003-04-24 18:38:39 +00:00
2003-05-01 23:30:59 +00:00
public static int Main (string[] args)
{
new ToggleButtonApp();
return 0;
}
2003-04-24 18:38:39 +00:00
2003-05-01 23:30:59 +00:00
public ToggleButtonApp()
{
Application.Init ();
Window win = new Window ("ToggleButton Tester");
win.SetDefaultSize (200, 150);
win.DeleteEvent += new DeleteEventHandler (Window_Delete);
btn = new ToggleButton ("Unselected");
btn.Active = false;
btn.Toggled += new EventHandler (btn_toggled);
win.Add (btn);
win.ShowAll ();
Application.Run ();
}
2003-04-24 18:38:39 +00:00
2003-05-01 23:30:59 +00:00
void btn_toggled (object obj, EventArgs args)
{
Console.WriteLine ("Button Toggled");
if (btn.Active)
2003-04-24 18:38:39 +00:00
{
2003-05-01 23:30:59 +00:00
btn.Label = "Unselected";
2003-04-24 18:38:39 +00:00
}
2003-05-01 23:30:59 +00:00
else
2003-04-24 18:38:39 +00:00
{
2003-05-01 23:30:59 +00:00
btn.Label = "Selected";
2003-04-24 18:38:39 +00:00
}
2003-05-01 23:30:59 +00:00
}
2003-04-24 18:38:39 +00:00
2003-05-01 23:30:59 +00:00
static void Window_Delete (object obj, DeleteEventArgs args)
{
Application.Quit ();
args.RetVal = true;
2003-04-24 18:38:39 +00:00
}
2003-05-01 23:30:59 +00:00
2003-04-24 18:38:39 +00:00
}
</code>
2003-05-08 20:26:02 +00:00
</example>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
<Base >
<BaseTypeName > Gtk.Button</BaseTypeName>
</Base>
<Interfaces >
<Interface >
<InterfaceName > Atk.Implementor</InterfaceName>
</Interface>
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
<Interface >
<InterfaceName > System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes />
<Members >
<Member MemberName= "NewWithLabel" >
<MemberSignature Language= "C#" Value= "public static Gtk.ToggleButton NewWithLabel (string label);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > Gtk.ToggleButton</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "label" Type= "System.String" />
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Creates a new <see cref= "T:Gtk.ToggleButton" /> with a text label.</summary>
<param name= "label" > a <see cref= "T:System.String" /> containing the message to be placed in the toggle button.</param>
<returns > a new <see cref= "T:Gtk.ToggleButton" /> .</returns>
<remarks > Creates a new <see cref= "T:Gtk.ToggleButton" /> with a text label.</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Toggle" >
<MemberSignature Language= "C#" Value= "public void Toggle ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Emits the <see cref= "E:Gtk.ToggleButton.Toggled" /> event</summary>
<remarks > Emits the <see cref= "E:Gtk.ToggleButton.Toggled" /> event on the <see cref= "T:Gtk.ToggleButton" /> . There is no good reason for an application ever to call this function.</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Finalize" >
2003-10-13 22:55:58 +00:00
<MemberSignature Language= "C#" Value= "protected override void Finalize ();" />
2003-02-12 02:00:12 +00:00
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2003-02-23 07:26:30 +00:00
<summary > Disposes the resources associated with the object.</summary>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public ToggleButton (IntPtr raw);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "raw" Type= "System.IntPtr" />
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-02-23 07:26:30 +00:00
<summary > Internal constructor</summary>
<param name= "raw" > Pointer to the C object.</param>
2003-05-08 20:26:02 +00:00
<returns > An instance of <see cref= "T:Gtk.ToggleButton" /> , wrapping the C object.</returns>
2003-02-23 07:26:30 +00:00
<remarks >
<para > This is an internal constructor, and should not be used by user code.</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public ToggleButton ();" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Creates a new <see cref= "T:Gtk.ToggleButton" /> object</summary>
<returns > an object of type <see cref= "T:Gtk.ToggleButton" /> </returns>
2003-04-24 18:41:14 +00:00
<remarks >
<para >
2003-05-08 20:26:02 +00:00
Creates a new <see cref= "T:Gtk.ToggleButton" /> , which is a
<see cref= "T:Gtk.Container" /> . A widget should be packed
inside the toggle button using <see cref= "M:Gtk.Container.Add (Gtk.Widget)" /> .
2003-04-24 18:41:14 +00:00
</para>
2003-05-08 20:26:02 +00:00
<para >
<example >
<code lang= "C#" >
2003-05-01 23:30:59 +00:00
Label label = new Label();
ToggleButton btn = new ToggleButton ();
btn.Add(label);
</code>
2003-05-08 20:26:02 +00:00
</example>
</para>
2003-04-24 18:41:14 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public ToggleButton (string label);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "label" Type= "System.String" />
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Creates a new <see cref= "T:Gtk.ToggleButton" /> with a text label.</summary>
<param name= "label" > a <see cref= "T:System.String" /> containing the message to be placed in the toggle button.</param>
2003-05-30 04:30:12 +00:00
<returns > an object of type <see cref= "T:Gtk.ToggleButton" /> </returns>
2003-05-08 20:26:02 +00:00
<remarks > Creates a new <see cref= "T:Gtk.ToggleButton" /> with a text label.
<example >
<code lang= "C#" > ToggleButton btn = new ToggleButton ("ToggleButton");</code>
</example> </remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Mode" >
<MemberSignature Language= "C#" Value= "public bool Mode { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-05-08 20:26:02 +00:00
<summary > The Mode of the <see cref= "T:Gtk.ToggleButton" /> </summary>
2003-04-24 18:38:39 +00:00
<param name= "value" > an object of type <see cref= "T:System.Boolean" /> </param>
<returns > an object of type <see cref= "T:System.Boolean" /> </returns>
<remarks >
2003-05-08 20:26:02 +00:00
<para > The Mode of the <see cref= "T:Gtk.ToggleButton" /> </para>
<para > Sets whether the button is displayed as a separate indicator and label.
2003-07-08 18:44:29 +00:00
You can call this function on a <see cref= "T:Gtk.CheckButton" /> or a <see cref= "T:Gtk.RadioButton" /> with <see cref= "P:Gtk.ToggleButton.DrawIndicator" /> = <see langword= "false" /> to make the button look like a normal button
2003-04-24 18:38:39 +00:00
</para>
2003-07-08 18:44:29 +00:00
<para > This function only effects instances of classes like <see cref= "T:Gtk.CheckButton" /> and <see cref= "T:Gtk.RadioButton" />
2003-05-08 20:26:02 +00:00
that derive from <see cref= "T:Gtk.ToggleButton" /> , not instances of <see cref= "T:Gtk.ToggleButton" /> itself.
2003-04-24 18:38:39 +00:00
</para>
2003-05-08 20:26:02 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Inconsistent" >
<MemberSignature Language= "C#" Value= "public bool Inconsistent { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Determines if the <see cref= "T:Gtk.ToggleButton" /> has an intermediate state.</summary>
2003-07-17 06:38:40 +00:00
<param name= "value" > an object of type <see cref= "T:System.Boolean" /> </param>
2003-04-24 18:38:39 +00:00
<returns > an object of type <see cref= "T:System.Boolean" /> </returns>
<remarks >
2003-05-08 20:26:02 +00:00
<para >
2003-07-17 06:38:40 +00:00
If the user has selected a range of elements (such as some text or spreadsheet cells) that are affected by a <see cref= "T:Gtk.ToggleButton" /> ,
2003-04-24 18:38:39 +00:00
and the current values in that range are inconsistent, you may want to display the toggle in an "in between" state.
2003-07-17 06:38:40 +00:00
This function turns on "in between" display. Normally you would turn off the inconsistent state again if the user toggles the <see cref= "T:Gtk.ToggleButton" /> .
This has to be done manually, <see cref= "P:Gtk.ToggleButton.Inconsistent" /> only affects visual appearance, it does not affect the semantics of the <see cref= "T:Gtk.Button" /> .
2003-04-24 18:38:39 +00:00
</para>
2003-05-08 20:26:02 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Active" >
<MemberSignature Language= "C#" Value= "public bool Active { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Get or set the <see cref= "T:Gtk.ToggleButton" /> active</summary>
2003-07-17 06:38:40 +00:00
<param name= "value" > an object of type <see cref= "T:System.Boolean" /> </param>
2003-04-24 18:38:39 +00:00
<returns > an object of type <see cref= "T:System.Boolean" /> </returns>
<remarks >
2003-05-08 20:26:02 +00:00
<para > Get or set the <see cref= "T:Gtk.ToggleButton" /> active.</para>
2003-07-08 18:44:29 +00:00
<para > Get: Queries a <see cref= "T:Gtk.ToggleButton" /> and returns its current state.
2003-05-08 20:26:02 +00:00
Returns <see langword= "true" /> if the toggle button is pressed in and <see langword= "false" /> if it is raised.
2003-04-24 18:38:39 +00:00
</para>
2003-05-08 20:26:02 +00:00
<example >
<code lang= "C#" >
2003-05-01 23:30:59 +00:00
if (btn.Active) {
Console.WriteLine("The ToggleButton is pressed in");
}
else {
Console.WriteLine("The ToggleButton is raised");
}
</code>
2003-05-08 20:26:02 +00:00
</example>
<para > Set: Sets the status of the toggle button. Set to <see langword= "true" /> if you want the GtkToggleButton to be 'pressed in', and <see langword= "false" /> to raise it.
2003-04-24 18:38:39 +00:00
This action causes the toggled signal to be emitted.
</para>
2003-05-08 20:26:02 +00:00
<example >
<code lang= "C#" >
2003-05-01 23:30:59 +00:00
// set the togglebutton active
// and appear "pressed in"
btn.Active = true;
</code>
2003-05-08 20:26:02 +00:00
</example>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "DrawIndicator" >
<MemberSignature Language= "C#" Value= "public bool DrawIndicator { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Determines the drawing style of a <see cref= "T:Gtk.RadioButton" /> or <see cref= "T:Gtk.CheckButton" /> </summary>
<param name= "value" > an object of type <see cref= "T:System.Boolean" /> </param>
<returns > an object of type <see cref= "T:System.Boolean" /> </returns>
<remarks > The DrawIndicator property can be set to <see langword= "false" /> to make
<see cref= "T:Gtk.CheckButton" /> or <see cref= "T:Gtk.RadioButton" /> look like a normal <see cref= "T:Gtk.Button" /> .
2003-04-24 18:38:39 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Toggled" >
<MemberSignature Language= "C#" Value= "public event EventHandler Toggled;" />
<MemberType > Event</MemberType>
2003-09-17 21:56:59 +00:00
<ReturnValue >
<ReturnType > System.EventHandler</ReturnType>
</ReturnValue>
2003-02-12 02:00:12 +00:00
<Parameters />
<Docs >
2003-05-08 20:26:02 +00:00
<summary > Triggered when the <see cref= "T:Gtk.ToggleButton" /> is clicked.</summary>
2003-07-08 18:44:29 +00:00
<remarks > Should be connected if you wish to perform an action whenever the <see cref= "T:Gtk.ToggleButton" /> state changes.
2003-05-01 23:30:59 +00:00
<example >
2003-05-08 20:26:02 +00:00
<code lang= "C#" >
2003-05-01 23:30:59 +00:00
ToggleButton btn = new ToggleButton("ToggleButton");
btn.Toggled += new EventHandler (btn_toggled);
void btn_toggled (object obj, EventArgs args)
{
// code for toggled event here
}
</code>
2003-05-08 20:26:02 +00:00
</example> </remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
2003-12-24 01:35:30 +00:00
<Member MemberName= "GType" >
<MemberSignature Language= "C#" Value= "public static GLib.GType GType { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > GLib.GType</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
<summary > To be added</summary>
<returns > a <see cref= "T:GLib.GType" /> </returns>
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "OverrideToggled" >
<MemberSignature Language= "C#" Value= "protected static void OverrideToggled (GLib.GType gtype);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "gtype" Type= "GLib.GType" />
</Parameters>
<Docs >
<summary > To be added</summary>
<param name= "gtype" > a <see cref= "T:GLib.GType" /> </param>
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "OnToggled" >
<MemberSignature Language= "C#" Value= "protected virtual void OnToggled ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
<summary > To be added</summary>
<remarks > To be added</remarks>
</Docs>
</Member>
2003-03-07 01:30:00 +00:00
<Member MemberName= ".ctor" >
2003-12-24 01:35:30 +00:00
<MemberSignature Language= "C#" Value= "protected ToggleButton (GLib.GType gtype);" />
2003-03-07 01:30:00 +00:00
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-12-24 01:35:30 +00:00
<Parameter Name= "gtype" Type= "GLib.GType" />
2003-09-17 21:56:59 +00:00
</Parameters>
2003-03-07 01:30:00 +00:00
<Docs >
2003-12-24 01:35:30 +00:00
<summary > To be added</summary>
<param name= "gtype" > a <see cref= "T:GLib.GType" /> </param>
<returns > a <see cref= "T:Gtk.ToggleButton" /> </returns>
<remarks > To be added</remarks>
2003-03-07 01:30:00 +00:00
</Docs>
</Member>
2003-02-12 02:00:12 +00:00
</Members>
2004-02-26 18:46:28 +00:00
</Type>