mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 23:25:36 +00:00
0f36039b44
svn path=/trunk/gtk-sharp/; revision=126577
31 lines
980 B
C#
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);
|
|
}
|
|
}
|
|
}
|