Skip to content
  • 143k Topics
    716k Posts
    jsulmJ

    @rparon Then you should check your CMakeLists.txt file or post it here, so others can take a look. Something must be wrong there.

  • Jobs, project showcases, announcements - anything that isn't directly development
    4k Topics
    23k Posts
    I

    @aha_1980
    Thank you very much for the hint! The problem was in the path—there was a folder with Cyrillic characters.

  • Everything related to designing and design tools

    120 Topics
    362 Posts
    H

    In Qt Design Studio you write/build QML/QtQuick applications. QtQuick Controls Button is not a widget and not based on a style sheet https://doc.qt.io/qt-6/qml-qtquick-controls-button.html. Here is an example on how to customize QtQuick Controls Button https://doc.qt.io/qt-6/qtquickcontrols-customize.html#customizing-button

  • Everything related to the QA Tools

    70 Topics
    197 Posts
    P

    Hi everyone,

    How can we test a cup filling animation in squish?

    I have used test.startVideoCapture() and test.stopVideoCapture() to capture videos of animation and test it with object.grabScreenshot of each 10% filling from 0 to 100.

    But the captured video is stored in test results and I have issues in accessing it. Also I am unable to compare the screenshots and video frames.

    Anyone have ideas on how to test this animation? This would be really helpful.

    Thanks & Regards
    Prithashasni

  • Everything related to learning Qt.

    383 Topics
    2k Posts
    Emilia_QtE

    Hi @Rexshimura!

    Try resetting your password by going to https://login.qt.io/forgot. This should verify your email as well.

    BR. Emilia

  • 2k Topics
    13k Posts
    SGaistS

    Hi and welcome to devnet,

    What are you using currently ? QtQuick ? The graphics view framework ?

  • 4k Topics
    17k Posts
    R

    Bonjour,
    S'il vous plait, j'aimerais avoir solution à un problème que même mes recherches n'arrivent pas à résoudre. Je code en python et j'ai démarré avec QtQuick-Qml pour développer des applications graphiques modernes avec python - PySide6, mais je suis confronté à un problème. Lorsque je compile mon projet avec Nuitka pour obtenir un exécutable unique avec la commande :
    python -m nuitka --onefile --windows-console-mode=disable --enable-plugin=pyside6 --include-qt-plugins=qml --include-data-files=gui.qml=gui.qml main.py
    L'exécutable créé offre environ 100Mo pourtant le code est très léger et je remarque aussi l'inclusion des module QtWebEngine,QtWebEngineCore,...
    Voici le code contenu dans mon fichier main.py :

    import sys from PySide6.QtQml import QQmlApplicationEngine from PySide6.QtGui import QGuiApplication if __name__ == "__main__": app = QGuiApplication(sys.argv) engine = QQmlApplicationEngine() engine.load("gui.qml") sys.exit(app.exec())

    et voici le code contenu dans mon fichier gui.qml pour l'interface graphique :

    import QtQuick import QtQuick.Controls Window { width: 640 height: 480 visible: true title: "A simple button in the window" Button { text: "Push me" anchors.centerIn: parent width: 200 } }

    J'ai essayé plein de solutions comme l'utilisation des options : --noinclude-qt-plugins=qtwebengine,qtwebenginecore,qtwebenginewidgets,qtwebenginequick et aussi --nofollow-import-to=PySide6.QtWebEngine,PySide6.QtWebEngineCore,PySide6.QtWebEngineWidgets,PySide6.QtWebEngineQuick --include-data-files=gui.qml=gui.qml main.py mais rien de marche.

    Merci d'avance pour vos futures réponses !!!

  • This is where all the posts related to the Qt web services go. Including severe sillyness.
    1k Topics
    10k Posts
    RokeJulianLockhartR

    @SGaist, thanks. I've filed QTWEBSITE-1224.