Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. buttons
    Log in to post

    • UNSOLVED How to interact with pre-defined wizard buttons ?
      Tools • qtifw buttons • • Joric  

      1
      0
      Votes
      1
      Posts
      40
      Views

      No one has replied

    • UNSOLVED Pyqt5 help on button and grid layouts.
      Qt for Python • gridlayout buttons pysical • • Dexter99  

      4
      0
      Votes
      4
      Posts
      69
      Views

      @Dexter99 said in Pyqt5 help on button and grid layouts.: The show is okay but now I want to add it in a grid layout. Please show us what you've tried.
    • UNSOLVED How to create a button in Qt 3D Studio
      General and Desktop • qml button buttons element 3dstu • • Pivot15  

      1
      0
      Votes
      1
      Posts
      107
      Views

      No one has replied

    • UNSOLVED sending QStringLists from dynamically created buttons using signals and slots
      General and Desktop • qtcreator signal & slot dynamic buttons • • Kushan  

      21
      0
      Votes
      21
      Posts
      3654
      Views

      @SGaist Thanx mate :) Qt rox :D
    • UNSOLVED Data passing
      General and Desktop • gui buttons dataflow • • jklms  

      8
      0
      Votes
      8
      Posts
      1730
      Views

      @jsulm Oh. I haven't considered that. I'm definitely going to try that. I don't know why it didn't came to my mind. Thank you very much. I really appreciate your advice. I have been stuck at this problem for a week. I am glad there are people who are willing to help beginners.
    • UNSOLVED Button Text not readable
      General and Desktop • qml qtquick qt quick dialog buttons • • Qjay  

      6
      0
      Votes
      6
      Posts
      1020
      Views

      need to check Qt classes for system settings and native look and feel, and of adopting those changes for App. Thanks,
    • UNSOLVED Mouse PressAndHold
      QML and Qt Quick • mousearea buttons • • msinger  

      2
      0
      Votes
      2
      Posts
      720
      Views

      In my understanding this is exact what onClicked does. From the online documentation: "A click is defined as a press followed by a release, both inside the MouseArea (pressing, moving outside the MouseArea, and then moving back inside and releasing is also considered a click)." MouseArea { anchors.fill: parent onClicked: console.log("released") onPressed: console.log("pressed") }
    • UNSOLVED How to load ListModel to GridView depending on button clicked - QML
      General and Desktop • qml gridview listmodel c++ to qml buttons • • Stravinsky  

      2
      0
      Votes
      2
      Posts
      1338
      Views

      I create MyClass and pass 4 images to QML in main.cpp class.h #ifndef MYCLASS_H #define MYCLASS_H #include <QDebug> #include <QObject> class MyClass : public QObject { Q_OBJECT Q_PROPERTY(QString imagePath READ imagePath WRITE setImagePath NOTIFY pathChanged); public: explicit MyClass(QObject *parent = 0); MyClass(QString path) { m_imagePath = path; } QString imagePath(); void setImagePath(const QString & path); signals: void pathChanged(QString path); private: QString m_imagePath; }; #endif // MYCLASS_H main.cpp QApplication app(argc, argv); app.setWindowIcon(QIcon("qrc:/images/logo.ico")); QQmlApplicationEngine engine; engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); QList<QObject*> dataList; dataList.append(new MyClass("/images/images/zaglowek.png")); dataList.append(new MyClass("/images/images/pilot.png")); dataList.append(new MyClass("/images/images/uklad_jezdny.png")); dataList.append(new MyClass("/images/images/nozne_sterowanie.png")); engine.rootContext()->setContextProperty("myModel", QVariant::fromValue(dataList)); For Now MyClass has only image path, but it will also set state (checked-unchecked) and animation (enable-disable). I would like to reload this QList ( with another images, states etc. ) when button ( one of three ) is clicked ( TButton.qml ). How to do it ? Please help.
    • [Solved] Creating very customized windows
      General and Desktop • buttons customize • • JulienD  

      4
      0
      Votes
      4
      Posts
      793
      Views

      @JulienD Np. You can style the whole application however. All controls etc can be controlled with style sheet. Just not Caption :)
    • Qt Installer Framework Hide Buttons
      Installation and Deployment • installer button qtifw framework hide buttons • • circlesquare  

      4
      0
      Votes
      4
      Posts
      2413
      Views

      これで行けました。 function Controller() { } Controller.prototype.FinishedPageCallback = function() { buttons.CommitButton.hide(); }
    • Resolved: Broken application GUI. What happened with buttons, checkboxes?
      General and Desktop • linux gui buttons • • vicsoftware  

      6
      0
      Votes
      6
      Posts
      1368
      Views

      Resolved. When i played with second usb monitor i changed first hdmi monitor modes depth to 16. Now i set 24 bits in xorg.conf and all UI is OK. Thanks for all.