Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.6k Topics 457.5k Posts
  • Signal flag changes for QAbstractItemModel

    Unsolved itemmodel
    18
    0 Votes
    18 Posts
    4k Views
    JonBJ
    @kshegunov One might actually need the signal to tell us which flags have changed. Only certain flag changes affect anything we are interested in, several seem not relevant.
  • Detect top/parent move event on child widget

    Unsolved qwidget qmainwindow qmoveevent
    28
    0 Votes
    28 Posts
    10k Views
    kshegunovK
    @ThThoma said in Detect top/parent move event on child widget: However, what if I have multiple floating widgets that track their "parent" movements? You'd have multiple event filters. And I'm answering: probably the delay from the multiple filters will start to get noticeable... I really doubt it, as long as you don't have too many. If you keep the event processing responsive, you shouldn't notice it at all. Personally, I'd rather have the window in a layout, or if it's really floating, then leave it be, but ymmv.
  • Qt 6.4 windows movement/resizing behavior on DirectX

    Unsolved qt 6 direct3d11 directx windows resizing
    7
    0 Votes
    7 Posts
    4k Views
    A
    @AlexMax The issues is marked fixed in 6.3 and 6.4, so it it still persists in 6.5, that would probably warrant a new issue, linking to the old one. Or is it captured by linked and still-open https://bugreports.qt.io/browse/QTBUG-99602?
  • Changing camera orientation in Qt 6.4.3

    Unsolved
    1
    0 Votes
    1 Posts
    149 Views
    No one has replied
  • How to ensure that a Widget QPainter changes size when the parent does?

    Solved
    3
    0 Votes
    3 Posts
    338 Views
    supergS
    @Bonnie Thank you, I can't believe I didn't think of that. Now it works like a charm, thanks again!
  • Vertical Splitter

    Solved
    3
    0 Votes
    3 Posts
    247 Views
    I
    @Chris-Kawa , Thank you. that's the solution.
  • CAN QT creator open remote project?

    Unsolved
    6
    0 Votes
    6 Posts
    385 Views
    JonBJ
    @cainiao123 You might install, say, the latest version of Creator instead of one from 2017. the project in Linux virtual machine, It would be an awful lot simpler to just do the editing/development in the Linux VM, given that is what you already have....
  • QListWidget disable hover for item widget?

    Solved
    20
    0 Votes
    20 Posts
    2k Views
    T
    Finally, found a solution! The trick is Not to use hover modifier/attribute for disabled items QListWidget::item:disabled, QListWidget::item:!active, {background: transparent;} This stylesheet plus removing IsEnabled or IsSelectable flag for desired items will disable hover effect.
  • How qthread get executed based on priority ?

    Solved
    3
    0 Votes
    3 Posts
    240 Views
    Kent-DorfmanK
    Yinz are probly already aware of this but I think it is important to note...from the QThread documentation: The effect of the priority parameter is dependent on the operating system's scheduling policy. In particular, the priority will be ignored on systems that do not support thread priorities (such as on Linux, see http://linux.die.net/man/2/sched_setscheduler for more details).
  • I need QT6, but also Win7 support. What can I do?

    Unsolved
    2
    0 Votes
    2 Posts
    982 Views
    sierdzioS
    Not sure if it will help in your case, but @hskoglund has some solution to run Qt6 on Windows 7, see here: https://forum.qt.io/topic/133002/qt-creator-6-0-1-and-qt-6-2-2-running-on-windows-7 Regarding D3D requirement, I think for widgets it should be possible to not have it (widgets are drawn using software renderer anyway). See https://doc.qt.io/qt-6/qtquick-visualcanvas-scenegraph-renderer.html#rendering-via-the-qt-rendering-hardware-interface and https://doc.qt.io/qt-6/opengl-changes-qt6.html
  • 0 Votes
    2 Posts
    180 Views
    SGaistS
    Hi, Did you already check the Quick Subscription example ?
  • QtQuick.Dialog is uninstalled

    Unsolved
    9
    0 Votes
    9 Posts
    686 Views
    SGaistS
    Add all the modules to the target_link_libraries call.
  • is this code good for error detection in qml?

    Unsolved
    2
    0 Votes
    2 Posts
    158 Views
    sierdzioS
    Do you emit your signal anywhere? If not, then your slot will never be called.
  • Translucent window with child widgets has darker areas?

    Unsolved
    1
    0 Votes
    1 Posts
    102 Views
    No one has replied
  • Problem with QMediaPlayer

    6
    0 Votes
    6 Posts
    1k Views
    C
    @Youenn Great! Don't forget to mark this topic as solved.
  • LineEdit alignment does not align

    Solved
    11
    0 Votes
    11 Posts
    930 Views
    W
    @JonB I didn't replace, I just checked if it works. I think I'll just make a new file or download 6.6.0. Since it's my first try - nothing critical about it. Thanks a lot for your help!
  • Adding webenginewidgets Issues.

    Unsolved
    2
    0 Votes
    2 Posts
    182 Views
    JonBJ
    @MyNameIsQt I don't know how it works for the online installer or Windows, but is QtWebEngine/Widgets an optional part for installing, i.e. are you sure you have it installed? Also, you only show that your Qt Creator was compiled with MSVC 2019. That says nothing about what Qt you are compiling against or what compiler you are using? If you use MinGW at all, or an MSVC older than 2017, it won't work and you will get this message.
  • How to style QComoBox drop down menu... bad outline

    Unsolved
    1
    0 Votes
    1 Posts
    135 Views
    No one has replied
  • MapPlugin and problem OpenSSL

    Unsolved
    1
    0 Votes
    1 Posts
    259 Views
    No one has replied
  • How to use the QMediaPlayer module to connect to a rtsp stream?

    Unsolved
    6
    0 Votes
    6 Posts
    4k Views
    JonBJ
    @Ylvy I think you will find the whole point is that you must put the qputenv() statement before the line creating the QApplication so that the application respects your desired media backend!