Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-09-07 | Clean up error handling | David Robillard | 1 | -1/+1 | |
2019-09-07 | Add clipboard support | David Robillard | 1 | -0/+46 | |
2019-09-03 | Make almost everything return a status | David Robillard | 1 | -3/+6 | |
Prepares the API for proper error handling, even though there isn't any for these functions yet. | |||||
2019-09-03 | Add puglSetWindowTitle() | David Robillard | 1 | -1/+1 | |
2019-09-03 | Rename remaining init functions | David Robillard | 1 | -7/+10 | |
This finishes the removal of the init/set split. While these ones are superficial, the general idea here is to provide general functions that work before or after window creation where possible. This prevents the situation where ever more dynamic counterparts to existing init functions get added over time. | |||||
2019-09-03 | Add puglSetClassName() | David Robillard | 1 | -11/+18 | |
2019-09-03 | Replace puglInitTransientFor() with puglSetTransientFor() | David Robillard | 1 | -6/+0 | |
2019-09-03 | Replace size and aspect ratio init functions with dynamic ones | David Robillard | 1 | -20/+0 | |
2019-09-03 | Move trivial deprecated implementations to header | David Robillard | 1 | -41/+0 | |
Again just makes non-deprecated things easier to read and review, and also cleans up the symbol table. | |||||
2019-09-03 | Add puglGetWorld() | David Robillard | 1 | -0/+6 | |
2019-09-03 | Use consistent naming conventions | David Robillard | 1 | -11/+11 | |
2019-09-03 | Add swap interval hint | David Robillard | 1 | -0/+1 | |
2019-09-03 | Add functions to get and set view size and position | David Robillard | 1 | -9/+13 | |
2019-09-03 | Move puglGetTime() to PuglWorld | David Robillard | 1 | -1/+2 | |
2019-09-03 | Add PuglWorld | David Robillard | 1 | -5/+65 | |
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 | Simplify hints implementation | David Robillard | 1 | -49/+20 | |
2019-08-02 | Replace puglIgnoreKeyRepeat() with a hint | David Robillard | 1 | -2/+5 | |
2019-07-29 | Cleanup: Clean up includes and call IWYU in lint target | David Robillard | 1 | -0/+1 | |
2019-07-29 | Fix potential memory leak on error | David Robillard | 1 | -0/+1 | |
2019-07-29 | Reorganize source to separate private implementation details | David Robillard | 1 | -0/+275 | |
Taking a page from C++ convention, where "detail" is for things that should not be included in user code. |