Ryujinx-GtkSharp/sample/gio/AppInfo.cs
Stephane Delcroix 0f36039b44 fix the sample for API change
svn path=/trunk/gtk-sharp/; revision=126577
2009-02-11 12:34:28 +00:00

31 lines
980 B
C#

using GLib;
using System;
namespace TestGio
{
public class TestAppInfo
{
static void Main (string[] args)
{
if (args.Length != 1) {
Console.WriteLine ("Usage: TestAppInfo mimetype");
return;
}
GLib.GType.Init ();
// Gtk.Application.Init ();
Console.WriteLine ("Default Handler for {0}: {1}", args[0], AppInfoAdapter.GetDefaultForType (args[0], false).Name);
Console.WriteLine();
Console.WriteLine("List of all {0} handlers", args[0]);
foreach (AppInfo appinfo in AppInfoAdapter.GetAllForType (args[0]))
Console.WriteLine ("\t{0}: {1} {2}", appinfo.Name, appinfo.Executable, appinfo.Description);
AppInfo app_info = AppInfoAdapter.GetDefaultForType ("image/jpeg", false);
Console.WriteLine ("{0}:\t{1}", app_info.Name, app_info.Description);
Console.WriteLine ("All installed AppInfos:");
foreach (AppInfo appinfo in AppInfoAdapter.GetAll ())
Console.WriteLine ("\t{0}: {1} ", appinfo.Name, appinfo.Executable);
}
}
}