aboutsummaryrefslogtreecommitdiff
path: root/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'image.h')
-rw-r--r--image.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/image.h b/image.h
deleted file mode 100644
index dfbd9ff..0000000
--- a/image.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __IMAGE_H
-#define __IMAGE_H
-
-#include <gtk-3.0/gtk/gtk.h>
-
-#define ZOOM_FACTOR 0.1
-
-enum scale_mode {
- fit = 0,
- zoomed = 1,
-} curr_scale_mod;
-
-GtkWidget *image;
-GdkPixbuf *pixbuf;
-GdkPixbuf *curr_pixbuf;
-int pixbuf_width, pixbuf_height, curr_pixbuf_width, curr_pixbuf_height;
-double aspect_ratio;
-double curr_zoom;
-
-GtkWidget *new_image();
-int load_image(char *file_name);
-void fit_image();
-void zoom(int type);
-
-#endif