*work in progress*
[winnie] / src / window.cc
index af30e3c..880a6ed 100644 (file)
@@ -93,3 +93,23 @@ void Window::set_mouse_motion_callback(MouseMotionFuncType func)
 {
        callbacks.motion = func;
 }
+
+const DisplayFuncType Window::get_display_callback() const
+{
+       return callbacks.display;
+}
+
+const KeyboardFuncType Window::get_keyboard_callback() const
+{
+       return callbacks.keyboard;
+}
+
+const MouseButtonFuncType Window::get_mouse_button_callback() const
+{
+       return callbacks.button;
+}
+
+const MouseMotionFuncType Window::get_mouse_motion_callback() const
+{
+       return callbacks.motion;
+}