I always see new GTK apps popup on Flathub. I dont really care and think GTK looks fancy, although CSD suck a bit and they waste space and often functionality.

But they work, are solid, and do what they should.

Qt on the other hand may seem more like a complex job to code with. I dont actually think so, but I heard especially writing rust with GTK is way better than with Qt.

I like KDE a lot, and even though I am excited for Cosmic I think Qt is the better toolkit for many things and a lot of time. But Dolphin seems to suffer from memory safety issues all the time, as well as other projects.

Do you have experience in rust, using GTK or Qt? How do they compare?

  • @teolan@lemmy.world
    link
    fedilink
    377 months ago

    GTK is in bare C, which is rather easy to interop with Rust. Even if using GLib from Rust is a pain, GTK can and does have decent Rust bindings.

    QT on the other hand is C++ with object oriented stuff, and therefore cannot have easy bindings to Rust.

    • @Pantherina@feddit.deOP
      link
      fedilink
      17 months ago

      Could you explain C bindings in Rust to a nonprogrammer? Does this mean GTK can’t use Rust natively, at least for the interface?

      • @ani@endlesstalk.org
        link
        fedilink
        57 months ago

        Bindings are like translations of the relevant C code to Rust so they can use Rust to talk (interop) with the C library instead of having to use C.

        Does this mean GTK can’t use Rust natively, at least for the interface?

        I never used GTK, but I suppose from this conversation that yes.