• bluGill@kbin.social
    link
    fedilink
    arrow-up
    7
    ·
    5 months ago

    The C++ committee is actively looking at how something like rust’s borrow checker could be added to C++. Likely it won’t be a borrow checker, but just enforcement that some code cannot use new/delete and so must use a container (std::unique_ptr, std::vector…) which gets rid of most of the pain. Modern C++ is a much better language than C++98, but I still see a lot of people writing C++98 code.

  • Litanys@lem.cochrun.xyz
    link
    fedilink
    arrow-up
    6
    ·
    5 months ago

    I have been building a Qt/KDE app in rust using that CXX-QT binding. It’s pretty good, but definitely more of a headache to work through the binding than just directly with C++. That being said, I don’t feel like I’m about to shoot myself in the foot with rust. Rust just protects and advises the best paths forward. Once KDAB solidifies the binding and perhaps makes it easy for others to create their own extra bindings, (which they don’t want to maintain every class in QT so this is necessary) it’ll be amazing.

  • ono@lemmy.ca
    link
    fedilink
    arrow-up
    4
    ·
    5 months ago

    Qt is a wonderful GUI toolkit, but new language bindings are notoriously difficult, since it depends not only on C++ (which itself is tricky to bind into other languages) but also the Qt meta-object compiler. Even so, some interesting projects have emerged on that front. For example:

    Verdigris:

    This (header-only) library can be used to create an application using Qt, without the need of the moc (MetaObject Compiler). It uses a different set of macro than Qt and templated constexpr code to generate the QMetaObject at compile-time. It is entirely binary compatible with Qt.

    DQt:

    DQt contains experimental bindings for using a subset of Qt with the D Programming Language. Qt is a library for writing cross-platform graphical user interfaces. Currently bindings exist for the Qt modules core, gui, widgets and webenginewidgets.

    • Herzenschein@pawb.socialM
      link
      fedilink
      arrow-up
      2
      ·
      5 months ago

      without the need of the moc

      I got a bit of a mind freeze reading that sentence since my first thought was “why would someone deliberately give up on Qt’s reflection system” but only then realized they’re still using QMetaObject (the thing that actually enables reflection and signals and slots), just building it with something else.

      • ono@lemmy.ca
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        5 months ago

        Yes, exactly. So a standard compiler can be used, making language bindings much cleaner, while the runtime functionality and library compatibility are preserved.

        And then there’s DQt, which uses DLang’s compile-time function execution instead of the meta-object compiler.

        • CopperSpice@hachyderm.io
          link
          fedilink
          arrow-up
          1
          ·
          5 months ago

          @ami @herzenschein @ono @kde, CopperSpice started as derivative work build includes everything up to Qt 5.6. Our team has redesigned major sections of the code base to provide real utf-8 strings, standardized containers, reduce UB, improved pointers, etc.

          • ono@lemmy.ca
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            5 months ago

            It’s an interesting project, but as a fork, I would be concerned about its compatibility with standard Qt & KDE libraries, widgets, and styles. Can you comment on that?

            Also, what language bindings does it offer?

            • CopperSpice@hachyderm.io
              link
              fedilink
              arrow-up
              1
              ·
              5 months ago

              @ono, Thanks for your question. One of our main goals was to maintain compatibility with Qt user code. We have worked with a significant number of projects who migrated to CS and no one lost functionality. Most code will work without any modifications.

              We have a parser (PepperMill) which you run one time to convert anything in your header files which used moc. For example, we change Q_OBJECT to CS_OBJECT(class_name).

              Here is a link to the macros which are modified.

              https://www.copperspice.com/docs/cs_overview/m_macros_metaobj.html

              • ono@lemmy.ca
                link
                fedilink
                arrow-up
                1
                ·
                5 months ago

                I think you’re talking about migration from Qt to CopperSpipce, though, yes? I’m talking about integration with existing desktop environments. Making use of the themes that are already installed. Communicating with existing libraries via the existing interfaces. Are there any hitches to be aware of on that front?

                And language bindings, for those of us who are trying to get away from writing in C++?

                • CopperSpice@hachyderm.io
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  5 months ago

                  @ono, In terms of using an existing library, if it is a C++ library this works great. If the library was written using Qt it will need to be migrated to CopperSpice. This has already been done for a few libraries.

                  Our CS team has experience with library migration and we are available to help with this process.

    • CopperSpice@hachyderm.io
      link
      fedilink
      arrow-up
      1
      ·
      5 months ago

      @ono @leopold, Verdigris was based on our work with CopperSpice. Qt refused to accept this code and the key developer moved on. If you look at the project it has not been touched in years and may not be supported anymore.

  • arran 🇦🇺@aussie.zone
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    5 months ago

    What about Zig? But I would have to agree that C++ does seem to be holding Qt back from adoption, minus where there are decent bindings.