summaryrefslogtreecommitdiffstats
path: root/window.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-20 21:44:34 +0100
committerBert <ber.t@gmx.com>2011-01-20 21:44:34 +0100
commit029e1208b91250f4bd91ecc2015d051294fb9d3f (patch)
treec746d1a81e7babb17283d2326bdd2dea310eb4ed /window.h
parent08018427c61435de9cd8dca1d1cc9bb69ca2fd74 (diff)
downloadnsxiv-029e1208b91250f4bd91ecc2015d051294fb9d3f.tar.zst
No more expose handling
Diffstat (limited to 'window.h')
-rw-r--r--window.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/window.h b/window.h
index f090d26..8728bb9 100644
--- a/window.h
+++ b/window.h
@@ -33,6 +33,8 @@ typedef struct win_env_s {
typedef struct win_s {
Window xwin;
win_env_t env;
+ Pixmap pm;
+ GC bgc;
int w;
int h;
@@ -49,6 +51,8 @@ void win_close(win_t*);
void win_set_title(win_t*, const char*);
int win_configure(win_t*, XConfigureEvent*);
+
void win_clear(win_t*);
+void win_draw(win_t*);
#endif /* WINDOW_H */