66 lines
1.7 KiB
C
66 lines
1.7 KiB
C
/* $Id$ */
|
|
/* Copyright (c) 2007 The DeforaOS Project */
|
|
/* This file is part of Browser */
|
|
/* Browser 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.
|
|
*
|
|
* Browser 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
|
|
* Browser; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
* Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
#ifndef BROWSER_MIME_H
|
|
# define BROWSER_MIME_H
|
|
|
|
# include <System.h>
|
|
# include <gtk/gtk.h>
|
|
|
|
# define MIME_CONFIG_FILE ".mime"
|
|
|
|
|
|
/* Mime */
|
|
/* types */
|
|
typedef struct _MimeType
|
|
{
|
|
char * type;
|
|
char * glob;
|
|
GdkPixbuf * icon_24;
|
|
#if GTK_CHECK_VERSION(2, 6, 0)
|
|
GdkPixbuf * icon_48;
|
|
GdkPixbuf * icon_96;
|
|
#endif
|
|
} MimeType;
|
|
|
|
typedef struct _Mime
|
|
{
|
|
MimeType * types;
|
|
unsigned int types_cnt;
|
|
Config * config;
|
|
} Mime;
|
|
|
|
|
|
/* functions */
|
|
Mime * mime_new(void);
|
|
void mime_delete(Mime * mime);
|
|
|
|
/* accessors */
|
|
char const * mime_get_handler(Mime * mime, char const * type,
|
|
char const * action);
|
|
int mime_set_handler(Mime * mime, char const * type, char const * action,
|
|
char const * handler);
|
|
|
|
/* useful */
|
|
char const * mime_type(Mime * mime, char const * path);
|
|
/* FIXME return an enum with error codes? */
|
|
int mime_action(Mime * mime, char const * action, char const * path);
|
|
void mime_icons(Mime * mime, GtkIconTheme * theme, char const * type, ...);
|
|
|
|
#endif /* !BROWSER_MIME_H */
|