Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-10-21 | Move includes to a separate directory | David Robillard | 1 | -118/+0 | |
This is more conventional and directories named "include" are specially understood by some tooling like clang-tidy. | |||||
2020-07-05 | Improve struct packing | David Robillard | 1 | -1/+1 | |
Unfortunately there is no warning like Wpadded but only for internal padding, so that can't be turned on, but if there was, after this commit the build would be clean with it. Maybe some day... | |||||
2020-05-16 | Add default and maximum size | David Robillard | 1 | -0/+4 | |
2020-05-16 | Use line comments where appropriate | David Robillard | 1 | -16/+16 | |
2020-05-16 | Use email address in copyright headers | David Robillard | 1 | -1/+1 | |
Not really sure why I used a web link here (maybe because it's more stable), but this is more conventional. | |||||
2020-05-16 | Fix file documentation | David Robillard | 1 | -2/+3 | |
2020-04-01 | Consistently use "view" terminology in API | David Robillard | 1 | -2/+2 | |
The sloppy use of "window" caused quite a bit of confusion, since views only correspond to top-level windows in some cases, and on MacOS, a non-top-level view is not a "window" at all. | |||||
2020-03-16 | Separate cached configuration from frame | David Robillard | 1 | -1/+1 | |
This was a bad idea and a never-ending source of problems. The frame represents what the "current" frame is from a Pugl perspective, but with the asynchronicity of X11 and other issues this cant be used to filter configure events. Instead, simply cache the last configure event that was sent and compare with that. | |||||
2020-03-15 | Remove backend resize method | David Robillard | 1 | -3/+0 | |
2020-03-14 | Add logging API | David Robillard | 1 | -0/+2 | |
2020-03-09 | X11: Only send configure events if something has changed | David Robillard | 1 | -0/+1 | |
2020-03-09 | Fix build with unknown C compilers | David Robillard | 1 | -2/+2 | |
2020-03-08 | Add a user data handle to the world | David Robillard | 1 | -0/+1 | |
2020-02-18 | Pass expose event to backend enter and leave functions | David Robillard | 1 | -4/+4 | |
This is needed for clipping. Unfortunately, the puglEnterContext() and puglLeaveContext() API was not suitable for this, but this shouldn't matter in user code because it is only used for setup, and is slated for removal anyway. Instead, just call the backend functions directly in the implementation. | |||||
2019-11-03 | Remove redisplay flag and add puglPostRedisplayRect() | David Robillard | 1 | -1/+0 | |
2019-09-07 | Clean up error handling | David Robillard | 1 | -6/+6 | |
2019-09-07 | Add clipboard support | David Robillard | 1 | -0/+7 | |
2019-09-03 | Add puglSetWindowTitle() | David Robillard | 1 | -0/+1 | |
2019-09-03 | Add puglSetClassName() | David Robillard | 1 | -1/+1 | |
2019-09-03 | Use consistent naming conventions | David Robillard | 1 | -7/+7 | |
2019-09-03 | Windows: Improve puglPostRedisplay() performance | David Robillard | 1 | -0/+1 | |
2019-09-03 | Add functions to get and set view size and position | David Robillard | 1 | -2/+1 | |
2019-09-03 | Move puglGetTime() to PuglWorld | David Robillard | 1 | -1/+1 | |
2019-09-03 | Add PuglWorld | David Robillard | 1 | -1/+13 | |
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 | -15/+1 | |
2019-08-02 | Replace puglIgnoreKeyRepeat() with a hint | David Robillard | 1 | -1/+1 | |
2019-07-29 | Reorganize source to separate private implementation details | David Robillard | 1 | -0/+107 | |
Taking a page from C++ convention, where "detail" is for things that should not be included in user code. |