summaryrefslogtreecommitdiffstats
path: root/window.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-02-04 00:25:57 +0100
committerBert <ber.t@gmx.com>2011-02-04 00:25:57 +0100
commit8339bb7ee7fe4a2598a30e3c4d0cef42329ee5aa (patch)
tree49ab9e24f972f916f7e579e9428707ddc5719345 /window.h
parent096c0ed935f7373c15809183ec474f4628d5fa5d (diff)
downloadnsxiv-8339bb7ee7fe4a2598a30e3c4d0cef42329ee5aa.tar.zst
New key mapping: W, resize window to fit image
Diffstat (limited to 'window.h')
-rw-r--r--window.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/window.h b/window.h
index d9413e0..cc2598f 100644
--- a/window.h
+++ b/window.h
@@ -56,14 +56,15 @@ typedef struct win_s {
void win_open(win_t*);
void win_close(win_t*);
-void win_set_title(win_t*, const char*);
-
int win_configure(win_t*, XConfigureEvent*);
+int win_resize(win_t*, unsigned int, unsigned int);
+
void win_toggle_fullscreen(win_t*);
void win_clear(win_t*);
void win_draw(win_t*);
+void win_set_title(win_t*, const char*);
void win_set_cursor(win_t*, win_cur_t);
#endif /* WINDOW_H */