![]() |
![]() |
![]() |
Conglomerate Programmer's Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#define CONG_SERVICE_IMPORTER (obj) #define CONG_SERVICE_IMPORTER_CLASS (klass) #define IS_CONG_SERVICE_IMPORTER (obj) CongServiceImporter * cong_service_importer_construct (CongServiceImporter *importer
,const gchar *name
,const gchar *description
,const gchar *id
,CongServiceImporterMakeFilterCallback filter_factory_callback
,CongServiceImporterOptionsWidgetCallback options_widget_callback
,CongServiceImporterActionCallback action_callback
,gpointer user_data
); CongServiceImporter * cong_plugin_register_importer (CongPlugin *plugin
,const gchar *name
,const gchar *description
,const gchar *id
,CongServiceImporterMakeFilterCallback filter_factory_callback
,CongServiceImporterOptionsWidgetCallback options_widget_callback
,CongServiceImporterActionCallback action_callback
,gpointer user_data
); GtkFileFilter * cong_importer_make_file_filter (CongServiceImporter *importer
); void cong_importer_invoke (CongServiceImporter *importer
,const gchar *filename
,const gchar *mime_type
,GtkWindow *toplevel_window
); void cong_plugin_for_each_importer (CongPlugin *plugin
,void (*callback) (CongServiceImporter *importer, gpointer user_data)
,gpointer user_data
); GtkFileFilter * cong_service_importer_make_basic_filter (CongServiceImporter *importer
);
#define CONG_SERVICE_IMPORTER(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, CONG_SERVICE_IMPORTER_TYPE, CongServiceImporter)
#define CONG_SERVICE_IMPORTER_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, CONG_SERVICE_IMPORTER_TYPE, CongServiceImporterClass)
#define IS_CONG_SERVICE_IMPORTER(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, CONG_SERVICE_IMPORTER_TYPE)
CongServiceImporter * cong_service_importer_construct (CongServiceImporter *importer
,const gchar *name
,const gchar *description
,const gchar *id
,CongServiceImporterMakeFilterCallback filter_factory_callback
,CongServiceImporterOptionsWidgetCallback options_widget_callback
,CongServiceImporterActionCallback action_callback
,gpointer user_data
);
TODO: Write me
CongServiceImporter * cong_plugin_register_importer (CongPlugin *plugin
,const gchar *name
,const gchar *description
,const gchar *id
,CongServiceImporterMakeFilterCallback filter_factory_callback
,CongServiceImporterOptionsWidgetCallback options_widget_callback
,CongServiceImporterActionCallback action_callback
,gpointer user_data
);
TODO: Write me
GtkFileFilter * cong_importer_make_file_filter (CongServiceImporter *importer
);
Run this importer's callback to create a GtkFileFilter for the File->Importer dialog
|
the importer |
void cong_importer_invoke (CongServiceImporter *importer
,const gchar *filename
,const gchar *mime_type
,GtkWindow *toplevel_window
);
TODO: Write me
void cong_plugin_for_each_importer (CongPlugin *plugin
,void (*callback) (CongServiceImporter *importer, gpointer user_data)
,gpointer user_data
);
TODO: Write me
GtkFileFilter * cong_service_importer_make_basic_filter
(CongServiceImporter *importer
);