Skip to content

The Lounge

Chilling out? Want to discuss Abraham Lincoln? Well, in the Lounge you can discuss literally anything.
1.0k Topics 8.8k Posts
  • Excited to Join This Community!

    Moved Unsolved
    1
    0 Votes
    1 Posts
    152 Views
    No one has replied
  • Can't reply to a post because my comment gets flagged as spam

    Unsolved
    18
    5 Votes
    18 Posts
    5k Views
    D
    It's hilarious, when you go to Akismet.com their front page is flaunting that their spam filter is accurate 99.99% of the time. Wow, we must all be the 0.01%
  • I let an AI design my GUI with Qt Designer… here's what happened

    Unsolved
    11
    1 Votes
    11 Posts
    2k Views
    mzimmersM
    @SimonSchroeder said in I let an AI design my GUI with Qt Designer… here's what happened: Relying on AI too much will actually make you dumb I don't need AI's help for that.
  • Questions about CRA regulation(Cyber Resillience Act)

    Unsolved
    11
    0 Votes
    11 Posts
    1k Views
    S
    With everything I've read, I'll try to respond to your questions more explicitly. @Cfan said in Questions about CRA regulation(Cyber Resillience Act): If I create an LGPL licensed app and sell it in EU(online sell), does CRA regulation apply to my situation too? The only excemption from the CRA is non-commercial open source software. So, if you want to sell in the EU, your software will fall under the CRA. I am not sure what you mean with an "app under the LPGL". Is all your own code open source as well? Then you "only" need to follow articles 13 and 14. If your own source code is not open somebody has to follow more rules. If you are located inside the EU it'll be you yourself. If you are located outside the EU it will get more complicated. I am not sure what roles are distributed to "manufacturer", "importer", and "distributor". It might be that the app store might have to fulfill some of the duties instead of you yourself. @Cfan said in Questions about CRA regulation(Cyber Resillience Act): If my app does not use networking or internet, does it change something? Yes. There is the category of "important products with digital elements". What makes a product "important" are things like internet connectivity. "Important products" have to fulfill additional obligations. Without any additional knowledge about your actual app I would guess that it is not an "important product". You'll find a list of important products in Annex III.
  • 0 Votes
    5 Posts
    469 Views
    I
    A TODO.md file in the project directory, with a VS Code markdown plugin.
  • Simple GUI Troubleshooting in Qt – Any Tips for Handling Sensor Input?

    Unsolved
    2
    0 Votes
    2 Posts
    252 Views
    jeremy_kJ
    What update rate is being attempted? What does the general program structure look like?
  • 0 Votes
    3 Posts
    331 Views
    S
    Thank you for your reply. Your suggestion was the key to solving a problem I had been struggling with for a very long time. You were completely correct. The root cause was a Qt 5 vs. Qt 6 API change. I was trying to use the obsolete QCameraInfo class in my Qt 6 project. As soon as I refactored my code to use QMediaDevices::videoInputs() and the QCameraDevice class, the "file not found" error was resolved. I had spent many hours trying to fix what I thought was a broken installation, so your insight was incredibly helpful. Thank you for sharing your knowledge!
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • VB6 clone or facsimile based on Qt...

    Unsolved
    2
    1 Votes
    2 Posts
    1k Views
    RokeJulianLockhartR
    There are a great many who would use it (like my father). However, VB6 has been deprecated by MS since the 1990s, so I cannot envision The Qt Company implementing this.
  • I cannot download old qt versions

    Unsolved
    3
    0 Votes
    3 Posts
    616 Views
    S
    Just to be sure because some beginners mix QtCreator and Qt: The version of QtCreator usually doesn't matter. You can still use older versions of Qt with a newer QtCreator. There is usually not much reason to use an older version of QtCreator. What you most likely mean is old versions of Qt. The installer uses a filter to show the most relevant versions. In my version of the installer (not sure if it is the most recent one) to the right of the search bar is a drop down saying "Show". In that list you can enable "Archive" to show older unmaintained versions of Qt. However, this history does not go back right to the beginning, but only selected versions of Qt are shown.
  • How can I change my personal email of qt account

    Unsolved
    4
    0 Votes
    4 Posts
    1k Views
    RokeJulianLockhartR
    @Thank-You, login.qt.io/change_email now exists.
  • "Cannot download archive" error while installation

    Unsolved
    11
    0 Votes
    11 Posts
    7k Views
    W
    @warhawk627 , Thank you! Your suggestion is working perfectly for me!
  • The Future of Qt as a C++ API

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    S
    I use Qt as a cross platform library for desktop applications. That's why I am still using QWidgets and not QML. Also, I do understand the use of QML for larger companies that have separate designers (we don't), but for the common C++ programmer it is not actually necessary. As a C++ programmer I would certainly support being able to use QML widgets right from C++ without actually requiring QML at all). As @Axel-Spoerl already mentioned it is unlikely that QWidgets will be abandoned any time soon. Even if it does happen, I am not to concerned. It would be still possible to continue open source development of a Qt fork. There have been interesting forks in the past (based on Qt 5). Verdigris (https://github.com/woboq/verdigris) tries to get rid of moc (by using macros) and still be ABI compatible with Qt. CopperSpice (https://www.copperspice.com/) takes a slightly different route and tries to use proper C++ code instead of macros. It is not ABI compatible with Qt. Also, they have reimplemented a few things which means it has diverged from Qt and you cannot just compile Qt code using CopperSpice anymore (I believe this worked initially). With the advent of reflection in C++26 (and hopefully more reflection features in C++29 that make it more usable) I do hope to see a change in Qt or something derived from it. This would certainly help us to get rid of the moc for good (without sacrificing any of the beloved syntax).
  • What's the most beautiful / creative / interesting software made with QT you've seen?

    Moved Unsolved
    6
    2 Votes
    6 Posts
    2k Views
    S
    Presonus Studio One: https://www.presonus.com/pages/studio-one-pro
  • Why doesn't QInputDialog::getText() allow passing a custom QValidator?

    Unsolved validator dialogs
    7
    0 Votes
    7 Posts
    1k Views
    JonBJ
    @L0uisc The simple answer is that Qt must have have hundreds of classes and thousands of methods. You could add useful/utility features forever. There is no deep reason why one is offered but not another, other than popular usage. QInputDialog --- which by the way is not used that often --- is only really a convenience class on top of QDialog. Nothing wrong with your suggestion --- and you can always make those at https://bugreports.qt.io/, or offer to implement it yourself --- just TQtC probably has a million other things to do :)
  • Why is my post flagged as spam?

    Solved
    2
    0 Votes
    2 Posts
    513 Views
    L
    Closing as duplicate of https://forum.qt.io/post/809400
  • Installation from this IP address is not allowed

    Unsolved
    14
    2 Votes
    14 Posts
    21k Views
    N
    Just use proxy: quterussia.ru/download/
  • that's once....that's twice....

    Unsolved
    10
    0 Votes
    10 Posts
    2k Views
    Pl45m4P
    @berry36 Don't worry too much. Toxic and now banned ex-user (= threadstarter) getting her own medicine ;-) The original post was edited multiple times... so her initial message was something completely different that got replaced by her with some random question afterwards
  • 0 Votes
    3 Posts
    663 Views
    B
    @SGaist Ok, thanks.
  • How to apply for EDU license

    Unsolved
    2
    0 Votes
    2 Posts
    550 Views
    SGaistS
    Hi and welcome to devnet, I don't have an answer to that issue. Sorry for that. But what exactly would you need ? The open source version might already cover your requirements.