aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/native/WindowEvent.h
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2009-09-12 21:11:22 -0700
committerSven Gothel <[email protected]>2009-09-12 21:11:22 -0700
commit3ddb06e50c0f841f2f66fb93e1ec41cddd50895e (patch)
treeaf09f1a91cef3e4416bfe8c96c35dbddddabc05f /src/newt/native/WindowEvent.h
parent4fe426caf55889d17b387efa06551c1af8f0dabe (diff)
Newt: native window parenting MacOSX: OK (but parent clipping is missing) ; X11: windowResize event handled
Diffstat (limited to 'src/newt/native/WindowEvent.h')
-rw-r--r--src/newt/native/WindowEvent.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/newt/native/WindowEvent.h b/src/newt/native/WindowEvent.h
new file mode 100644
index 000000000..6274f9443
--- /dev/null
+++ b/src/newt/native/WindowEvent.h
@@ -0,0 +1,12 @@
+
+#ifndef _WINDOW_EVENT_H_
+#define _WINDOW_EVENT_H_
+
+#define EVENT_WINDOW_RESIZED = 100;
+#define EVENT_WINDOW_MOVED = 101;
+#define EVENT_WINDOW_DESTROY_NOTIFY = 102;
+#define EVENT_WINDOW_GAINED_FOCUS = 103;
+#define EVENT_WINDOW_LOST_FOCUS = 104;
+#define EVENT_WINDOW_REPAINT = 105; // TODO
+
+#endif