Accéder au contenu principal

FOSDEM and GTK Hackfest 2019

FOSDEM 2019

This year was my second time at FOSDEM and it was both exhausting and a lot of fun!

I went from Montpellier to Brussels in TGV, via the direct line connecting the two cities. I love high speed trains, they are comfy, you can bring lots of baggage, you are not probed, you can see the countryside, they typically connect the center of cities, and they even have Wi-Fi and power plugs! 🤯 Thanks to that, I have been able to bring the booth box that was sitting at my house since Capitole du Libre 2018 for free!

In a tramway in Montpellier, with the GNOME booth box, Librem 5 devkits, and my stuff.

I spent the vast majority of my time helping on the GNOME booth, I helped a tiny bit on the GNOME newcomers workshop where I add the chance to meet Jorge Creixell, which resulted into a merge request, and I played a bit with a Librem 5 devkit. Oh, and in two FOSDEMs I managed to attend zero talks.

The most important thing for me has been hanging out with colleagues and friends, some of which I didn't see since quite some time! I missed a lot of others, but it wouldn't be FOSDEM without regrets of non-met friends.

Playing with a Librem 5 devkit on the GNOME booth, testing phosh and some GNOME apps. Photo: courtesy of Tobias Bernard.

GTK Hackfest 2019

I am glad I attended this year's GTK hackfest! I learned a lot about GTK 4 (now +-free), its exciting new features and the remaining challenges. I will let the GTK devs explain all of that to you in their articles, as they will do it way better than me. 🙂

On the second day, we talked about adaptive patterns, what they are and what should be done for GTK 4 to support them natively. To start, we took a look at libhandy, what it provides, which widgets should be merged "as-is" (mostly the future GtkLeaflet), which widgets implement workarounds whose features should be enabled directly by GTK 4 (HdyColumn, HdyTitleBar, …) and what makes simply no sense to merge, like the phone specific widgets (HdyDialer, …). I am glad we were on the same page and we agreed on everything.

Attending this hackfest definitely was fun and enriching! 😀

Thanks GNOME for allowing me to attend these events!

Commentaires

Enregistrer un commentaire

Posts les plus consultés de ce blog

Moving the Blog

I am moving this blog to greener lands: https://fediverse.blog/~/AdrienPlazas . The existing articles will remain here on Blogger, and new articles will land on the fediverse.blog Plume instance.

libhandy 0.0.10

libhandy 0.0.10 just got released, and it comes with a few new adaptive widgets for your GTK app. You can get this new version here . The View Switcher GNOME applications typically use a GtkStackSwitcher to switch between their views. This design works fine on a desktop, but not so well on really narrow devices like mobile phones, so Tobias Bernard designed a more modern and adaptive replacement — now available in libhandy as the HdyViewSwitcher . In many ways, the HdyViewSwitcher functions very similarly to a GtkStackSwitcher : you assign it a GtkStack containing your application's pages, and it will display a row of side-by-side, homogeneously-sized buttons, each representing a page. It differs in that it can display both the title and the icon of your pages, and that the layout of the buttons automatically adapts to a narrower version, depending on the available width. We have also added a view switcher bar, designed to be used at he bottom of the window: HdyView

My Name is Handy, Lib Handy

Libhandy 0.0.7 just got released! I didn't blog about this mobile and adaptive oriented GTK widget library since the release of its 0.0.4 version three months ago , so let's catch up on what has been added since. List Rows A common pattern in GNOME applications is lists , which are typically implemented via GtkListBox . More specific patterns arose, where rows have a title at the start, an optional subtitle below it, actions at the end and an icon or some other widget like a radio button as a prefix. These rows can also be expanded to reveal nested rows or anything else that fits the need. So far every application using these patterns implemented the rows by hand for each and every row. It made using these a bit cumbersome and it led to inconsistencies in sizing, even inside a single application. To make these patterns easier to use, we implemented HdyActionRow , HdyComboRow and HdyExpanderRow . HdyActionRow The action row is a simple and flexible row, it lets