Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/backend/ev-document-factory.h
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-07-05 15:31:17 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-07-05 15:31:17 (GMT)
commit4684716c489657edf098565eb54bdf86bad1b45c (patch)
tree8e415778063a717a11dc09fa61042a603ff34b37 /backend/ev-document-factory.h
parent26a8622fe284cd0e4531caa56f918d7cfaf8037b (diff)
Rework document types managing to avoid code duplication and actually
2005-07-05 Marco Pesenti Gritti <mpg@redhat.com> * backend/Makefile.am: * backend/ev-document-factory.c: (mime_type_supported_by_gdk_pixbuf), (ev_document_type_get_from_mime), (ev_document_factory_get_document), (ev_document_factory_get_backend), (ev_document_factory_get_mime_types), (ev_document_factory_get_all_mime_types): * backend/ev-document-factory.h: * shell/Makefile.am: * shell/ev-document-types.c: (get_document_from_uri), (ev_document_types_get_document), (file_filter_add_mime_list_and_free), (ev_document_types_add_filters): * shell/ev-document-types.h: * shell/ev-job-xfer.c: (ev_job_xfer_run): * shell/ev-properties-dialog.c: (ev_properties_dialog_set_document): * shell/ev-window.c: (ev_window_cmd_file_open), (ev_window_cmd_save_as): * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get): Rework document types managing to avoid code duplication and actually abstract from backend implementations. Also provide a minimal factory api that can be used by thumbnailer/properties.
Diffstat (limited to 'backend/ev-document-factory.h')
-rw-r--r--backend/ev-document-factory.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/backend/ev-document-factory.h b/backend/ev-document-factory.h
new file mode 100644
index 0000000..56be46d
--- /dev/null
+++ b/backend/ev-document-factory.h
@@ -0,0 +1,44 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
+/*
+ * Copyright (C) 2005, Red Hat, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#ifndef EV_DOCUMENT_FACTORY_H
+#define EV_DOCUMENT_FACTORY_H
+
+#include "ev-document.h"
+
+G_BEGIN_DECLS
+
+typedef enum {
+ EV_BACKEND_PDF,
+ EV_BACKEND_PS,
+ EV_BACKEND_TIFF,
+ EV_BACKEND_PIXBUF,
+ EV_BACKEND_DJVU,
+ EV_BACKEND_DVI
+} EvBackend;
+
+EvDocument *ev_document_factory_get_document (const char *mime_type);
+EvBackend ev_document_factory_get_backend (EvDocument *document);
+GList *ev_document_factory_get_mime_types (EvBackend backend);
+GList *ev_document_factory_get_all_mime_types (void);
+
+G_END_DECLS
+
+#endif