2003-02-12 02:00:12 +00:00
<Type Name= "FileSelection" FullName= "Gtk.FileSelection" >
2003-02-25 14:22:39 +00:00
<TypeSignature Language= "C#" Value= "public class FileSelection : Gtk.Dialog, Implementor, IWrapper, IWrapper, IDisposable" Maintainer= "Lee Mallabone" />
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-02-25 14:22:39 +00:00
<summary > Creates a new dialog for the user to select one or more files, directories, or cancel.</summary>
2003-03-07 01:30:00 +00:00
<remarks >
2003-09-17 21:56:59 +00:00
<para >
<see cref= "T:Gtk.FileSelection" /> should be used to retrieve file or directory names from the user. It will create a new dialog window containing a directory list, and a file list corresponding to the current working directory.
2003-02-25 14:22:39 +00:00
</para>
2003-03-07 01:30:00 +00:00
<para >
2003-02-25 14:22:39 +00:00
The filesystem can be navigated using the directory list or the drop-down history menu. Alternatively, the TAB key can be used to navigate using filename completion - common in text based editors such as emacs and jed.</para>
2003-03-07 01:30:00 +00:00
<para >
2003-02-25 14:22:39 +00:00
Simple file operations; create directory, delete file, and rename file, are available from buttons at the top of the dialog.</para>
2003-03-07 01:30:00 +00:00
<para >
2003-09-17 21:56:59 +00:00
The functionality of the <see cref= "T:Gtk.FileSelection" /> can be extended by using the available accessors to the buttons and drop downs.
2003-03-07 01:30:00 +00:00
</para>
2004-06-19 18:25:02 +00:00
<example >
<code lang= "C#" >
2003-07-20 18:11:11 +00:00
using System;
using Gtk;
class FileSelectionSample
{
Label lbl;
2004-06-19 18:25:02 +00:00
2003-07-20 18:11:11 +00:00
static void Main ()
{
2004-06-19 18:25:02 +00:00
new FileSelectionSample ();
2003-07-20 18:11:11 +00:00
}
2004-06-19 18:25:02 +00:00
2003-07-20 18:11:11 +00:00
FileSelectionSample ()
{
Application.Init ();
Window win = new Window ("FileSelectionSample");
win.SetDefaultSize (250,200);
win.DeleteEvent += new DeleteEventHandler (OnWinDelete);
VBox vbox = new VBox (true, 1);
win.Add (vbox);
Button btn = new Button ("Select a file.");
btn.Clicked += new EventHandler (OnButtonClicked);
vbox.Add (btn);
lbl = new Label ("Selected: ");
vbox.Add (lbl);
win.ShowAll ();
Application.Run ();
}
2004-06-19 18:25:02 +00:00
2003-07-20 18:11:11 +00:00
void OnButtonClicked (object o, EventArgs args)
{
FileSelection fs = new FileSelection ("Choose a file");
fs.Run ();
lbl.Text = "Selected: " + fs.SelectionEntry.Text;
fs.Hide ();
}
2004-06-19 18:25:02 +00:00
2003-07-20 18:11:11 +00:00
void OnWinDelete (object o, DeleteEventArgs args)
{
Application.Quit ();
}
2004-06-19 18:25:02 +00:00
}
</code>
</example>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
<Base >
<BaseTypeName > Gtk.Dialog</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= "Complete" >
<MemberSignature Language= "C#" Value= "public void Complete (string pattern);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "pattern" Type= "System.String" />
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-03-07 01:30:00 +00:00
<summary > Restrict the visible files and directories to those that match the given <paramref name= "pattern" /> .</summary>
2003-02-25 14:22:39 +00:00
<param name= "pattern" > A simple wildcard pattern such as '*.txt'.</param>
2003-03-07 01:30:00 +00:00
<remarks >
2003-09-17 21:56:59 +00:00
<para > This method attempts to match <paramref name= "pattern" /> to a valid filenames or subdirectories in the current directory. If a match can be made, the matched filename will appear in the text entry field of the <see cref= "T:Gtk.FileSelection" /> . If a partial match can be made, the "Files" list will contain those file names which have been partially matched, and the "Folders" list will show those directories with a partial match.</para>
2003-03-07 01:30:00 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "ShowFileopButtons" >
<MemberSignature Language= "C#" Value= "public void ShowFileopButtons ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2003-02-25 14:22:39 +00:00
<summary > Ensures that the file operation buttons are visible.</summary>
2003-03-07 01:30:00 +00:00
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "HideFileopButtons" >
<MemberSignature Language= "C#" Value= "public void HideFileopButtons ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2003-02-25 14:22:39 +00:00
<summary > Ensures that the file operation buttons are hidden.</summary>
2003-03-07 01:30:00 +00:00
<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 FileSelection (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>
<returns > An instance of FileSelection, wrapping the C object.</returns>
<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 FileSelection (string title);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "title" Type= "System.String" />
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-02-25 14:22:39 +00:00
<summary > The main way to construct a new file selector.</summary>
<param name= "title" > A title that will appear in the window's title bar.</param>
<returns > A new FileSelection</returns>
2003-03-07 01:30:00 +00:00
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "ActionArea" >
<MemberSignature Language= "C#" Value= "public Gtk.HButtonBox ActionArea { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.HButtonBox</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-09-17 21:56:59 +00:00
<returns > an object of type <see cref= "T:Gtk.HButtonBox" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "ButtonArea" >
<MemberSignature Language= "C#" Value= "public Gtk.HButtonBox ButtonArea { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.HButtonBox</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-09-17 21:56:59 +00:00
<returns > an object of type <see cref= "T:Gtk.HButtonBox" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "FileopRenFile" >
<MemberSignature Language= "C#" Value= "public Gtk.Button FileopRenFile { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Button</ReturnType>
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > The 'rename file' button of this file selector.</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks >
<para > This button may or may not be visible, see <see cref= "M:Gtk.FileSelection.ShowFileopButtons()" /> and <see cref= "M:Gtk.FileSelection.ShowFileopButtons()" /> .</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "FileopDelFile" >
<MemberSignature Language= "C#" Value= "public Gtk.Button FileopDelFile { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Button</ReturnType>
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > The 'delete' button of this file selector.</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks >
<para > This button may or may not be visible, see <see cref= "M:Gtk.FileSelection.ShowFileopButtons()" /> and <see cref= "M:Gtk.FileSelection.ShowFileopButtons()" /> .</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "FileopCDir" >
<MemberSignature Language= "C#" Value= "public Gtk.Button FileopCDir { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Button</ReturnType>
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > The 'create directory' button of this file selector.</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks >
<para > This button may or may not be visible, see <see cref= "M:Gtk.FileSelection.ShowFileopButtons()" /> and <see cref= "M:Gtk.FileSelection.ShowFileopButtons()" /> .</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "FileopFile" >
<MemberSignature Language= "C#" Value= "public string FileopFile { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-09-17 21:56:59 +00:00
<returns > an object of type <see cref= "T:System.String" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "FileopEntry" >
<MemberSignature Language= "C#" Value= "public Gtk.Entry FileopEntry { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Entry</ReturnType>
</ReturnValue>
<Docs >
2003-09-17 21:56:59 +00:00
<summary > The main <see cref= "T:Gtk.Entry" /> widget of this <see cref= "T:Gtk.FileSelection" /> .</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "FileopDialog" >
<MemberSignature Language= "C#" Value= "public Gtk.MessageDialog FileopDialog { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.MessageDialog</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-09-17 21:56:59 +00:00
<returns > an object of type <see cref= "T:Gtk.MessageDialog" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "HistoryMenu" >
<MemberSignature Language= "C#" Value= "public Gtk.Menu HistoryMenu { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Menu</ReturnType>
</ReturnValue>
<Docs >
2003-03-07 01:30:00 +00:00
<summary > The <see cref= "T:Gtk.Menu" /> that is displayed by the <see cref= "P:Gtk.FileSelection.HistoryPulldown" /> .</summary>
2003-02-25 14:22:39 +00:00
<returns > A menu containing the file system paths higher than the selected directory, and the user's directory history.</returns>
2003-03-07 01:30:00 +00:00
<remarks >
2003-09-17 21:56:59 +00:00
<para > Note that this <see cref= "T:Gtk.Widget" /> does not just contain history, it contains a list of directories above the current directory in the filesystem as well as user directory history.</para>
2003-03-07 01:30:00 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "HistoryPulldown" >
<MemberSignature Language= "C#" Value= "public Gtk.OptionMenu HistoryPulldown { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.OptionMenu</ReturnType>
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > The drop down menu containing directories in the filesystem above the selected directory, and the user's directory history.</summary>
2003-03-07 01:30:00 +00:00
<returns > The <see cref= "T:Gtk.OptionMenu" /> at the top of the file selector.</returns>
<remarks >
<para > This widget displays the menu returned by <see cref= "P:Gtk.FileSelection.HistoryMenu" /> .</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "HelpButton" >
<MemberSignature Language= "C#" Value= "public Gtk.Button HelpButton { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Button</ReturnType>
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > A help button, not displayed by default.</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "CancelButton" >
<MemberSignature Language= "C#" Value= "public Gtk.Button CancelButton { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Button</ReturnType>
</ReturnValue>
<Docs >
2003-07-20 18:11:11 +00:00
<summary > The 'cancel' button of this file selector.</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "OkButton" >
<MemberSignature Language= "C#" Value= "public Gtk.Button OkButton { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Button</ReturnType>
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > The 'OK' button of this file selector.</summary>
2003-03-07 01:30:00 +00:00
<returns />
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "SelectionText" >
<MemberSignature Language= "C#" Value= "public Gtk.Label SelectionText { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Label</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-09-17 21:56:59 +00:00
<returns > an object of type <see cref= "T:Gtk.Label" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "SelectionEntry" >
<MemberSignature Language= "C#" Value= "public Gtk.Entry SelectionEntry { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.Entry</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-09-17 21:56:59 +00:00
<returns > an object of type <see cref= "T:Gtk.Entry" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "FileList" >
<MemberSignature Language= "C#" Value= "public Gtk.TreeView FileList { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.TreeView</ReturnType>
</ReturnValue>
<Docs >
2003-03-07 01:30:00 +00:00
<summary > The <see cref= "T:Gtk.TreeView" /> widget that displays files in this file selector.</summary>
<returns />
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "DirList" >
<MemberSignature Language= "C#" Value= "public Gtk.TreeView DirList { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.TreeView</ReturnType>
</ReturnValue>
<Docs >
2003-03-07 01:30:00 +00:00
<summary > The <see cref= "T:Gtk.TreeView" /> widget that displays directories in this file selector.</summary>
<returns />
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Selections" >
2003-03-25 23:49:54 +00:00
<MemberSignature Language= "C#" Value= "public string [] Selections { get; };" />
2003-02-12 02:00:12 +00:00
<MemberType > Property</MemberType>
<ReturnValue >
2003-03-25 23:49:54 +00:00
<ReturnType > System.String []</ReturnType>
2003-02-12 02:00:12 +00:00
</ReturnValue>
<Docs >
2003-02-25 14:22:39 +00:00
<summary > Get the files that are selected</summary>
<returns > An array of file paths</returns>
2003-03-07 01:30:00 +00:00
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "ShowFileops" >
<MemberSignature Language= "C#" Value= "public bool ShowFileops { 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-02-25 14:22:39 +00:00
<summary > Manage whether buttons are displayed for doing file operations.</summary>
2003-03-07 01:30:00 +00:00
<param name= "value" > Set to <see langword= "true" /> to display the file buttons.</param>
<returns >
<see langword= "true" /> for buttons to be shown, <see langword= "false" /> otherwise.</returns>
<remarks >
<para > This manipulates whether the buttons for creating a directory, deleting files and renaming files, are displayed.</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Filename" >
<MemberSignature Language= "C#" Value= "public string Filename { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 02:00:12 +00:00
<Docs >
2003-02-25 14:22:39 +00:00
<summary > Manage the selected filename.</summary>
<param name= "value" > Sets a default path for the file requestor.</param>
<returns > The selected filename in the on-disk encoding.</returns>
2003-03-07 01:30:00 +00:00
<remarks >
<para > If <paramref name= "value" /> includes a directory path, then the requestor will open with that path as its current working directory. The encoding of filename is the on-disk encoding, which may not be UTF-8.</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "SelectMultiple" >
<MemberSignature Language= "C#" Value= "public bool SelectMultiple { 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-02-25 14:22:39 +00:00
<summary > Manage whether more than one file can be selected.</summary>
2003-03-07 01:30:00 +00:00
<param name= "value" > Set to <see langword= "true" /> to allow more than one file to be selected in the file list, <see langword= "false" /> to only allow selection of a single file.</param>
<returns >
<see langword= "true" /> if multiple selections are allowed, <see langword= "false" /> otherwise.</returns>
<remarks />
</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 >
2004-06-21 20:14:42 +00:00
<summary > GType Property.</summary>
2003-12-24 01:35:30 +00:00
<returns > a <see cref= "T:GLib.GType" /> </returns>
2004-06-21 20:14:42 +00:00
<remarks > Returns the native <see cref= "T:GLib.GType" /> value for <see cref= "T:Gtk.FileSelection" /> .</remarks>
2003-12-24 01:35:30 +00:00
</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 FileSelection (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 >
2004-06-21 20:33:11 +00:00
<summary > Protected Constructor.</summary>
2003-12-24 01:35:30 +00:00
<param name= "gtype" > a <see cref= "T:GLib.GType" /> </param>
<returns > a <see cref= "T:Gtk.FileSelection" /> </returns>
2004-06-21 20:33:11 +00:00
<remarks > Chain to this constructor if you have manually registered a native <see cref= "T:GLib.GType" /> value for your subclass.</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
</Members>
2004-02-26 18:46:28 +00:00
</Type>