aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Norman Squash <gordsqsh@protonmail.com>2024-09-10 16:47:03 -0400
committerGordon Norman Squash <gordsqsh@protonmail.com>2024-09-10 16:47:03 -0400
commit9462814423f39ceb5e36e88349c75fa32514dee6 (patch)
tree1cf9c88b8c852a1651fb3e572a2997bde349406f
parentInitial commit (diff)
downloadgtk3-classic-module-9462814423f39ceb5e36e88349c75fa32514dee6.tar.gz
gtk3-classic-module-9462814423f39ceb5e36e88349c75fa32514dee6.tar.bz2
gtk3-classic-module-9462814423f39ceb5e36e88349c75fa32514dee6.zip
Update README
Added GtkNotebook scrolling feature to To-Do list; added screenshot depicting the file chooser typeahead search feature.
-rw-r--r--README.md13
-rw-r--r--screenshots/file-chooser-typeahead.pngbin0 -> 63931 bytes
2 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6f48a17..076f15e 100644
--- a/README.md
+++ b/README.md
@@ -112,6 +112,8 @@ amount of documentation about each option.
the recursive search that GTK 3 normally performs. Press
<kbd>Alt</kbd>-<kbd>S</kbd> to launch the recursive search instead.
+ <img src='screenshots/file-chooser-typeahead.png'/>
+
* The sizes of some widgets (mostly buttons) in the built-in GTK themes
Adwaita and HighContrast have been reduced.
@@ -120,6 +122,17 @@ here.
## To-Do
+* When the user scrolls over the tab bar of a GtkNotebook, switch the current
+ tab.
+
+ My experience with the patch from `gtk3-classic` is that some applications
+ (e.g. [Pluma](https://github.com/mate-desktop/pluma) implement this scrolling
+ behaviour themselves, and thus with the `gtk3-classic` patch applied,
+ scrolling will move over by *two* tab positions at a time. My implementation
+ will record the current tab before passing control over to the default
+ handler of scroll events; only if the current tab hasn't changed after the
+ default handler runs, will the plugin switch tabs.
+
* At least convert headerbars from a virtual titlebar for the window into a
box at the top of the window content area.
diff --git a/screenshots/file-chooser-typeahead.png b/screenshots/file-chooser-typeahead.png
new file mode 100644
index 0000000..50b5d0a
--- /dev/null
+++ b/screenshots/file-chooser-typeahead.png
Binary files differ
bgstack15