Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-09-03 | Move puglGetTime() to PuglWorld | David Robillard | 1 | -3/+3 | |
2019-09-03 | Add PuglWorld | David Robillard | 1 | -8/+22 | |
The old API was broken for programs that manage multiple views, since it was impossible to wait for events on any view. There are also several functions in the API which are not actually associated with views at all, so those can now be moved to the more appropriate PuglWorld to make this more clear. The old puglInit() and puglDestroy() functions are preserved for compatibility, but marked as deprecated. | |||||
2019-09-03 | Add puglHasFocus() | David Robillard | 1 | -1/+7 | |
2019-09-03 | Windows: Fix class registration for multiple views | David Robillard | 1 | -14/+24 | |
2019-09-03 | Simplify hints implementation | David Robillard | 1 | -1/+1 | |
2019-08-02 | Fix unnecessary conversions | David Robillard | 1 | -1/+1 | |
2019-08-02 | Replace puglIgnoreKeyRepeat() with a hint | David Robillard | 1 | -1/+1 | |
2019-07-31 | Windows: Support UTF8 in window titles | David Robillard | 1 | -1/+19 | |
2019-07-29 | Cleanup: Clean up includes and call IWYU in lint target | David Robillard | 1 | -0/+2 | |
2019-07-29 | Fix various clang-tidy warnings | David Robillard | 1 | -13/+13 | |
2019-07-29 | Reorganize source to separate private implementation details | David Robillard | 1 | -0/+677 | |
Taking a page from C++ convention, where "detail" is for things that should not be included in user code. |