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
  • GlCopyTexImage2D() results in black image on iOS but works on Desktop

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to call non-static Java method in QtActivity from C++/Qt

    3
    0 Votes
    3 Posts
    7k Views
    J
    me too.
  • [Solved] LocalStorage with custom path & android

    4
    0 Votes
    4 Posts
    3k Views
    C
    Solved. Assets file system seems to be readonly. So: @ #if defined(Q_OS_ANDROID) && !defined(Q_OS_ANDROID_NO_SDK) QString dbPath = QString("assets:/") + QtQuick2ApplicationViewerPrivate::adjustPath(path); QString hash = QString("c32516babc5b6c47eb8ce1bfc223253c"); QDir dir(QString(".")); dir.mkpath(QString("./Databases")); QFile dbFile(dbPath + QString("/Databases/") + hash + QString(".sqlite")); if (dbFile.exists()) { QString newDbName = QString("./Databases/") + hash + QString(".sqlite"); dbFile.copy(newDbName); QFile::setPermissions(newDbName, QFile::WriteOwner | QFile::ReadOwner); } QFile iniFile(QString("./Databases/") + hash + QString(".ini")); iniFile.open(QIODevice::WriteOnly); iniFile.write("[General]\nDescription=Catalog\nDriver=QSQLITE\nName=Catalog\nVersion=1.0"); iniFile.close(); engine()->setOfflineStoragePath(QLatin1String(".")); #else engine()->setOfflineStoragePath(QtQuick2ApplicationViewerPrivate::adjustPath(path)); #endif @
  • Module "QtWebKit" is not installed

    4
    0 Votes
    4 Posts
    3k Views
    SGaistS
    You're welcome ! I know they can be surprising but Apple/Google don't necessarily make them easy to find.
  • How to get unix signals into Qt? (Embedded Linux)

    13
    0 Votes
    13 Posts
    24k Views
    S
    It's because the compiler does not know that one of your classes is now QObject-inherited. Either rebuild the whole project from scratch, or modify your *.pro file (e.g. by typing a letter and deleting it) and then recompile. [quote author="lanmanck" date="1368066317"]I found it cannot inherit from QObject, the complier will report an error:undefined reference to vtable for XX. Have you guys found this?[/quote]
  • Qt 5.2.1 & JNI & Android, some basic questions

    1
    0 Votes
    1 Posts
    996 Views
    No one has replied
  • Adding website links to application for android.

    2
    0 Votes
    2 Posts
    794 Views
    p3c0P
    Hi, You could use a QLabel to a set HTML text to it. For eg. @ new QLabel("<a href='http://www.google.com'>Google</a>"); @ and then connect its signal "linkActivated":http://qt-project.org/doc/qt-4.8/qlabel.html#linkActivated to a slot where you can use "openUrl":https://qt-project.org/doc/qt-5.0/qtgui/qdesktopservices.html#openUrl to launch your URL. On android it should launch the browser.
  • Understanding the programming languages and activity lifecycle in Qt

    3
    0 Votes
    3 Posts
    2k Views
    H
    Hello Gianluca, thanks for your post, it helped me a lot! Currently I am using QtQuick for the layout and c++ for the logic. QtQuick seems to be very easy for creating layouts. (Without one line c++ :P )
  • Problem in launching browser on Boot to Qt installed on BeagleBoard

    2
    0 Votes
    2 Posts
    812 Views
    SGaistS
    Hi and welcome to devnet, Boot to Qt is enterprise product, you should rather contact Digia directly for support as most users on this forum don't have access to it.
  • Playing external video from Qt ( inside/outside or Qt window)

    7
    0 Votes
    7 Posts
    3k Views
    A
    Regarding gstreamer with opengl. There are "Gstreamer OpenGL plugins":http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-gl-plugins/html/ but they are for gstreamer 0.10
  • ASCII to EIA Level conversion in qt

    5
    0 Votes
    5 Posts
    2k Views
    Q
    HI, sorry for ignorance but what kind of device is your Time Code Readers? And how do you connect it with PC?
  • No title bar when using Qt 5.1.1 with DirectFB on Embedded Linux platform

    2
    0 Votes
    2 Posts
    2k Views
    P
    I'm also facing the same issue. Is there any solution available for this ? Further to this I see that Qt with DFB plugin is drawing on a fixed co-ordinates of 640x480. I don't get full-screen, though my frame buffer is 1280x720.
  • [SOLVED] Connection to QVNC server

    2
    0 Votes
    2 Posts
    2k Views
    S
    Found the way to make it works. Have rebuild Qt with this configure: ./configure -opensource -confirm-license -no-qt3support -qt-zlib -no-libtiff -qt-libpng -no-libmng -qt-libjpeg -embedded arm -xplatform qws/linux-arm-gnueabi-g++ -little-endian -qt-freetype -no-opengl -qt-gfx-vnc -qt-gfx-linuxfb -depths 8,16,18,32 -qt-kbd-tty -qt-kbd-linuxinput -qt-mouse-linuxinput
  • Remote debugging with telnet instead of ssh

    1
    0 Votes
    1 Posts
    923 Views
    No one has replied
  • Qt on Android: how to send email with attachment

    7
    0 Votes
    7 Posts
    7k Views
    G
    Thank you for info!
  • Example framebufferobject2.pro can not be parsed

    1
    0 Votes
    1 Posts
    526 Views
    No one has replied
  • LIBUSB_ERROR_ACCESS (Android)

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • QCamera does not record on Android

    1
    0 Votes
    1 Posts
    672 Views
    No one has replied
  • Black Screen Issue [Android Qt 5.2]

    2
    0 Votes
    2 Posts
    2k Views
    D
    I have the same problem. But after black screen, program work normally.
  • Custom keyboard driver on embedded linux

    4
    0 Votes
    4 Posts
    3k Views
    F
    I finally found a way to make my application load the keyboard driver. I was trying to load the keyboard driver plugin using qmlviewer to show my applycation on screen. If I create a cpp application and use it (and qmlapplicationviewer) to load my QML it loads the driver correctly and my keyboard works! Apparently qmlviewer does not handle keyboard driver correctly. Thank you for your support.