MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: obrechts (544)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //usr/local/ssl/include/gnome-vfs-2.0/libgnomevfs/gnome-vfs-mime-handlers.h
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/* gnome-vfs-mime-handlers.h - Mime type handlers for the GNOME Virtual
   File System.

   Copyright (C) 2000 Eazel, Inc.

   The Gnome 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.

   The Gnome 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 the Gnome Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.

   Author: Maciej Stachowiak <mjs@eazel.com> */

#ifndef GNOME_VFS_MIME_HANDLERS_H
#define GNOME_VFS_MIME_HANDLERS_H

#include <libgnomevfs/gnome-vfs-result.h>
#include <libgnomevfs/gnome-vfs-mime-utils.h>
#include <libgnomevfs/gnome-vfs-uri.h>

G_BEGIN_DECLS

typedef enum {
	GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_URIS,
	GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_PATHS,
	GNOME_VFS_MIME_APPLICATION_ARGUMENT_TYPE_URIS_FOR_NON_FILES
} GnomeVFSMimeApplicationArgumentType;

typedef struct _GnomeVFSMimeApplicationPrivate GnomeVFSMimeApplicationPrivate;

/**
 * GnomeVFSMimeApplication:
 * @id: The desktop ID of the application.
 * @name: The user-visible name of the application.
 *
 * A struct encapsulating information about an
 * application known to the MIME database.
 *
 * Only very few fields of this information are actually
 * public, most of them must be queried using the
 * <literal>gnome_vfs_mime_application_*()</literal>
 * API.
 **/
typedef struct {
	/*< public > */
	char *id;
	char *name;

	/*< private > */
#ifndef GNOME_VFS_DISABLE_DEPRECATED
	char *command;
	gboolean can_open_multiple_files;
	GnomeVFSMimeApplicationArgumentType expects_uris;
	GList *supported_uri_schemes;
#else
	char *_command;
	gboolean _can_open_multiple_files;
	GnomeVFSMimeApplicationArgumentType _expects_uris;
	GList *_supported_uri_schemes;
#endif
	gboolean requires_terminal;

	/* Padded to avoid future breaks in ABI compatibility */
	void *reserved1;

	GnomeVFSMimeApplicationPrivate *priv;
} GnomeVFSMimeApplication;

/* Database */

GnomeVFSMimeApplication *gnome_vfs_mime_get_default_application                   (const char              *mime_type);
GnomeVFSMimeApplication *gnome_vfs_mime_get_default_application_for_uri           (const char		   *uri,
									           const char              *mime_type);
GList *                  gnome_vfs_mime_get_all_applications                      (const char              *mime_type);
GList *			 gnome_vfs_mime_get_all_applications_for_uri	          (const char              *uri,
									           const char              *mime_type);
/* MIME types */

const char 	        *gnome_vfs_mime_get_description   		          (const char              *mime_type);
gboolean 	         gnome_vfs_mime_can_be_executable   		          (const char              *mime_type);

/* Application */

GnomeVFSMimeApplication *gnome_vfs_mime_application_new_from_desktop_id           (const char              *id);
GnomeVFSResult           gnome_vfs_mime_application_launch                        (GnomeVFSMimeApplication *app,
									           GList                   *uris);
GnomeVFSResult           gnome_vfs_mime_application_launch_with_env	          (GnomeVFSMimeApplication *app,
									           GList                   *uris,
									           char                   **envp);
const char		*gnome_vfs_mime_application_get_desktop_id	          (GnomeVFSMimeApplication *app);
const char		*gnome_vfs_mime_application_get_desktop_file_path         (GnomeVFSMimeApplication *app);
const char		*gnome_vfs_mime_application_get_name                      (GnomeVFSMimeApplication *app);
const char              *gnome_vfs_mime_application_get_generic_name              (GnomeVFSMimeApplication *app);
const char              *gnome_vfs_mime_application_get_icon                      (GnomeVFSMimeApplication *app);
const char		*gnome_vfs_mime_application_get_exec		          (GnomeVFSMimeApplication *app);
const char		*gnome_vfs_mime_application_get_binary_name	          (GnomeVFSMimeApplication *app);
gboolean		 gnome_vfs_mime_application_supports_uris	          (GnomeVFSMimeApplication *app);
gboolean		 gnome_vfs_mime_application_requires_terminal             (GnomeVFSMimeApplication *app);
gboolean		 gnome_vfs_mime_application_supports_startup_notification (GnomeVFSMimeApplication *app);
const char		*gnome_vfs_mime_application_get_startup_wm_class          (GnomeVFSMimeApplication *app);
GnomeVFSMimeApplication *gnome_vfs_mime_application_copy                          (GnomeVFSMimeApplication *application);
gboolean		 gnome_vfs_mime_application_equal		          (GnomeVFSMimeApplication *app_a,
									           GnomeVFSMimeApplication *app_b);
void                     gnome_vfs_mime_application_free                          (GnomeVFSMimeApplication *application);

/* Lists */

void                     gnome_vfs_mime_application_list_free                     (GList                   *list);

G_END_DECLS

#ifndef GNOME_VFS_DISABLE_DEPRECATED
#include <libgnomevfs/gnome-vfs-mime-deprecated.h>
#endif

#endif /* GNOME_VFS_MIME_HANDLERS_H */