Skip to content

Mobile and Embedded

The forum for developing everything embedded: Linux, WinCE, Symbian, MeeGo... you name it.
14.2k Topics 62.7k Posts
  • The best way to work with GStreamer

    2
    0 Votes
    2 Posts
    964 Views
    A
    The Qt Multimedia framework uses gstreamer-0.10 (latest version is 0.10.36) and on Linux only. If you need to build a multiplatform application then a better way will be to use Qt-Gstreamer. If you prefer to use gstreamer-1.0 (current version in 1.2.3) then you need to use gstreamer directly in your code or create your own library.
  • QtContacts in QT 5.2

    1
    0 Votes
    1 Posts
    631 Views
    No one has replied
  • Android OpenGL FBO multisampling (MSAA)

    3
    0 Votes
    3 Posts
    2k Views
    T
    It does not work with my android device. It stays non antialiased.
  • STL on android

    2
    0 Votes
    2 Posts
    2k Views
    M
    As a temporary solution, I manually linked against the libstlport_static.a library but this of course breaks if a different target arch is selected or something changes in android ndk paths. So, proper solution still welcome.
  • Standard file accesses within Qt framework

    3
    0 Votes
    3 Posts
    968 Views
    A
    I have already tried to use sound file into resources without success...that could be a good solution if it works, but on ios I don't know if it works too
  • Qt Enterprise Setup For Android Problems

    3
    0 Votes
    3 Posts
    2k Views
    S
    Hi, I have the same problem, and everything setting right, Android_NDK, Android_SDK. I don't what is wrong with Qt?
  • Deploying app to android : error: [install_itemfolder_01] Error 1 Windows

    2
    0 Votes
    2 Posts
    1k Views
    F
    I am not sure, but try to use a directory path without spaces "C:\Users\ryan\Desktop\Projects\Qt c++\build-Test-Android_for_armeabi_GCC_4_8_Qt_5_2_1-Release\android-build"
  • ShowMin/ShowMax window not working

    4
    0 Votes
    4 Posts
    2k Views
    mranger90M
    Ok. I can duplicate your problem on ubuntu 13.04 with Qt 5.1. The work around is to call activateWindow() after the call to showMaximized().
  • [Solved][Android] [Qt 5.2] Popup dialog doesn't close with touch/click

    10
    0 Votes
    10 Posts
    6k Views
    p3c0P
    I'm not sure if it is due to single window mode. It works perfectly on Linux too.
  • Android - using Local Storage

    5
    0 Votes
    5 Posts
    5k Views
    C
    Thank you very much! I was struggling with getting libQt5Sensors.so deployed to the device. Initially, adding "QT += sensors" did not help, but after a rebuild and a deploy it worked like a charm! [quote author="TioRoy" date="1385996729"]I've faced this problem too. Setting verbose log in "Deploy Configuration", shows QtCreator trying to including qmllocalstorageplugin, but it's removing later (dependency). Putting QT += sql in .pro resolve my problem. Deploy log..... . . . Appending dependency from xml: qml/QtQuick/LocalStorage/libqmllocalstorageplugin.so Appending dependency from xml: qml/QtQuick/LocalStorage/plugins.qmltypes Appending dependency from xml: qml/QtQuick/LocalStorage/qmldir . . . -- Skipping C:\Qt\Qt5.2.0RC1\5.2.0-rc1\android_armv7/qml/QtQuick/LocalStorage/libqmllocalstorageplugin.so. It has unmet dependencies: lib/libQt5Sql.so. . . . [/quote]
  • QAudioOutput on Android

    4
    0 Votes
    4 Posts
    2k Views
    GianlucaG
    Humm... I think you found a bug. File a bug report.
  • Issues with eventFilter

    21
    0 Votes
    21 Posts
    12k Views
    McLionM
    Need to pick this up again. The following should filter all MouseEvents while !bTouchActive, i.e. the GUI is hidden in my app. With the code below, the GUI still reflects the touches and another object has the focus after the GUI is turned back on. While the GUI is inactive it currently just should debug the cursor position where it has been touched but not "react" on the GUI. Funny enough, it does change the focus to a different object but it does not execute its press/release MouseEvent. What is wrong in the code below? @class MyApplication : public QApplication { public: MyApplication(int &argc, char **argv ) : QApplication(argc, argv) { } virtual bool notify ( QObject *receiver, QEvent *event ) { switch( event->type() ) { case QEvent::MouseButtonPress: case QEvent::MouseButtonRelease: case QEvent::MouseMove: case QEvent::MouseButtonDblClick: { if(bTouchActive) { qDebug("Touch/Mouse event type: %d", event->type()); } else { QMouseEvent *TEvent = static_cast<QMouseEvent *>(event); QPoint cursorPos = TEvent->globalPos(); qDebug("TouchInActive: TouchXpos %d, TouchYpos %d", cursorPos.rx(), cursorPos.ry()); return true; // return with true filters the event } break; } case QEvent::KeyPress: case QEvent::KeyRelease: { QKeyEvent *keyEvent = static_cast<QKeyEvent *>(event); qDebug("Key %d pressed, Event type: %d", keyEvent->key(), event->type()); break; // break does not filter and forwards the event to notify() } default: break; } QApplication::notify(receiver,event); return false; } }; @
  • I.MX6 Eglfs documentation

    2
    0 Votes
    2 Posts
    3k Views
    A
    There's no problem with using those, that wiki page just ignores the use case you have (overlaying something on top of some video) and instead talks about the simple case where you just want some (non-overlayed) content on a given screen.
  • Resolution Differences

    2
    0 Votes
    2 Posts
    751 Views
    GianlucaG
    It's seems that there is a mismatch from the tablet physical dimensions that Qt suppose and the real ones. In fact, on the basis of the physical dimension and the pixel dimension, the Qt will calculate the correct dimension for the visual items. Try to check out if the QScreen information reports exactly the real dimensions of the nexus 10. If not, file a bug.
  • Android QAudioProbe setSource fails

    2
    0 Votes
    2 Posts
    1k Views
    F
    Seems there is really no way to do that with Qt? Do you think its possible to do that by using native Java-Code with the help of the QAndroidJniObject Class? ( http://qt-project.org/doc/qt-5/qandroidjniobject.html ) If so, do you know any good example how to use this class?
  • QSplitter on Android

    2
    0 Votes
    2 Posts
    993 Views
    SGaistS
    Hi, Sounds rather like a bug, you should have a look at the "bug report system":http://bugreports.qt-project.org to see if it's something known.
  • Raspberry Pi deployment fails

    2
    0 Votes
    2 Posts
    985 Views
    K
    I found this error showing also: "Error while parsing file /home/kim/qtprojectz/slider-pi/slider-pi.pro. Giving up. Could not find qmake configuration file default." I think is not relevant.
  • Qt5.2.0/android Character display problems

    1
    0 Votes
    1 Posts
    873 Views
    No one has replied
  • C++11 and INCLUDE error in iOS

    11
    0 Votes
    11 Posts
    4k Views
    hskoglundH
    Neat, I should download 5.3 and give it a try. (It's easy to get tired of those longwinded method names in Objective-C, if Qt can give me 100% C++11 in iOS, that could save my fingers a bit of typing pain :-)
  • Qt5.1 QWidget application on Android 4 - Refresh problems

    18
    0 Votes
    18 Posts
    12k Views
    L
    By the way, I believe this was resolved with 5.2.0.