aboutsummaryrefslogtreecommitdiff
path: root/window.h
diff options
context:
space:
mode:
authornirav <nirav@teisuu.com>2018-09-05 00:35:24 +0530
committerDandelion <nirav@teisuu.com>2018-09-07 21:16:09 +0530
commit02f7a54e67260ee7995c6cd9bf40ae784b60203d (patch)
treed8bb663f273f4adf1d737ea39f19e5154c9ac07c /window.h
parent28e58ba0dbf30a4a28465f460c67e1c4337bd3a4 (diff)
downloadim-02f7a54e67260ee7995c6cd9bf40ae784b60203d.tar.gz
im-02f7a54e67260ee7995c6cd9bf40ae784b60203d.zip
Added image panning support, refactoring
Diffstat (limited to 'window.h')
-rw-r--r--window.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/window.h b/window.h
new file mode 100644
index 0000000..5d5f272
--- /dev/null
+++ b/window.h
@@ -0,0 +1,11 @@
+#ifndef __WINDOW_H
+#define __WINDOW_H
+
+#include <gtk-3.0/gtk/gtk.h>
+
+void create_main_window(GApplication *app);
+void get_curr_win_size(gint *width, gint *height);
+void scroll_window(gdouble x, gdouble y);
+void quit();
+
+#endif