gnome-control-center/capplets/file-types/mime-type-info.h
Bradford Hovinen 2073f4108f Fix logic (mime_type_info_load_all): Don't load default_action if
2002-01-28  Bradford Hovinen  <hovinen@ximian.com>

	* mime-type-info.c (update_subcategories): Fix logic
	(mime_type_info_load_all): Don't load default_action if
	custom_line is set

	* mime-category-edit-dialog.c (store_data): Call
	mime_category_info_update
	(store_data): Don't notify the model -- nothing there could have
	changed

	* mime-type-info.c (mime_category_info_update): Implement
	(update_subcategories): Update; split from set_subcategory_ids

	* mime-category-edit-dialog.c (populate_application_list): Notify
	destruction with gnome_vfs_mime_application_free
	(store_data): Store default action
	(store_data): Store custom line, needs terminal
	(populate_application_list): Set needs_terminal_toggle

	* mime-type-info.c (mime_type_info_get_use_category):
	Implement. Factor from mime_type_info_load_all
	(find_possible_supported_apps, reduce_supported_app_list): Use
	mime_type_info_get_use_category
	(get_gconf_base_name): Replace parentheses with '-'
	(mime_category_info_load_all): Only load default action, custom
	line if not already loaded

	* mime-edit-dialog.c (populate_component_list): Use get_all_components
	(populate_application_list): Use get_all_applications
2002-01-28 16:43:40 +00:00

119 lines
4.2 KiB
C

/* -*- mode: c; style: linux -*- */
/* mime-type-info.h
*
* Copyright (C) 2002 Ximian, Inc.
*
* Written by Bradford Hovinen <hovinen@ximian.com>
*
* 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 <gnome.h>
#include <bonobo.h>
#include <libgnomevfs/gnome-vfs-mime-info.h>
#include <libgnomevfs/gnome-vfs-mime-handlers.h>
#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;
gchar *custom_line;
gboolean needs_terminal;
};
struct _MimeCategoryInfo
{
ModelEntry entry;
gchar *name;
GnomeVFSMimeApplication *default_action;
gchar *custom_line;
gboolean needs_terminal;
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 (const 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,
GtkTreeModel *model);
void mime_type_info_set_file_extensions (MimeTypeInfo *info,
GList *list);
MimeCategoryInfo *mime_category_info_new (MimeCategoryInfo *parent,
const gchar *name,
GtkTreeModel *model);
void mime_category_info_load_all (MimeCategoryInfo *category);
void mime_category_info_save (MimeCategoryInfo *category);
void mime_category_info_update (MimeCategoryInfo *info);
GList *mime_category_info_find_apps (MimeCategoryInfo *info);
gchar *mime_category_info_get_full_name (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 */