Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.6k Topics 457.7k Posts
  • moc: Too many input files specified

    Solved
    6
    0 Votes
    6 Posts
    641 Views
    S
    Thanks for the info, upgrading to Qt Plugin 2.6.0.7 seems to have fixed this issue for me.
  • QtCharts bar graph: hiding the label of a qBarSet

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    W
    @JonB Thanks for your time!
  • Compare Projects

    Unsolved
    3
    0 Votes
    3 Posts
    276 Views
    SGaistS
    Hi, In addition to @sierdzio, KDiff3 might also be of interest.
  • Using custom type in Q_PROPERTY

    Unsolved qproperty moc meta-objects
    1
    0 Votes
    1 Posts
    550 Views
    No one has replied
  • How to upgrade Qt from 5.14.2 to 5.15.1 ?

    Unsolved
    8
    0 Votes
    8 Posts
    6k Views
    SGaistS
    @sierdzio thanks, I completely missed it. If you want to go with the latest and greatest of Plasma, then you should consider using KDE Neon. It's an Ubuntu based distribution which provides Plasma up to date. You have the choice between the standard, developer and unstable variants. It will likely cover your needs.
  • QSqlDatabase: QMYSQL driver not loaded, QSqlDatabase: available drivers: /*empty,*/

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    U
    ok, thank you
  • Creating a widget which can hold an image and text

    Unsolved
    2
    0 Votes
    2 Posts
    215 Views
    SGaistS
    Hi, The coordinate system is not based on the center of what you want to paint. Please take a look at the corresponding chapter in Qt's documentation.
  • This topic is deleted!

    Unsolved
    2
    0 Votes
    2 Posts
    6 Views
    No one has replied
  • Save and restore state

    Unsolved
    3
    0 Votes
    3 Posts
    474 Views
    O
    Hi, Thank you for your reply. So, I will layout application again.
  • OS timestamps

    Solved
    14
    0 Votes
    14 Posts
    837 Views
    JonBJ
    @ted19b I'm the person who's interested in this :) Thanks for all your replies/links. This means that the problem certainly comes from my code. Glad you have discovered this. When I looked at the https://code.woboq.org/qt5/qtbase/src/corelib/io/qdir.cpp.html#_ZN4QDir17removeRecursivelyEv implementation I could only see it doing non-creationtime operations, so your findings now correspond :)
  • Weird stylesheet behavior for ui form designer

    Solved
    3
    0 Votes
    3 Posts
    289 Views
    B
    @Bonnie Wouv that's it! You ve got the point. It seems that i clicked over an empty field next to my qlabel (which corresponds the form) and then set its stylesheet but i didn't notice that it is not my qlabel. With your correct answer, my question now seems to be a very foolish one :) but thanks a lot, you saved my day
  • How to affect GUIs across threads

    Unsolved
    2
    0 Votes
    2 Posts
    245 Views
    jsulmJ
    @Martmists said in How to affect GUIs across threads: Are there any methods for "queueing" changes across threads for such applications Of course: signals/slots with Qt::QueuedConnection connection type, see https://doc.qt.io/qt-5/qt.html#ConnectionType-enum. Qt::QueuedConnection is default when connecting signals/slots between different threads. Important rule: never change UI from other threads than UI thread. So, simply emit signals from your audio thread and connect these signals to slots in your UI thread where you then change the UI.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    9 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    20 Views
    No one has replied
  • Creating a installer for my QT program

    Unsolved building
    14
    0 Votes
    14 Posts
    2k Views
    R
    @KH-219Design Okay great I will take a look over this and see if I can get it working as well, thank you!
  • Issue with QSerialPort: Raspberry Pi - Arduino

    Unsolved
    7
    0 Votes
    7 Posts
    2k Views
    SGaistS
    The cumulation is correct but not the loop. Once you got the data, check for the frame. If not there, let your application live and the next time readyRead is fired, it will do the same and you might have there the complete frame. No need for a tight loop.
  • qt.qpa.plugin: Could not load the Qt platform plugin "xcb"

    Solved
    5
    0 Votes
    5 Posts
    3k Views
    R
    Perfect that worked, thank you!
  • Dynamic widgets AutomationId property does not exist

    Solved
    3
    0 Votes
    3 Posts
    780 Views
    A
    Thanks! A call to setObjectName solved the problem.
  • How to signal when doing IPC using Shared Memory?

    Unsolved
    3
    0 Votes
    3 Posts
    334 Views
    T
    @SGaist It's large binary data (100MB). While QLocalServer is quite fast, still its a bit of an overhead having to pipe all the data through a socket. I guess I'll load data in shared memory and then notify other side over QLocalSocket