JULEA
|
Data Structures | |
struct | JURI |
Macros | |
#define | J_URI_ERROR j_uri_error_quark() |
Typedefs | |
typedef struct JURI | JURI |
Functions | |
G_END_DECLS G_BEGIN_DECLS GQuark | j_uri_error_quark (void) |
JURI * | j_uri_new (gchar const *uri_) |
void | j_uri_free (JURI *uri) |
gchar const * | j_uri_get_collection_name (JURI *uri) |
gchar const * | j_uri_get_item_name (JURI *uri) |
gboolean | j_uri_get (JURI *uri, GError **error) |
gboolean | j_uri_create (JURI *uri, gboolean with_parents, GError **error) |
gboolean | j_uri_delete (JURI *uri, GError **error) |
JCollection * | j_uri_get_collection (JURI *uri) |
JItem * | j_uri_get_item (JURI *uri) |
#define J_URI_ERROR j_uri_error_quark() |
A URI error domain.
enum JURIError |
gboolean j_uri_create | ( | JURI * | uri, |
gboolean | with_parents, | ||
GError ** | error | ||
) |
gboolean j_uri_delete | ( | JURI * | uri, |
GError ** | error | ||
) |
Deletes the collection and item.
uri | A URI. |
error | An error. |
GQuark j_uri_error_quark | ( | void | ) |
Returns the URI error quark.
void j_uri_free | ( | JURI * | uri | ) |
gboolean j_uri_get | ( | JURI * | uri, |
GError ** | error | ||
) |
Gets the collection and item.
uri | A URI. |
error | An error. |
JCollection * j_uri_get_collection | ( | JURI * | uri | ) |
Returns the collection.
uri | A URI. |
gchar const * j_uri_get_collection_name | ( | JURI * | uri | ) |
Returns the collection name.
uri | A URI. |
Returns the item.
uri | A URI. |
gchar const * j_uri_get_item_name | ( | JURI * | uri | ) |
Returns the item name.
uri | A URI. |
JURI * j_uri_new | ( | gchar const * | uri_ | ) |
Creates a new URI.
uri_ | A URI string. |