/* -*- mode: c; style: linux -*- */ /* mime-type-info.h * * Copyright (C) 2002 Ximian, Inc. * * Written by Bradford Hovinen * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program 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 * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #ifndef __MIME_TYPE_INFO_H #define __MIME_TYPE_INFO_H #include #include #include #include #include "model-entry.h" G_BEGIN_DECLS #define MIME_TYPE_INFO(obj) ((MimeTypeInfo *) obj) #define MIME_CATEGORY_INFO(obj) ((MimeCategoryInfo *) obj) typedef struct _MimeTypeInfo MimeTypeInfo; typedef struct _MimeCategoryInfo MimeCategoryInfo; struct _MimeTypeInfo { ModelEntry entry; gchar *mime_type; gchar *description; gchar *icon_name; gchar *icon_path; GList *file_extensions; GdkPixbuf *icon_pixbuf; GdkPixbuf *small_icon_pixbuf; gboolean use_category; gboolean use_cat_loaded; Bonobo_ServerInfo *default_component; GnomeVFSMimeApplication *default_action; }; struct _MimeCategoryInfo { ModelEntry entry; gchar *name; gchar *description; GnomeVFSMimeApplication *default_action; gboolean use_parent_category; gboolean use_parent_cat_loaded; }; void load_all_mime_types (GtkTreeModel *model); MimeTypeInfo *mime_type_info_new (const gchar *mime_type, GtkTreeModel *model); void mime_type_info_load_all (MimeTypeInfo *info); const gchar *mime_type_info_get_description (MimeTypeInfo *info); GdkPixbuf *mime_type_info_get_icon (MimeTypeInfo *info); const GList *mime_type_info_get_file_extensions (MimeTypeInfo *info); const gchar *mime_type_info_get_icon_path (MimeTypeInfo *info); gboolean mime_type_info_get_use_category (MimeTypeInfo *info); void mime_type_info_save (MimeTypeInfo *info); void mime_type_info_free (MimeTypeInfo *info); gchar *mime_type_info_get_file_extensions_pretty_string (MimeTypeInfo *info); gchar *mime_type_info_get_category_name (const MimeTypeInfo *info); void mime_type_info_set_category_name (const MimeTypeInfo *info, const gchar *category_name, const gchar *category_desc, GtkTreeModel *model); void mime_type_info_set_file_extensions (MimeTypeInfo *info, GList *list); MimeCategoryInfo *mime_category_info_new (MimeCategoryInfo *parent, const gchar *name, const gchar *description, GtkTreeModel *model); void mime_category_info_load_all (MimeCategoryInfo *category); void mime_category_info_save (MimeCategoryInfo *category); GList *mime_category_info_find_apps (MimeCategoryInfo *info); gchar *mime_category_info_get_full_name (MimeCategoryInfo *info); gchar *mime_category_info_get_full_description (MimeCategoryInfo *info); gchar *mime_type_get_pretty_name_for_server (Bonobo_ServerInfo *server); MimeTypeInfo *get_mime_type_info (const gchar *mime_type); G_END_DECLS #endif /* __MIME_TYPE_INFO_H */