document-interface.h revision 69879b63ae4fb3da90263808c133a39ed2b770f8
/*
* This is where the implementation of the DBus based document API lives.
* All the methods in here (except in the helper section) are
* designed to be called remotly via DBus. application-interface.cpp
* has the methods used to connect to the bus and get a document instance.
*
* Documentation for these methods is in document-interface.xml
* which is the "gold standard" as to how the interface should work.
*
* Authors:
* Soren Berg <Glimmer07@gmail.com>
*
* Copyright (C) 2009 Soren Berg
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib.h>
#include <dbus/dbus-glib.h>
#include <dbus/dbus-glib-bindings.h>
#include <dbus/dbus-glib-lowlevel.h>
#include "desktop.h"
#define DBUS_DOCUMENT_INTERFACE_PATH "/org/inkscape/document"
#define TYPE_DOCUMENT_INTERFACE (document_interface_get_type ())
#define DOCUMENT_INTERFACE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), TYPE_DOCUMENT_INTERFACE, DocumentInterface))
#define DOCUMENT_INTERFACE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_DOCUMENT_INTERFACE, DocumentInterfaceClass))
#define IS_DOCUMENT_INTERFACE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), TYPE_DOCUMENT_INTERFACE))
#define IS_DOCUMENT_INTERFACE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_DOCUMENT_INTERFACE))
#define DOCUMENT_INTERFACE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_DOCUMENT_INTERFACE, DocumentInterfaceClass))
typedef struct _DocumentInterface DocumentInterface;
typedef struct _DocumentInterfaceClass DocumentInterfaceClass;
struct _DocumentInterface {
};
struct _DocumentInterfaceClass {
};
typedef enum
{
#define INKSCAPE_ERROR (inkscape_error_quark ())
#define INKSCAPE_TYPE_ERROR (inkscape_error_get_type ())
GQuark inkscape_error_quark (void);
GType inkscape_error_get_type (void);
struct DBUSPoint {
int x;
int y;
};
/****************************************************************************
MISC FUNCTIONS
****************************************************************************/
/****************************************************************************
CREATION FUNCTIONS
****************************************************************************/
gchar *
/****************************************************************************
ENVIORNMENT FUNCTIONS
****************************************************************************/
gchar *
/****************************************************************************
OBJECT FUNCTIONS
****************************************************************************/
gchar *
gchar *
gchar *
GArray *
/****************************************************************************
FILE I/O FUNCTIONS
****************************************************************************/
/*
gboolean
document_interface_print_to_file (DocumentInterface *object, GError **error);
*/
/****************************************************************************
PROGRAM CONTROL FUNCTIONS
****************************************************************************/
/****************************************************************************
UPDATE FUNCTIONS
****************************************************************************/
void
void
void
/****************************************************************************
SELECTION FUNCTIONS
****************************************************************************/
GArray *
gchar *
/****************************************************************************
LAYER FUNCTIONS
****************************************************************************/
gchar *
gchar **
DocumentInterface *document_interface_new (void);
GType document_interface_get_type (void);
#endif // INKSCAPE_EXTENSION_DOCUMENT_INTERFACE_H_