/* vi:set et ai sw=2 sts=2 ts=2: */ /*- * Copyright (c) 2009 Jannis Pohlmann * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU Library General * Public License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include static void font_thumbnailer_provider_thumbnailer_provider_init (TumblerThumbnailerProviderIface *iface); static GList *font_thumbnailer_provider_get_thumbnailers (TumblerThumbnailerProvider *provider); struct _FontThumbnailerProviderClass { GObjectClass __parent__; }; struct _FontThumbnailerProvider { GObject __parent__; }; G_DEFINE_DYNAMIC_TYPE_EXTENDED (FontThumbnailerProvider, font_thumbnailer_provider, G_TYPE_OBJECT, 0, TUMBLER_ADD_INTERFACE (TUMBLER_TYPE_THUMBNAILER_PROVIDER, font_thumbnailer_provider_thumbnailer_provider_init)); void font_thumbnailer_provider_register (TumblerProviderPlugin *plugin) { font_thumbnailer_provider_register_type (G_TYPE_MODULE (plugin)); } static void font_thumbnailer_provider_class_init (FontThumbnailerProviderClass *klass) { GObjectClass *gobject_class; gobject_class = G_OBJECT_CLASS (klass); } static void font_thumbnailer_provider_class_finalize (FontThumbnailerProviderClass *klass) { } static void font_thumbnailer_provider_thumbnailer_provider_init (TumblerThumbnailerProviderIface *iface) { iface->get_thumbnailers = font_thumbnailer_provider_get_thumbnailers; } static void font_thumbnailer_provider_init (FontThumbnailerProvider *provider) { } static GList * font_thumbnailer_provider_get_thumbnailers (TumblerThumbnailerProvider *provider) { static const gchar *mime_types[] = { "application/x-font-otf", "application/x-font-pcf", "application/x-font-ttf", "application/x-font-type1", NULL, }; FontThumbnailer *thumbnailer; GList *thumbnailers = NULL; GStrv uri_schemes; /* determine the URI schemes supported by GIO */ uri_schemes = tumbler_util_get_supported_uri_schemes (); /* create the pixbuf thumbnailer */ thumbnailer = g_object_new (TYPE_FONT_THUMBNAILER, "uri-schemes", uri_schemes, "mime-types", mime_types, NULL); /* add the thumbnailer to the list */ thumbnailers = g_list_append (thumbnailers, thumbnailer); /* free URI schemes */ g_strfreev (uri_schemes); return thumbnailers; }