Expand description
Application and window handling.
Modules§
Structs§
- Redraw
Requester - Allows requesting window refreshes outside of the event loop.
- Redraw
Status - Tracks when a window should be redrawn. Allows for rendering a frame immediately as well as scheduling a refresh in the future.
- Runtime
- Runtime is designed to consume the main thread. For cross-platform
compatibility, ensure that you call
Runtime::run()from thee main thread. - Single
Window Application - An
Applicationimplementation that begins with a single window. - Window
Builder - A builder for a
Window. - Window
Handle - A handle to an open window.
Enums§
- Close
Response - How to react to a request to close a window
- Error
- All errors that kludgine-app can return.
Traits§
- Application
- A trait that describes the application’s behavior.
- Openable
Window - A window that can be opened.
- Window
- Trait to implement a Window
- Window
Creator - Defines initial window properties.
Type Aliases§
- Result
- Alias for
std::result::Resultwhere the error type isError.