aboutsummaryrefslogtreecommitdiff
path: root/src/imagestore.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2013-05-21 13:55:42 +0200
committerThomas White <taw@bitwiz.org.uk>2013-05-21 13:55:42 +0200
commita08d89c334bcdda3fbcecbf2bc739ec8769ef47c (patch)
tree89ef76393b49e1edfe73df57d93d59c6bc02a973 /src/imagestore.h
parent589f48b7667fe3ce12ee79709804a1102a2c9474 (diff)
ImageStore stuff
Diffstat (limited to 'src/imagestore.h')
-rw-r--r--src/imagestore.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/imagestore.h b/src/imagestore.h
new file mode 100644
index 0000000..349a409
--- /dev/null
+++ b/src/imagestore.h
@@ -0,0 +1,51 @@
+/*
+ * imagestore.h
+ *
+ * Copyright © 2013 Thomas White <taw@bitwiz.org.uk>
+ *
+ * This file is part of Colloquium.
+ *
+ * Colloquium 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 3 of the License, 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, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef IMAGESTORE_H
+#define IMAGESTORE_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <gdk-pixbuf/gdk-pixbuf.h>
+
+
+typedef struct _imagestore ImageStore;
+
+enum is_size {
+ ISZ_SLIDESHOW = 0,
+ ISZ_EDITOR = 1,
+ ISZ_THUMBNAIL = 2,
+ NUM_ISZ_SIZES
+};
+
+extern ImageStore *imagestore_new(void);
+
+extern void imagestore_destroy(ImageStore *is);
+
+extern GdkPixbuf *lookup_image(ImageStore *is, const char *filename, int w,
+ enum is_size isz);
+
+extern void show_imagestore(ImageStore *is);
+
+#endif /* IMAGESTORE_H */