Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.1k Topics 62.6k Posts
  • psql detect wrong path if cross compiling?

    2
    0 Votes
    2 Posts
    518 Views
    SGaistS
    Hi, Did you install the PostgreSQL dev package on your Raspberry Pi ?
  • State Transition Problem

    state sliding trasition easing loader qml
    4
    0 Votes
    4 Posts
    2k Views
    p3c0P
    @Maxim-DC Yes it is possible. You can find an example here. The exact file in it where it is used.
  • Problem of QT5.3.2 with X11's EGL

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    SGaistS
    Hi and welcome to devnet, Did you try with QCamera and it's friendly classes ?
  • How to get EGLNativeWindowType* handle of QWidget (Android)

    2
    0 Votes
    2 Posts
    2k Views
    W
    Could you say if you found some solution?
  • Qml camera android

    camera qml android
    1
    0 Votes
    1 Posts
    820 Views
    No one has replied
  • Qt Android application running in background

    3
    0 Votes
    3 Posts
    1k Views
    S
    And how can I put the activity in the background? If I overwrite closeEvent(QCloseEvent *) what should I write inside in order to make the application run in the background?
  • Remote debug on i.mx6

    remote debuggin signal sigill qt 5.2.1 i.mx6
    1
    0 Votes
    1 Posts
    991 Views
    No one has replied
  • QtWebEngine on embedded linux high cpu load

    qtwebengine arm linux
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Important topics to learn QtQuick and Qml

    2
    0 Votes
    2 Posts
    2k Views
    p3c0P
    Hi @Rohith Since you are a beginner you should start with QtQuick basics. Qt's documentation is your friend here. Following topics will be helpful: http://doc.qt.io/qt-5/gettingstartedqml.html http://doc.qt.io/qt-5/qmlapplications.html http://doc.qt.io/qt-5/qtquick-index.html Now since your are mostly focussing on animations check out the following: http://doc.qt.io/qt-5/qtquick-usecase-animations.html http://doc.qt.io/qt-5/qtquick-statesanimations-topic.html JavaScript: javascript-environment-for-qml-applications check out the individual links under that topic http://doc.qt.io/qt-5/qtquick-usecase-integratingjs.html JSON: Since QML is based upon JavaScript so it supports JSON out of the box. Check this list of JavaScript Objects and Functions. Examples for usage of JSON http://doc.qt.io/qt-5/qtquick-demos-tweetsearch-example.html https://wiki.qt.io/JSONListModel XML: QML has eased the use of XML by providing XmlListModel and XmlRole Check out an example here http://doc.qt.io/qt-5/qtquick-demos-rssnews-example.html Apart from that I think you should also have a look at Local Storage support. QML has inbuilt support for SQLite database. Going further you may also feel the need to interact with QML from C++. Following topics should help you in that case: http://doc.qt.io/qt-5/qtqml-cppintegration-topic.html http://doc.qt.io/qt-5/qtqml-cppintegration-interactqmlfromcpp.html Later you may feel a need to be able to create QML object on the fly i.e at runtime to improve performance and other. Following will help you in that case: http://doc.qt.io/qt-5/qtqml-javascript-dynamicobjectcreation.html http://doc.qt.io/qt-5/qml-qtquick-loader.html To fine tune them: http://doc.qt.io/qt-5/qtquick-performance.html Also an important concept to go through and most frequently required is models and views. QML supports C++ models as well. For an overview http://doc.qt.io/qt-5/qtquick-modelviewsdata-modelview.html For usage of C++ models http://doc.qt.io/qt-5/qtquick-modelviewsdata-cppmodels.html and the QML inbuilt models http://doc.qt.io/qt-5/qtqml-models-qmlmodule.html Hope this helps you.
  • QComboBox Popup Issue

    4
    0 Votes
    4 Posts
    1k Views
    SGaistS
    Qt 5.1.1 being pretty old, is updating to a more recent version an option ?
  • Qt On Embedded Linux Command Line Options

    embedded linux
    10
    0 Votes
    10 Posts
    3k Views
    SGaistS
    Hi @imanpakii, It's indeed the wrong place, please do not highjack the thread of other people with unrelated questions.
  • Got some crashes on Android

    android
    1
    0 Votes
    1 Posts
    351 Views
    No one has replied
  • 0 Votes
    1 Posts
    889 Views
    No one has replied
  • Qt Quick output is displaying incorrectly after compile

    qtquick qt5 android
    12
    0 Votes
    12 Posts
    4k Views
    p3c0P
    @rostamiani Make use of the other Layout properties as described here. Set them for TextField and other items.
  • 0 Votes
    2 Posts
    1k Views
    p3c0P
    @rostamiani Yes StackView seems to be a good candidate.
  • disable network cache in iOS

    3
    0 Votes
    3 Posts
    1k Views
    M
    Surprisingly, I was able to fix this by clearing the native iOS cache: [[NSURLCache sharedURLCache] removeAllCachedResponses]; This call has effect on both native iOS networking and Qt network code. In order to use the above call you have to rename your file to *.mm and include <Foundation/Foundation.h>.
  • How to set ip address to a computer in Qt (Solved)

    32
    0 Votes
    32 Posts
    13k Views
    H
    QProcess Class is used to start external programs and to communicate with them. create a new QProcess and input args to /bin/sh. Below code has been tested working. Thanks to p3c0, if not, answer below will not be available : QProcess *myProcess = new QProcess; QStringList args; args<"-c"<<"sudo -S ifconfig eth0 192.168.100.1 < /var/passwd.txt"); myProcess->start("/bin/sh",args);
  • How to run QTWayland example (qml-compositor) as Standalone server?

    1
    0 Votes
    1 Posts
    477 Views
    No one has replied
  • Color reversal Qt Embedded and 24bpp

    4
    0 Votes
    4 Posts
    2k Views
    SGaistS
    RGB vs BGR is really not an endianness question, you can hit that problem with both. It's about how the data is stored. However the endianness can come up when transferring that data further down which is what might be hitting you. Anyway, glad you found a workaround