Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    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
      21
      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
      229
      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
      1008
      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  

      5
      0
      Votes
      5
      Posts
      1890
      Views

      Hi @aha_1980 Its profinet communication(if still any doubt about PLC then please check details on internet for siemens s7-1214(1200) profinet/ethernet port). How can i define PLC's ip address in qt c++. To read any one PLC memory location, what should i write in qt C++. Also to write PLC location. I trying to read only 5 or 6 real(32bit) locations from PLC.
    • SOLVED How to use a specialization of an C++ interface?
      QML and Qt Quick • interface qmlregisterinte • • c64zottel  

      2
      0
      Votes
      2
      Posts
      672
      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 • qt designer designer interface uiux • • paperspace  

      1
      0
      Votes
      1
      Posts
      1394
      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
      1446
      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 • path interface service list qdbus • • Mark81  

      2
      0
      Votes
      2
      Posts
      835
      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
      825
      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
      793
      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
      1459
      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 interface testing fake • • Bart_Vandewoestyne  

      1
      1
      Votes
      1
      Posts
      520
      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
      897
      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
      2997
      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
      5324
      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
      6859
      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
      1048
      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.