| Conglomerate Programmer's Reference Manual | ||||
|---|---|---|---|---|
| Top | Description | ||||
#define CONG_SERVICE_PRINT_METHOD (obj) #define CONG_SERVICE_PRINT_METHOD_CLASS (klass) #define IS_CONG_SERVICE_PRINT_METHOD (obj) CongServicePrintMethod * cong_service_print_method_construct (CongServicePrintMethod *print_method,const gchar *name,const gchar *description,const gchar *service_id,CongServicePrintMethodDocumentFilter doc_filter,CongServicePrintMethodActionCallback action_callback,gpointer user_data); CongServicePrintMethod * cong_plugin_register_print_method (CongPlugin *plugin,const gchar *name,const gchar *description,const gchar *id,CongServicePrintMethodDocumentFilter doc_filter,CongServicePrintMethodActionCallback action_callback,gpointer user_data); gboolean cong_print_method_supports_document (CongServicePrintMethod *print_method,CongDocument *doc); void cong_print_method_invoke (CongServicePrintMethod *print_method,CongDocument *doc,GnomePrintContext *gpc,GtkWindow *toplevel_window); void cong_plugin_for_each_print_method (CongPlugin *plugin,void (*callback) (CongServicePrintMethod *print_method, gpointer user_data),gpointer user_data);
#define CONG_SERVICE_PRINT_METHOD(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, CONG_SERVICE_PRINT_METHOD_TYPE, CongServicePrintMethod)
#define CONG_SERVICE_PRINT_METHOD_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, CONG_SERVICE_PRINT_METHOD_TYPE, CongServicePrintMethodClass)
#define IS_CONG_SERVICE_PRINT_METHOD(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, CONG_SERVICE_PRINT_METHOD_TYPE)
CongServicePrintMethod * cong_service_print_method_construct (CongServicePrintMethod *print_method,const gchar *name,const gchar *description,const gchar *service_id,CongServicePrintMethodDocumentFilter doc_filter,CongServicePrintMethodActionCallback action_callback,gpointer user_data);
TODO: Write me
CongServicePrintMethod * cong_plugin_register_print_method (CongPlugin *plugin,const gchar *name,const gchar *description,const gchar *id,CongServicePrintMethodDocumentFilter doc_filter,CongServicePrintMethodActionCallback action_callback,gpointer user_data);
TODO: Write me
gboolean cong_print_method_supports_document (CongServicePrintMethod *print_method,CongDocument *doc);
TODO: Write me
void cong_print_method_invoke (CongServicePrintMethod *print_method,CongDocument *doc,GnomePrintContext *gpc,GtkWindow *toplevel_window);
TODO: Write me
void cong_plugin_for_each_print_method (CongPlugin *plugin,void (*callback) (CongServicePrintMethod *print_method, gpointer user_data),gpointer user_data);
TODO: Write me