Navigation

    Qt Forum

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

    • UNSOLVED How to correctly handle tab order in qml?
      QML and Qt Quick • focus interface focus issue taborder interaction • • jeanmilost  

      1
      0
      Votes
      1
      Posts
      362
      Views

      No one has replied

    • UNSOLVED using resources system with qml
      QML and Qt Quick • qml qt5 image resource interface • • newbiSoso  

      8
      0
      Votes
      8
      Posts
      536
      Views

      Hi @newbisoso , See this, it may help you
    • SOLVED Getting values from dynamically created user interfaces
      General and Desktop • dynamic interface store values • • Lasith  

      9
      0
      Votes
      9
      Posts
      1404
      Views

      Hi While walking my imaginary dog, i was wondering if the number you input "ui->values->text().toInt()" means how many names/ages to get and you mean for it to ask that many times, and not really create that many dialogs ? So like ask me 10 times and one and the same dialog would show up 10 times ? And each time, user press ok, it would save the data, then show again ?
    • UNSOLVED Qt gui C++ to read other controllers memory location through ethernet tcp/ip address
      Mobile and Embedded • interface tcpsocket data transfer • • Prasad320  

      7
      0
      Votes
      7
      Posts
      2366
      Views

      @Belkacem said in Qt gui C++ to read other controllers memory location through ethernet tcp/ip address: Can you give more information on how to establish a communication between the PC and the PLC. Hi, and welcome! First, you must tell us what communication protocols are supported by your PLC.
    • SOLVED How to use a specialization of an C++ interface?
      QML and Qt Quick • interface qmlregisterinte • • c64zottel  

      2
      0
      Votes
      2
      Posts
      820
      Views

      @c64zottel Ok, I figured it out. My mistake is a missing Q_OBJECT declaration in the JoystickDeviceConfigurator: class JoystickDeviceConfigurator : public InputDeviceConfiguratorGate { Q_OBJECT public:
    • SOLVED QT/QML Design Job (Freelance/Contract)
      Jobs • designer qt designer interface uiux • • paperspace  

      1
      0
      Votes
      1
      Posts
      1540
      Views

      No one has replied

    • UNSOLVED How to load a QML view from a singleton C++ class within a main window engine
      QML and Qt Quick • qml c++ loader interface singleton • • notalocal  

      3
      0
      Votes
      3
      Posts
      1637
      Views

      I appreciate your response, it lead me to a lot of research on the topic! I figured out it was much easier to implement a tabview on the main view and then to connect the signals with the child objects which were themselves individual views.
    • UNSOLVED QDbus list names under a specific path
      General and Desktop • service path interface list qdbus • • Mark81  

      2
      0
      Votes
      2
      Posts
      1002
      Views

      @Mark81 ok, I found a way: QDBusInterface *iface = new QDBusInterface("your.service", "/your/path", "org.freedesktop.DBus.Introspectable", QDBusConnection::systemBus(), this); qDebug() << iface->call("Introspect").arguments();
    • SOLVED Where is the 'Plug & Paint' example?
      General and Desktop • plugin interface • • maxlazarus  

      4
      0
      Votes
      4
      Posts
      946
      Views

      Thanks, my file search is brutally slow on this machine.
    • UNSOLVED Copy MainWindow content and interact with it
      General and Desktop • resize mainwindow interface copy • • eduardo_parra  

      2
      0
      Votes
      2
      Posts
      1008
      Views

      Hi, No, it's something you'll have to implement yourself. You'll probably have to create an event filter that will re-send any relevant event to your other windows.
    • UNSOLVED Switching between menu windows
      General and Desktop • c++ menu interface switch • • mandruk1331  

      2
      0
      Votes
      2
      Posts
      1593
      Views

      Hi, Please don't post the same question multiple times. Duplicate Closing this one.
    • UNSOLVED On faking QObject-derived classes
      General and Desktop • qobject testing interface fake • • Bart_Vandewoestyne  

      1
      1
      Votes
      1
      Posts
      624
      Views

      No one has replied

    • Developing multi page app like Viber interface using Qt Quick?
      Mobile and Embedded • qt5 qtquick gui stackview interface • • rostamiani  

      2
      0
      Votes
      2
      Posts
      1017
      Views

      @rostamiani Yes StackView seems to be a good candidate.
    • How do you use C++ Interfaces (pure virtual class) in QML
      QML and Qt Quick • qml c++ interface • • Buttink  

      8
      0
      Votes
      8
      Posts
      3343
      Views

      @mrjj Ok, then I give it a try. Nice starfield at your website btw.
    • Transparent QDialog - toggle on/off
      General and Desktop • qdialog interface • • maximus  

      9
      0
      Votes
      9
      Posts
      6003
      Views

      @maximus Do you have any luck for making QDialog transparent in windows ? I am also facing similar problem. The transparency works fine in linux but not windows. Any luck so far ?
    • [SOLVED] QPluginLoader unable to load a Qt Plugin
      General and Desktop • plugin loader interface qtplugin • • bharath144  

      9
      0
      Votes
      9
      Posts
      7897
      Views

      hello, can you tell us how you solve your problem? thank you.
    • LocalStorage and Javascript Interface support
      QtWebEngine • javascript interface localstorage • • amorawski  

      2
      0
      Votes
      2
      Posts
      1208
      Views

      @amorawski Hi, if anybody would be interested in this - I didn't find any other way then by using native system browsers. Basically you need to extend the QQuickItem, then on iOS you can create the browser using ObjectiveC (using PlatformNativeInterface), on Android you need to use JNI (so you create native view on top of the QtView). Cool thing is that even animations work in both cases (on android you need to synchronize WebView position with the QQuickItem position beeing rendered on the QtView). For communication with javascript - for android you can use addJavascriptInterface, for iOS the best solution I have found is passing the params though URL on hidden iframe, and catching Load event on native side, fetching params from the URL). Cheers, art.