|
Ritchie's Abstractions 0.2
Platform abstractions that make Toolbox work
|
Classes | |
| struct | DisplayMode |
| Structure representing a screen display mode. More... | |
| interface | IDisplay |
| Interface representing a physical screen. More... | |
| interface | IWindow |
| Interface representing a platform window. More... | |
Enumerations | |
| enum | WindowType { Window , Tool , ToolTip , Modal , Menu } |
| Enum defining various types of a window. More... | |
Functions | |
| delegate void | WindowEvent< in T > (IWindow window, T eventArgs) |
| A delegate type representing a function that handles window events of a given type. | |
| delegate void | WindowEvent (IWindow window) |
| A delegate type representing generic window events that don't contain additional information. | |
| enum WindowType |
Enum defining various types of a window.
| delegate void WindowEvent< in T > | ( | IWindow | window, |
| T | eventArgs ) |
A delegate type representing a function that handles window events of a given type.
| T | The type of event to be handled. |