I recently started to write a GTK 3 library, but then I realised it will be obsolete in 5 years at most, and I thought GTK 4 isn't that bad, so I decided to port it to GTK 4. Turns out I was wrong.
GNOME's hate for other desktops
GTK 4 clearly is made to reflect GNOME's vision of the future of desktops. Future versions will even require a "platform library", meaning your app will have to be tied to either GNOME, Elementary or whatever. In GNOME's vision, there won't be any generic apps.
GNOME should understand that I don't want to design anything, or make my app feel like an Apple product. Rather, I value more the users' comfort when using the app, which is increased when the app looks like the rest of the system and can be themed to fit the user's preferences or needs.
I've seen suspiciously few apps that use GTK 4 and not libAdwaita (and "adwaita" means "the only one" in Sanskrit, a fitting name for GNOME's design). Also, Cinnamon/Linux Mint, MATE, Xfce and other GTK desktops have not shared plans for a migration when GTK 4 has been out for 4 years already. This is a clear indication they're unsatisfied with GNOME, and GNOME is hostile to them.
The new "menus"
GTK 4 removed the traditional menus, because GNOME doesn't need them, as their apps are too basic (even thought of a division app marketed as a coffee tool)?.
They are now expecting powerful app developers to replace their menus with "menus" implemented with a popover. Some shortcomings of this approach:
The submenu handling
By default, sub"menus" aren't handled like they were before, where hovering its
parent would open the sub"menu", making it easy to browse through the options.
Now, you have to click the parent, which will slide the sub"menu" into view,
replacing the parent, and then, should you want to go back, you have to click
a back arrow. I guess this is probably intended for phones, where it could be
useful indeed as the screen is small you can't hover, but it should have been
a global preference in gsettings
, not something the app developer has to
choose.
Even though you can opt for the classic "menu" behaviour, it's not the default, making apps like Inkscape use a wrong design. Having this at the DE level would make it so much easier for the user, the app developer, and the distributor.
Additionally, there are many other problems.
The menu construction
Now, to construct "menus", you have to use a GMenu
object. Among other things,
this means your "menu" items can no longer be accessed as widgets. Instead, the
"menu" is declaratively constructed from a tree-like structure. This is a good
idea, but it has some flaws; every "menu" item must now be bound to a GAction
,
which must have a string ID. Now instead of just managing your variables, you
have two namespaces to manage. When many items are similar to each other or even
dynamic (think zoom levels, move targets in a file manager, or a list of drives),
it's a pain to have to think of a unique ID for each one.
Why isn't there just a way to bind a "menu" item to a (lambda) function? This would make it so much easier to manage, and more flexible.
No more containers
GTK 4 removed containers and all related APIs with them. Now, everything is inconsistent, and you can't even have a signal when children are added or removed. Instead, if you want some other widget to sync with the children of a container, you have to subclass that container and override its add/remove methods so they emit custom signals. If the specific type isn't under your control, good luck.
Lots of functions, including Gtk::Box::pack_start
, Gtk::Box::pack_end
, and
others, were renamed to append
and prepend
for no reason. Also, you can no
longer get a vector of children from a container, you have to iterate over them
manually.
No Glade
Glade was a great tool and it's a shame to see it go. Cambalache exists, but
it's got its own problems, especially that the conversion from its own file to
a .ui
file is one-way.
The alternative isn't a design tool, I don't want to design anything, but just to declare the layout and the signals, which the GtkBuilder still does well, writing XML by hand is just cumbersome though.
The good parts
I did decide to use GTK 4 because it has many benefits if you don't use it with libAdwaita:
Cell renderers have been deprecated, making everything use the same widget model.
CSS syntax has been updated to newer standards.
Drag and drop now makes much more sense.
No more padding properties which duplicated CSS's job.
Widgets are initially shown; you don't need to manually
show()
them.GtkFileChooserNative
would allow the system's file browser to be used in all apps; more distribution support is needed though.All widgets now receive all events.