Skip to content

Qt 6

This is where all Qt 6 related questions belong

828 Topics 4.0k Posts
  • Qt6 for iOS and WebAsm support?

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

    Unsolved
    1
    0 Votes
    1 Posts
    13 Views
    No one has replied
  • Is it possible to convert pyqt6 to exe with pyinstaller?

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    deleted264D

    Si se puede ,pero también hay otras librerías para compilar a exe tu aplicación

  • parse strings with tags

    Unsolved
    5
    0 Votes
    5 Posts
    430 Views
    SGaistS

    Why did you delete the question ?

    As for the edition, since you control the tags, then QRegularExpression and QString should fit well.

  • Qt 6 is Frustrating

    Solved
    10
    0 Votes
    10 Posts
    2k Views
    SGaistS

    Great !

    Since you have this part working, please mark the thread as solved so that other forum users may know a solution has been found :-)

  • Qt UI Widget Stylesheet Documentation

    Solved
    2
    0 Votes
    2 Posts
    183 Views
    Christian EhrlicherC

    See Qt Style Sheets.

  • 0 Votes
    6 Posts
    608 Views
    SGaistS

    Great ! Thank you very much.

  • Not managing to build android QT project

    Moved Solved
    5
    0 Votes
    5 Posts
    334 Views
    T

    Oh sorry i forgot to check the Android box
    4d0a39b9-151b-4359-906d-b2928282ee12-image.png
    well, thx for the help anyway

  • 0 Votes
    2 Posts
    403 Views
    C

    @CuteQt

    onPressed is not always practical because it breaks a lot of things. Let's imagine the following example:

    import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 ApplicationWindow { visible: true width: 300 height: 420 ComboBox { anchors.centerIn: parent model: ['Red', 'Green', 'Blue'] } }

    The Combobox is inaccessible if you are using a graphics tablet.

    Let's imagine the following example with a drawer.

    import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 ApplicationWindow { visible: true width: 300 height: 420 Drawer { width: parent.width * 0.6 height: parent.height ListView { anchors.fill: parent model: 6 delegate: ItemDelegate { width: parent.width text: `Menu Item ${index}` } } } }

    You can pull the drawer using a stylus but it doesn't stay opened and follows the cursor because I believe onReleased signal is never fired.
    Mouse works as expected.

    Let's consider the following example:

    import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 ApplicationWindow { visible: true width: 300 height: 420 Column { id: radios anchors.centerIn: parent RadioButton { id: red; text: 'Red' } RadioButton { id: green; text: 'Green' } RadioButton { id: blue; text: 'Blue' } Button { text: 'Ok' } } }

    With stylus, the radio buttons seem to be checked but as soon as you click on something else like the Button for example the radio is no longer checked anymore.
    With mouse, everything works as expected.

  • Qt 6.0.1 Webview gone

    Moved Solved
    3
    0 Votes
    3 Posts
    546 Views
    E

    @jsulm Oh,Its sad.Thanks for replying my thread.
    :)

  • qt6 and Mint 18 Linux?

    Solved
    22
    0 Votes
    22 Posts
    3k Views
    O

    @ofmrew Upgraded to latest version of Mint Linux and I now have Qt6 installed. Now on to getting Qt 3D installed.

  • Where is the designer and debug buttons ?

    Solved
    7
    0 Votes
    7 Posts
    428 Views
    S

    thanks . its working

  • Compiling documentation from source

    Solved
    2
    0 Votes
    2 Posts
    194 Views
    S

    I decided myself: ninja docs / ninja install_docs

  • QT3D crashes on qt3d sample

    Solved
    3
    0 Votes
    3 Posts
    534 Views
    McTobM

    Thank you for your feedback:
    System: 5.8.0-43-generic #49~20.04.1-Ubuntu x86_64 - Ubuntu 20.04.2 LTS
    GPU GeForce GTX 680
    NVIDIA Driver Version: 460.32.03

    I was trying to check which openGL implementation was used on my system but ended up with an error message, although I have libnvidia-gl-460 installed:

    glxinfo | grep OpenGL X Error of failed request: BadValue (integer parameter out of range for operation) Major opcode of failed request: 151 (GLX) Minor opcode of failed request: 24 (X_GLXCreateNewContext) Value in failed request: 0x0 Serial number of failed request: 99 Current serial number in output stream: 100

    I'll dig in that direction

    Edit: after sudo nvidia-xconfig and a reboot, the example is now working, thanks a lot @SGaist for pointing me in the right direction !

  • No QtMultimedia Module in PySide6.

    Unsolved
    5
    0 Votes
    5 Posts
    644 Views
    SGaistS

    Hi and welcome to devnet,
    @ailisp said in No QtMultimedia Module in PySide6.:

    I think this PySide6 example indicates there's a QtMultimedia Module: https://doc.qt.io/qtforpython/examples/example_multimedia__camera.html (or example is wrong)

    In this case, the documentation is currently wrong and has likely been automatically generated. Qt 6.0.1 clearly comes without the QtMultimedia module therefore PySide6 cannot have it either at this time.

  • Using the Qt Quick TreeView with CMake

    Unsolved
    4
    0 Votes
    4 Posts
    314 Views
    SGaistS

    I think the idea here is that you build and install the Quick TreeView so that you can reuse it from within different projects.

  • Migrating to Qt 6 tips

    Moved Unsolved
    1
    2 Votes
    1 Posts
    185 Views
    No one has replied
  • How to initialize QQuickRenderControl?

    Solved
    2
    0 Votes
    2 Posts
    279 Views
    C

    Ah, I seem to have figured it out. You have to construct the QQuickWindow with the QQuickRenderControl as the parent. Wish that was a little more clear in the QQuickRenderControl docs.

  • 0 Votes
    3 Posts
    327 Views
    D

    @Sathish_1985
    There should be the error message before the line

    make[6]: Leaving directory '/e/Misc/GenesisTools/repos/MINGW-packages/mingw-w64-qt5/src/x86_64/qtbase/src/plugins/styles/windowsvista'

    in your log.

  • Qt6 support in Qml Designer

    Unsolved
    1
    1 Votes
    1 Posts
    204 Views
    No one has replied