Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2025-02-23 | support mouse interaction with popup windows | Robin Haberkorn | 1 | -10/+31 | |
* Curses allows scrolling with the scroll wheel at least if mouse support is enabled via ED flags. Gtk always supported that. * Allow clicking on popup entries to fully autocomplete them. Since this behavior - just like auto completions - is parser state-dependant, I introduced a new state method (insert_completion_cb). All the implementations are currently in cmdline.c since there is some overlap with the process_edit_cmd_cb implementations. * Fixed pressing undefined function keys while showing the popup. The popup area is no longer redrawn/replaced with the Scintilla view. Instead, continue to show the popup. | |||||
2025-01-13 | updated copyright to 2025 | Robin Haberkorn | 1 | -1/+1 | |
2024-01-21 | updated copyright to 2024 | Robin Haberkorn | 1 | -1/+1 | |
2023-04-05 | updated copyright to 2023 | Robin Haberkorn | 1 | -1/+1 | |
2022-06-21 | updated copyright to 2022 and updated TODO | Robin Haberkorn | 1 | -1/+1 | |
2021-06-08 | get rid of the GObject Builder (GOB2): converted teco-gtk-info-popup.gob and ↵ | Robin Haberkorn | 1 | -0/+457 | |
teco-gtk-label.gob to plain C * Using modern GObject idioms and macros greatly reduces the necessary boilerplate code. * The plain C versions of our GObject classes are now "final" (cannot be derived) This means we can hide the instance structures from the headers and avoid using explicit private fields. * Avoids some deprecation warnings when building the Gtk UI. * GOB2 is apparently no longer maintained, so this seems like a good idea in the long run. * The most important reason however is that there is no precompiled GOB2 for Windows which prevents compilation on native Windows hosts, eg. during nightly builds. This is even more important as Gtk+3 is distributed on Windows practically exclusively via MSYS. (ArchLinux contains MinGW gtk3 packages as well, so cross-compiling from ArchLinux would have been an alternative.) |