2009-01-07 21:12:08 +00:00
<Type Name= "AppInfo" FullName= "GLib.AppInfo" >
<TypeSignature Language= "C#" Value= "public interface AppInfo : GLib.IWrapper" />
<AssemblyInfo >
<AssemblyName > gio-sharp</AssemblyName>
</AssemblyInfo>
<Interfaces >
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
</Interfaces>
<Docs >
2009-01-08 15:28:17 +00:00
<summary > This interface provides application information. See <see cref= "T:GLib.DesktopAppInfo" /> and <see cref= "T:GLib.AppInfoAdapter" /> for concretes implementations and usage.</summary>
2009-01-08 15:28:08 +00:00
<remarks > The following code sample lists all the application installed on your system:
<example > <code lang= "C#" >
public class TestAppInfo
{
static void Main (string[] args)
{
GLib.GType.Init ();
foreach (AppInfo appinfo in AppInfoAdapter.All)
Console.WriteLine ("\t{0}: {1}, {2} ", appinfo.Name, appinfo.Descritpion, appinfo.Executable);
}
}
</code> </example> </remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
<Members >
<Member MemberName= "AddSupportsType" >
<MemberSignature Language= "C#" Value= "public bool AddSupportsType (string content_type);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "content_type" Type= "System.String" />
</Parameters>
<Docs >
<param name= "content_type" > To be added.</param>
2009-01-08 15:28:08 +00:00
<summary > Adds a content type to the application.</summary>
<returns > Always returns True. Throw a <see cref= "T:GLib.GException" /> if something went wrong.</returns>
<remarks >
<para > Adds a content type to the application information to indicate the application is capable of opening files with the given content type.</para>
<para >
This method always returns True, or throw a <see cref= "T:GLib.GException" /> if something went wrong.
</para>
</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "CanRemoveSupportsType" >
2009-01-08 15:28:01 +00:00
<MemberSignature Language= "C#" Value= "public bool CanRemoveSupportsType { get; }" />
<MemberType > Property</MemberType>
2009-01-07 21:12:08 +00:00
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 15:28:08 +00:00
<summary > If a supported content type can be removed from an application.</summary>
<value > True if it is possible to remove supported content types from the application, False if not.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Description" >
<MemberSignature Language= "C#" Value= "public string Description { get; }" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 10:15:18 +00:00
<summary > An human-readable description of an installed application.</summary>
<value > A string containing a description of the application, or null if none.</value>
<remarks > The following code snippet:
<example > <code lang= "C#" >
AppInfo app_info = AppInfoAdapter.GetDefaultForType ("image/jpeg", false);
Console.WriteLine ("{0}:\t{1}", app_info.Name, app_info.Description);
</code> </example>
produces the following output (depending on your installation):
<para >
Eye of Gnome: Browse and rotate images
</para> </remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Dup" >
<MemberSignature Language= "C#" Value= "public GLib.AppInfo Dup ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > GLib.AppInfo</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
<summary > To be added.</summary>
<returns > To be added.</returns>
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Equal" >
<MemberSignature Language= "C#" Value= "public bool Equal (GLib.AppInfo appinfo2);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "appinfo2" Type= "GLib.AppInfo" />
</Parameters>
<Docs >
<param name= "appinfo2" > To be added.</param>
<summary > To be added.</summary>
<returns > To be added.</returns>
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Executable" >
<MemberSignature Language= "C#" Value= "public string Executable { get; }" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 10:15:18 +00:00
<summary > The executable's name for the installed application.</summary>
<value > A string containing the AppInfo's application binary's name.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Icon" >
<MemberSignature Language= "C#" Value= "public GLib.Icon Icon { get; }" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > GLib.Icon</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 10:15:18 +00:00
<summary > The <see cref= "T:GLib.Icon" /> for the application.</summary>
<value > The default <see cref= "T:GLib.Icon" /> for the application.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Id" >
<MemberSignature Language= "C#" Value= "public string Id { get; }" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 10:15:18 +00:00
<summary > The ID of an application.</summary>
<value > A string containing the application's ID.</value>
<remarks > An id si s a string that identifies the application. The exact format of the id is platform depenedent. For instance, on Unix, this is the desktop file id from the xdg menu specification.</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Launch" >
<MemberSignature Language= "C#" Value= "public bool Launch (GLib.List files, GLib.AppLaunchContext launch_context);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "files" Type= "GLib.List" />
<Parameter Name= "launch_context" Type= "GLib.AppLaunchContext" />
</Parameters>
<Docs >
2009-01-08 15:28:08 +00:00
<param name= "files" > A <see cref= "T:GLib.List" /> of <see cref= "T:GLib.File" /> objects, or null to launch the application without arguments.</param>
<param name= "launch_context" > An <see cref= "T:GLib.AppLauchContext" /> , or null.</param>
<summary > Launches the application.</summary>
<returns > Always returns True. Throws a <see cref= "T:GLib.GException" /> if something went wrong.</returns>
<remarks >
<para > Launches the application. Passes files to the launched application as arguments, using the optional launch_context to get information about the details of the launcher (like what screen it is on). Throws a <see cref= "T:GLib.GException" /> on error.</para>
<para > To lauch the application without arguments pass a null files list.</para>
<para > Note that even if the launch is successful the application launched can fail to start if it runs into problems during startup. There is no way to detect this.</para>
<para > Some URIs can be changed when passed through a GFile (for instance unsupported uris with strange formats like mailto:), so if you have a textual uri you want to pass in as argument, consider using <see cref= "M:GLib.AppInfo.LaunchUris" /> instead.</para>
</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "LaunchUris" >
<MemberSignature Language= "C#" Value= "public bool LaunchUris (GLib.List uris, GLib.AppLaunchContext launch_context);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "uris" Type= "GLib.List" />
<Parameter Name= "launch_context" Type= "GLib.AppLaunchContext" />
</Parameters>
<Docs >
2009-01-08 15:28:08 +00:00
<param name= "uris" > A <see cref= "T:GLib.List" /> of <see cref= "T:System.String" /> containing URIs to launch, or null.</param>
<param name= "launch_context" > A <see cref= "T:GLib.AppLaunchContext" /> , or null.</param>
<summary > Launches the application.</summary>
<returns > Always returns True. Throws a <see cref= "T:GLib.GException" /> if something went wrong.</returns>
<remarks >
<para > Launches the application. Passes uris to the launched application as arguments, using the optional launch_context to get information about the details of the launcher (like what screen it is on). On error, throws a <see cref= "T:GLib.GException" /> </para>
<para > To lauch the application without arguments pass a NULL uris list.</para>
<para > Note that even if the launch is successful the application launched can fail to start if it runs into problems during startup. There is no way to detect this.</para>
</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "Name" >
<MemberSignature Language= "C#" Value= "public string Name { get; }" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 10:15:18 +00:00
<summary > The name of the installed application.</summary>
<value > A <see cref= "T:System.String" /> containing the name of the application.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "RemoveSupportsType" >
<MemberSignature Language= "C#" Value= "public bool RemoveSupportsType (string content_type);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "content_type" Type= "System.String" />
</Parameters>
<Docs >
2009-01-08 15:28:08 +00:00
<param name= "content_type" > A <see cref= "T:System.String" /> containing a content type. On Unix, content types are mimetypes, so "image/jpeg" is a valid content type.</param>
<summary > Removes a supported type from an application, if possible.</summary>
<returns > Always returns True. Throws a <see cref= "T:GLib.GException" /> if something went wrong.</returns>
<remarks > This method always returns True, but throws on any error. Checking <see cref= "M:GLib.AppInfo.CanRemoveSupportsType" /> first will avoid some exceptions, but that doesn't mean it won't throw at all.</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "SetAsDefaultForExtension" >
<MemberSignature Language= "C#" Value= "public bool SetAsDefaultForExtension (string extension);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "extension" Type= "System.String" />
</Parameters>
<Docs >
2009-01-08 15:28:08 +00:00
<param name= "extension" > A <see cref= "T:System.String" /> containing the file extension (without the dot).</param>
<summary > Sets the application as the default handler for the given file extension.</summary>
<returns > Always returns True. Throws a <see cref= "T:GLib.GException" /> if something went wrong.</returns>
<remarks > This method always returns True, or throw a <see cref= "T:GLib.GException" /> if something went wrong.</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "SetAsDefaultForType" >
<MemberSignature Language= "C#" Value= "public bool SetAsDefaultForType (string content_type);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "content_type" Type= "System.String" />
</Parameters>
<Docs >
2009-01-08 15:28:08 +00:00
<param name= "content_type" > A <see cref= "T:System.String" /> containing the content type.</param>
<summary > Sets the application as the default handler for a given type.</summary>
<returns > Always returns True. Throws a <see cref= "T:Glib.GException" /> if something went wrong.</returns>
<remarks > This method always returns True, or throw a <see cref= "T:GLib.GException" /> if something went wrong.</remarks>
2009-01-07 21:12:08 +00:00
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "ShouldShow" >
2009-01-08 10:34:46 +00:00
<MemberSignature Language= "C#" Value= "public bool ShouldShow { get; }" />
<MemberType > Property</MemberType>
2009-01-07 21:12:08 +00:00
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 15:28:08 +00:00
<summary > If the application info should be shown in menus that list available applications.</summary>
<value > True if the application should be shown, False otherwise.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "SupportsFiles" >
2009-01-08 10:34:46 +00:00
<MemberSignature Language= "C#" Value= "public bool SupportsFiles { get; }" />
<MemberType > Property</MemberType>
2009-01-07 21:12:08 +00:00
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 15:28:08 +00:00
<summary > If the application accepts files as arguments.</summary>
<value > True if the application supports files.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
<Member MemberName= "SupportsUris" >
2009-01-08 10:34:46 +00:00
<MemberSignature Language= "C#" Value= "public bool SupportsUris { get; }" />
<MemberType > Property</MemberType>
2009-01-07 21:12:08 +00:00
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Docs >
2009-01-08 15:28:08 +00:00
<summary > If the application supports reading files and directories from URIs.</summary>
<value > True if the application supports URIs.</value>
2009-01-07 21:12:08 +00:00
<remarks > To be added.</remarks>
<since version= "Gtk# 2.14" />
</Docs>
</Member>
</Members>
2009-05-14 18:32:22 +00:00
</Type>