| Top |
| #define | CONG_SERVICE_DOCUMENT_FACTORY() |
| #define | CONG_SERVICE_DOCUMENT_FACTORY_CLASS() |
| #define | IS_CONG_SERVICE_DOCUMENT_FACTORY() |
| CongServiceDocumentFactory * | cong_service_document_factory_construct () |
| CongServiceDocumentFactory * | cong_plugin_register_document_factory () |
| void | cong_document_factory_invoke_page_creation_callback () |
| void | cong_document_factory_invoke_action_callback () |
| GdkPixbuf * | cong_document_factory_get_icon () |
| void | cong_plugin_for_each_document_factory () |
| GnomeDruidPageStandard * | cong_new_file_assistant_new_page () |
| void | cong_new_file_assistant_set_page () |
| GtkWindow * | cong_new_file_assistant_get_toplevel () |
| void | cong_new_file_assistant_set_data_for_factory () |
| gpointer | cong_new_file_assistant_get_data_for_factory () |
#define CONG_SERVICE_DOCUMENT_FACTORY(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, CONG_SERVICE_DOCUMENT_FACTORY_TYPE, CongServiceDocumentFactory)
#define CONG_SERVICE_DOCUMENT_FACTORY_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, CONG_SERVICE_DOCUMENT_FACTORY_TYPE, CongServiceDocumentFactoryClass)
#define IS_CONG_SERVICE_DOCUMENT_FACTORY(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, CONG_SERVICE_DOCUMENT_FACTORY_TYPE)
CongServiceDocumentFactory * cong_service_document_factory_construct (CongServiceDocumentFactory *factory,const gchar *name,const gchar *description,const gchar *id,CongServiceDocumentFactoryPageCreationCallback page_creation_callback,CongServiceDocumentFactoryActionCallback action_callback,const gchar *icon,gpointer user_data);
TODO: Write me
CongServiceDocumentFactory * cong_plugin_register_document_factory (CongPlugin *plugin,const gchar *name,const gchar *description,const gchar *id,CongServiceDocumentFactoryPageCreationCallback page_creation_callback,CongServiceDocumentFactoryActionCallback action_callback,const gchar *icon,gpointer user_data);
TODO: Write me
void cong_document_factory_invoke_page_creation_callback (CongServiceDocumentFactory *factory,CongNewFileAssistant *assistant);
TODO: Write me
void cong_document_factory_invoke_action_callback (CongServiceDocumentFactory *factory,CongNewFileAssistant *assistant);
TODO: Write me
GdkPixbuf *
cong_document_factory_get_icon (CongServiceDocumentFactory *factory);
TODO: Write me
void cong_plugin_for_each_document_factory (CongPlugin *plugin,void (*callback) (CongServiceDocumentFactory *factory, gpointer user_data),gpointer user_data);
TODO: Write me
GnomeDruidPageStandard * cong_new_file_assistant_new_page (CongNewFileAssistant *assistant,CongServiceDocumentFactory *document_factory,gboolean is_first_of_factory,gboolean is_last_of_factory);
TODO: Write me
void cong_new_file_assistant_set_page (CongNewFileAssistant *assistant,GnomeDruidPage *page);
TODO: Write me
GtkWindow *
cong_new_file_assistant_get_toplevel (CongNewFileAssistant *assistant);
TODO: Write me
void cong_new_file_assistant_set_data_for_factory (CongNewFileAssistant *assistant,CongServiceDocumentFactory *document_factory,gpointer factory_data,void (*free_func) (gpointer factory_data));
TODO: Write me
gpointer cong_new_file_assistant_get_data_for_factory (CongNewFileAssistant *assistant,CongServiceDocumentFactory *document_factory);
TODO: Write me