99e4257a9f
This includes changes to fix the build.
30 lines
984 B
C#
30 lines
984 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 (IAppInfo appinfo in AppInfoAdapter.GetAllForType (args[0]))
|
|
Console.WriteLine ("\t{0}: {1} {2}", appinfo.Name, appinfo.Executable, appinfo.Description);
|
|
|
|
IAppInfo app_info = AppInfoAdapter.GetDefaultForType ("image/jpeg", false);
|
|
Console.WriteLine ("{0}:\t{1}", app_info.Name, app_info.Description);
|
|
|
|
Console.WriteLine ("All installed IAppInfos:");
|
|
foreach (IAppInfo appinfo in AppInfoAdapter.GetAll ())
|
|
Console.WriteLine ("\t{0}: {1} ", appinfo.Name, appinfo.Executable);
|
|
}
|
|
}
|
|
}
|