SwfdecGtkLoader

SwfdecGtkLoader — advanced loader able to load network ressources

Synopsis




                    SwfdecGtkLoader;
SwfdecLoader*       swfdec_gtk_loader_new               (const char *uri);

Object Hierarchy


  GObject
   +----SwfdecLoader
         +----SwfdecGtkLoader

Description

SwfdecGtkLoader is a SwfdecLoader that is intended as an easy way to be access ressources that are not stored in files, such as http. It can however be compiled with varying support for different protocols, so don't rely on support for a particular protocol being available. If you need this, code your own SwfdecLoader subclass.

Details

SwfdecGtkLoader

typedef struct _SwfdecGtkLoader SwfdecGtkLoader;

This is the object used to represent a loader. Since it may use varying backends, it is completely private.


swfdec_gtk_loader_new ()

SwfdecLoader*       swfdec_gtk_loader_new               (const char *uri);

Creates a new loader for the given URI using gnome-vfs (or using the local file backend, if compiled without gnome-vfs support). The uri must be valid UTF-8. If using gnome-vfs, you might want to use gnome_vfs_make_uri_from_shell_arg() or gnome_vfs_make_uri_from_input() on the uri prior to calling this function.

uri : The location of the file to open
Returns : a new SwfdecLoader using gnome-vfs.

See Also

SwfdecLoader