Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-04-26 | Implement resize for X11 in Qt5 | David Robillard | 1 | -0/+13 | |
2020-04-26 | Implement size hints for X11 in Qt5 | David Robillard | 1 | -9/+67 | |
2020-04-26 | Clean up includes | David Robillard | 1 | -3/+2 | |
2020-04-26 | Add missing override declarations | David Robillard | 1 | -3/+6 | |
2020-04-26 | Use initial size as fallback base size for X11 in Gtk3 | David Robillard | 1 | -3/+17 | |
2020-04-26 | Fix size issues for X11 in Gtk2 | David Robillard | 1 | -1/+46 | |
2020-04-10 | Remove cruft | Robin Gareus | 1 | -19/+0 | |
Minimum size is already handled by suil_x11_on_size_request(), so object properties are irrelevant. | |||||
2020-04-10 | Ensure that XSizeHints are set and updated | Robin Gareus | 1 | -24/+42 | |
This fixes the following regression introduced in db07a21d484: * The window may not have been realized when wrapper_wrap is called, in which case XSizeHints were not set. * Changes to XSizeHints were never queried, so the original mininum size was enforced even when the window called ui:resize(). | |||||
2020-02-12 | Fix drag and drop for X11 in Gtk | Robin Gareus | 1 | -0/+39 | |
"XDND drag-and-drop does not work with reparented external windows, since messages are exchanged with the toplevel window only" <https://specifications.freedesktop.org/xembed-spec/xembed-spec-latest.html#idm46049203496608> To address this, the XDND specification allows events to be proxied to child windows: https://www.freedesktop.org/wiki/Specifications/XDND/ This commit does so in suil so that drag and drop works with embedded plugin UIs. | |||||
2020-02-12 | Avoid passing NULL to XFree() | Robin Gareus | 1 | -1/+3 | |
Apparently this is not supported by some implementation or another, although my man page says it's fine. | |||||
2020-01-06 | Fix compilation on MacOS older than 10.12 | David Robillard | 1 | -0/+4 | |
2019-10-17 | Fix Windows warning | David Robillard | 1 | -1/+1 | |
2019-06-06 | Add support for Qt5 in Gtk3 | David Robillard | 2 | -1/+13 | |
2019-04-14 | Use modern LV2 includes | David Robillard | 6 | -11/+11 | |
2019-02-19 | Add support for min_size and base_size in XSizeHints | brummer10 | 2 | -23/+169 | |
This allows a plugin UI to be shown with a default size but be resizable to a smaller size, within limits, afterwards. | |||||
2018-12-19 | Fix qt5_in_gtk2 wrapper | rncbc | 1 | -11/+3 | |
Removes the built-in QApplication instantiation and postpones the deletion of the embedded QWidget. This makes UIs work more nicely in hosts like Ardour. | |||||
2018-09-16 | Remove pointless const qualifiers | David Robillard | 2 | -2/+2 | |
2018-07-09 | Fix Qt5 in Gtk2 wrapper | rncbc | 1 | -15/+94 | |
- Fixes initial size and resizing in some cases - Adds LV2_UI__resize and LV2_UI__idleInterface features - Adds LV2_UI__updateRate option | |||||
2018-01-04 | Fix Windows build | David Robillard | 1 | -1/+1 | |
2017-12-16 | Fix unused function warning for non-X11 builds | David Robillard | 1 | -0/+2 | |
2017-12-16 | Fix Mac deprecation warnings | David Robillard | 1 | -11/+24 | |
2017-12-16 | Add support for Cocoa in Qt5 | David Robillard | 2 | -1/+175 | |
2017-12-16 | Clean up feature code in wrappers | David Robillard | 6 | -36/+18 | |
2017-10-04 | Remove X11 dependency for gtk2 in qt5 | David Robillard | 1 | -1/+0 | |
2017-10-03 | Clean up various minor code style issues | David Robillard | 5 | -20/+20 | |
2017-08-06 | Fix implicit cast warnings with clang | David Robillard | 2 | -2/+2 | |
2017-08-06 | Fix preprocessor if with potentially undefined symbol | David Robillard | 1 | -1/+1 | |
2017-05-08 | Fix potential memory leaks | David Robillard | 2 | -0/+2 | |
2017-05-07 | Fix potential use of uninitialized memory | David Robillard | 2 | -0/+2 | |
2017-05-07 | Fix memory leaks | David Robillard | 2 | -0/+2 | |
2017-03-18 | Add suil_init() | David Robillard | 6 | -33/+111 | |
This allows the actual host argc and argv to be passed to QApplication if it is created by Suil (for Qt in non-Qt cases), and initializes X11 threads to fix Qt5 in Gtk2. | |||||
2017-03-17 | Remove X11 hackery and use Qt5 facilities to embed Gtk | David Robillard | 1 | -53/+5 | |
2017-02-26 | Add missing file | David Robillard | 1 | -0/+207 | |
2017-02-26 | Add preliminary Qt5 in Gtk2 support | David Robillard | 2 | -11/+15 | |
This crashes virtually all of the time in straight Gtk hosts unless XInitThreads is called before any Gtk functions. A portable solution to this is needed, but I have no idea what that might be. | |||||
2016-12-11 | Fix missing KeyRelease events for X11 in Gtk | Hanspeter Portner | 2 | -8/+10 | |
2016-12-10 | Add support for X11 in Gtk3 | David Robillard | 2 | -0/+410 | |
2016-09-18 | Update copyright dates | David Robillard | 1 | -1/+1 | |
2016-07-31 | Fix compilation with C++ | David Robillard | 1 | -2/+2 | |
2015-11-28 | Bubble X11 key events up to Gtk parent | David Robillard | 1 | -5/+21 | |
2015-11-28 | Fix initial size of resizable X11 UIs in Gtk | David Robillard | 1 | -0/+12 | |
2015-11-28 | Center X11 UIs in Gtk | David Robillard | 1 | -1/+36 | |
2015-10-04 | Delete parent widget | David Robillard | 1 | -0/+4 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5739 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-17 | Fix issues with embedding in Qt. | David Robillard | 2 | -8/+17 | |
Patch from Rui Nuno Capela. git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5732 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-13 | Fix Qt5 wrapping. | David Robillard | 4 | -30/+15 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5730 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-13 | Update copyright dates. | David Robillard | 8 | -8/+8 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5728 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-13 | Require LV2 1.6.0. | David Robillard | 5 | -76/+20 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5727 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-12 | Add Gtk2 and X11 in Qt5 wrappers. | David Robillard | 5 | -10/+358 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5725 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-12 | Gracefully handle failure to open wrapper. | David Robillard | 1 | -6/+9 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5724 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-11 | Zero-initialize wrapper structs. | David Robillard | 6 | -16/+10 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5723 a436a847-0d15-0410-975c-d299462d15a1 | |||||
2015-09-10 | Fix whitespace. | David Robillard | 1 | -1/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@5720 a436a847-0d15-0410-975c-d299462d15a1 |