diff options
Diffstat (limited to 'c++/window/xcb.cpp')
-rw-r--r-- | c++/window/xcb.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/c++/window/xcb.cpp b/c++/window/xcb.cpp index a9d0715..dac5271 100644 --- a/c++/window/xcb.cpp +++ b/c++/window/xcb.cpp @@ -247,5 +247,22 @@ conveyor<data<schema::WindowEvents>> window<backend::linux_xcb>::on_event() { return std::move(caf.conveyor); } +void window<backend::linux_xcb>::resize_event(uint64_t x, uint64_t y, uint64_t width, uint64_t height){ + /// @todo implement + assert(false); +} +void window<backend::linux_xcb>::mouse_event(int16_t x, int16_t y, uint16_t state, bool pressed){ + /// @todo implement + assert(false); +} +void window<backend::linux_xcb>::mouse_move_event(int16_t x, int16_t y){ + /// @todo implement + assert(false); +} +void window<backend::linux_xcb>::keyboard_event(int16_t x, int16_t y, uint32_t keycode, bool pressed, bool repeat){ + /// @todo implement + assert(false); +} + } } |