Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.0k Topics 77.4k Posts
  • Using No-IP services for two network based QML apps

    Unsolved
    3
    0 Votes
    3 Posts
    254 Views
    Q
    @jsulm I didn't know there would be a way other than TCP/IP or UDP to establish communication through different apps even on the same machine! Yes, my apps make use of QTcpServer/QTcpSocket classes and a QDataStream for transactions. A copy of the apps may be sent to any couples to use them for messaging, just like typical social texting applications that people download and use on their devices.
  • Invalid property name "orientation" (M16) in Design mode

    Unsolved
    4
    0 Votes
    4 Posts
    979 Views
    DehghannnD
    I am experiencing the same problem on Qt Creator 7.0.2
  • How to custom qml virtual keyboard ?

    Unsolved
    37
    0 Votes
    37 Posts
    22k Views
    P
    @dmendez thanks, it worked!
  • QTimer events not handled when started from QSGRenderThread

    Unsolved
    1
    0 Votes
    1 Posts
    179 Views
    No one has replied
  • ninja: error: dependency cycle using qt_add_qml_module

    Unsolved
    1
    0 Votes
    1 Posts
    726 Views
    No one has replied
  • Building Qt with conan, `qt_add_qml_module` raises error.

    Unsolved
    1
    0 Votes
    1 Posts
    284 Views
    No one has replied
  • Reset custom property value.

    Unsolved
    2
    0 Votes
    2 Posts
    211 Views
    N
    Why you do toggle = !toggle; and not controller.toggle = !toggle; also why you call controller.onExpand(toggle); in qml and not in the toggle setter?
  • CMAKE QML files addition Questions

    Unsolved
    2
    1 Votes
    2 Posts
    233 Views
    N
    From what i understand qt_add_resources- for images etc qt_add_qml_module- compiles qml files to qrc and creates some qml boilerplate like qml_register_type<> or qmldir add_executable- for cpp files
  • 0 Votes
    2 Posts
    630 Views
    fcarneyF
    We just create models and use context properties. Or have the QML code request the model from another object via function or property. We generally have an application object that manages the lifetime of the smaller objects.
  • qtdatavis3d: oscilloscope example rendering issues

    Unsolved
    1
    0 Votes
    1 Posts
    116 Views
    No one has replied
  • Requesting support for Chartview Drag & drop with cross hair

    Unsolved
    1
    0 Votes
    1 Posts
    133 Views
    No one has replied
  • C++ class as qml module in Qt Design Studio

    Unsolved qml
    1
    0 Votes
    1 Posts
    514 Views
    No one has replied
  • C++ Q_ENUM autocompletion in QtCreator

    Unsolved
    3
    0 Votes
    3 Posts
    312 Views
    S
    @fcarney Thank you for the answer! I have registered it in the same place before qml engine. Yes, I've got the same idea about parsing by strings when had faced with this behaviour. I have tested the macros approach (as it was shown in https://github.com/carlonluca/lqtutils), but it still has no autocompletion. Well, looks like there is no way to do it in a more comfortable way, because it's performing by IDE before even preprocessor stage.
  • Cannot get rid of TextArea focus when mouse clicks the main window

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

    Unsolved
    4
    0 Votes
    4 Posts
    38 Views
  • Can't get parent property value in if statement

    Solved
    6
    0 Votes
    6 Posts
    556 Views
    D
    @J-Hilk Thanks you are right !
  • Regarding Qml bindings

    Solved
    2
    0 Votes
    2 Posts
    202 Views
    P
    @Praveen-Illa This question was answered in another forum. Please refer below URL https://stackoverflow.com/questions/72601135/regarding-qml-bindings
  • Creating onfile exe for Python + QML based deployment on Desktop

    Unsolved
    3
    0 Votes
    3 Posts
    851 Views
    ndiasN
    Hi @Sudhir-F, As @SGaist metioned before, you can use Nuitka to build and create an executable from Python code. Nuitka can be installed using PIP Installer: python -m pip install nuitka Build our program with --onefile command option to generate a single executable file. Use --standalone command option to generate a whole program.dist folder Depending on the Python bindings you are using you should add one of the following command options: --plugin-enable=pyqt5 --plugin-enable=pyqt6 --plugin-enable=pyside2 --plugin-enable=pyside6 Nuitka plugin list can be viewed using python -m nuitka --plugin-list command. Bellow you can find comand example including compilation of a resources folder: python -m nuitka --plugin-enable=pyside6 --follow-imports --windows-disable-console --windows-icon-from-ico="resources/myIcon.ico" --include-data-dir=./resources=resources --onefile "myProgram.py" As an alternative to Nuitka you can also use PyInstaller or others. Regards
  • Can't get property values of text inside onCompleted

    Unsolved
    3
    0 Votes
    3 Posts
    240 Views
    D
    @lemons I have already tried with rotation, parent.rotation etc. etc. It does not work.
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied