aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-import.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-import.c')
-rw-r--r--e-util/e-import.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/e-util/e-import.c b/e-util/e-import.c
index 4475344018..14485633c1 100644
--- a/e-util/e-import.c
+++ b/e-util/e-import.c
@@ -216,6 +216,32 @@ e_import_get_widget (EImport *import,
}
/**
+ * e_import_get_preview_widget:
+ * @import: an #EImport
+ * @target: Target of interest
+ * @im: Importer to get a preview widget of
+ *
+ * Gets a widget that the importer uses to preview data to be
+ * imported. This widget should be packed into a container
+ * widget. It should not be shown_all.
+ *
+ * Return value: NULL if the importer doesn't support preview.
+ **/
+GtkWidget *
+e_import_get_preview_widget (EImport *import,
+ EImportTarget *target,
+ EImportImporter *im)
+{
+ g_return_val_if_fail (im != NULL, NULL);
+ g_return_val_if_fail (target != NULL, NULL);
+
+ if (!im->get_preview)
+ return NULL;
+
+ return im->get_preview (import, target, im);
+}
+
+/**
* e_import_complete:
* @import: an #EImport
* @target: Target just completed (unused currently)