#ifndef RALEIGH_WINDOW_H #define RALEIGH_WINDOW_H namespace raleigh { class window; } #include #include #include #include namespace raleigh { class window { friend void start_runtime(); public: //pass on_close to specify a close handler. if on_close returns false, the window will not be closed. window(widget &root, _pixel_t bg_color=RGB(bf, bf, bf), bool (*on_close)(window &)=0); void notify_needs_paint(widget &from); enum try_actions_return_t {NONE, GOOD, DELETE}; try_actions_return_t try_actions(); void show(); private: _window_handle_t handle; _pixel_t *pixbuf; coord size; widget &root; _pixel_t bg_color; bool needs_repaint; void paint_full(); bool (*on_close)(window &); }; } #endif