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
  • Queued signals / slots help

    10
    0 Votes
    10 Posts
    8k Views
    S
    Well after some quick learning about QSignalSpy (which is very neat!) I've managed to instrument everything and there's something weird going on... It seems that the worker thread stops processing signals/slots at some point during the run, nothing is blocking in the thread as far as I can tell and if the worker thread has a simple QTimer in it the signals keep being processed! I think it's an underlying WinCE problem but it's very odd! Anyway, thanks for the help above.
  • QtMobility Camera example with webcam?

    6
    0 Votes
    6 Posts
    8k Views
    D
    Well, my point was only that Qt Mobility, despite it's name, is not completely tied to mobile devices or mobile systems. :)
  • Qt 4.7.1 problems on Symbian^3 emulator

    18
    0 Votes
    18 Posts
    11k Views
    X
    That's for QtCreator chetank... Doesn't really show anything we aren't already doing :P I did that stuff the day Qt4.7.1 came out.
  • Service Framework - invoke signal on server side

    2
    0 Votes
    2 Posts
    3k Views
    B
    Can you provide a more complete example?
  • OOM Data Manager and Mem Monitor Migration Path

    8
    0 Votes
    8 Posts
    5k Views
    W
    [quote author="GordonSchumacher" date="1292033566"]Do any Android and M(aem|eeG)o devices actually have swap?[/quote] I don't own any android devices, so I can't comment about those, but Maemo5 (and I would guess all earlier Maemo releases) have swap, and both MeeGo handset and netbook profiles have it enabled, yeah.
  • [Moved] how to use Qt in symbian mobile

    6
    0 Votes
    6 Posts
    6k Views
    L
    thanks all for your attention. It's so nice.
  • Opening sis application from homescreep wrt

    9
    0 Votes
    9 Posts
    4k Views
    D
    hi, Sorry for delay I was out of station for some urgent. I have tried the way QTK said, and that worked like a charm, thanx for that mate. The only problem I am getting is I getting two icons for both application, I mean sis file and wrt file, The application is one , Is there any way I can remove one icon, or in other way to say is , Is there any way I not put the app icon in application folder? Thanks.
  • Get rid of Symbian-specific "active widget" frame.

    10
    0 Votes
    10 Posts
    5k Views
    F
    Okay, thanks for the report. :)
  • Screen flickers, double frame buffer?

    8
    0 Votes
    8 Posts
    8k Views
    F
    Ok. Great (that it wasn't Qt issue, too bad for your HW).
  • Ovi Store publishing

    8
    0 Votes
    8 Posts
    6k Views
    K
    [quote author="xsacha" date="1291911324"]If it has basic capabilities and you just want to put it on the Ovi Store, there is no signing process. In the Content Item, just upload the unsigned app with the provided (from Nokia's email) UID that you used to compile it. Note that Qt apps have to use SmartInstaller. This used to be fairly complicated but QtCreator 2.1 handles all of the work for you now. It has fields for dev cert/dev key/UID3/SmartInstaller when you create the project.[/quote] If you self sign the application - a warning message would be shown to the user. If you are ok you can skip symbian signing for apps with basic capabilities.
  • [Solved] QPropertyAnimation not working on maemo5 ?

    4
    0 Votes
    4 Posts
    4k Views
    S
    It was a problem with QString to float conversion in my code, I had to do this: @ //t1 and t2 is QStringList's #ifdef Q_WS_WIN targetpoint1 = new QPoint((t1[0].toFloat()*32),(t1[1].toFloat()*32)); targetpoint2 = new QPoint((t2[0].toFloat()*32),(t2[1].toFloat()*32)); #endif #ifndef Q_WS_WIN targetpoint1 = new QPoint((t1[0].replace(",",".").toFloat()*32),(t1[1].replace(",",".").toFloat()*32)); targetpoint2 = new QPoint((t2[0].replace(",",".").toFloat()*32),(t2[1].replace(",",".").toFloat()*32)); #endif@ I don't know if there is a better solution to this..
  • [solved] Qt conflict with SDL on libpng?

    8
    0 Votes
    8 Posts
    6k Views
    G
    Gordon, the link is broken - it points to an non-existing page. Maybe a typo?
  • Any info on when to expect Qt 4.7 support on OVI Store for N8

    4
    0 Votes
    4 Posts
    4k Views
    K
    [quote author="mario" date="1291903011"]Yeah, I need my QML to create UIs :)[/quote] You can create it now, but will have to wait to publish it to OVI. May be by the time you are ready with your app - ovi would support QML apps.
  • 0 Votes
    4 Posts
    3k Views
    K
    Although not completely relevant, but you can still refer to "this":http://www.forum.nokia.com/info/sw.nokia.com/id/97e9b8e0-904c-4141-bb8a-91d4f519735f/Maemo_5_Desktop_Widget_UI_Guidelines.html document on desktop widget UI guidelines for Maemo.
  • Error: A data abort exception has occurred

    21
    0 Votes
    21 Posts
    16k Views
    H
    Hi,amppa. Now I have the problem is that I can't play mp3 via network. I can play local mp3 using Phonon or QMediaPlayer of Qt Mobility.
  • Qml and Qt gui controls

    8
    0 Votes
    8 Posts
    8k Views
    W
    [quote author="Bradley" date="1291882027"] [quote author="Wolf P." date="1291881681"]...BTW: I added a tag "all-purpose qml":http://developer.qt.nokia.com/search/tag/all-purpose+qml for collecting QML vs. traditional questions...[/quote] I don't understand how "all-purpose" refers to QML vs widget-based UIs. [/quote] I seached for a tag addressing the comparison between QML and "traditional" UI programming. maybe qml vs widget-based would fit better, where "widget" means two ways: using ui files programming UI in C++ Maybe we start better a wiki article to collect informations about this complex decisions. since we have not combined tag search, tags combining word are useful. I'm no trying with "qml vs widget" :)
  • Pan and swipe gesture in Qt on Nokia N8 device

    7
    0 Votes
    7 Posts
    9k Views
    J
    In a similar vein, and using nearly identical code to that above, i'm trying to get my N8 to recognize a long press (QTapAndHoldGesture). I've tested this on Windows using the simulator and it works just fine with no activity until the Hold expires. However, when I try this on the N8 the timer never seems to fire (QT 4.6.x by the way). Here's the behavior i'm experiencing: If I lift off before the Hold period expires I receive the cancel. If I lift off after the Hold period expires I receive the gesture If I don't lift off then nothing happens If I move out of the hot spot i receive a cancel - Then a started & finish event as I lift off. Given this works on the simulator (qt 4.7.x) I'm guess it's a problem with Qt 4.6? Any help would be gratefully appreciated
  • [Moved] Beginner for program N8 v3

    5
    0 Votes
    5 Posts
    6k Views
    R
    Hi, I am also new to Qt...was gonna ask this same question here. @above - thanks for the links. will check
  • Resulting executable file was too large (Windows Mobile)

    10
    0 Votes
    10 Posts
    6k Views
    F
    Thanks. So it will still consume a lot of memory during runtime anyway. What I'm looking for is real small size. [quote author="Gerolf Reinwardt" date="1291809998"]With upx you compress the excutable, not the setup. So the resulting executable stays smaller. If it is uncompressed, then during runtime, not during installation.[/quote]
  • Custom style for a QTableWidgetItem

    9
    0 Votes
    9 Posts
    14k Views
    G
    But you only have objects, if you use QTabelWidget, what do you do with QTabelView (which is the defacto base)? I think, QTableView should be used more that QTableWidget, especially, as it allows custom models. So you would need to specify dataRoles in the style sheet to get the needed info to style the item. That would get really strange I think.