Tagged Questions
4
votes
3answers
312 views
Programmatically requesting elevated rights in Linux
(This question has identical title, but question body asks it in scripting point of view, e.g. su -c, don't dupe this to that)
I have a Qt GUI app that needs to perform some file operations in /etc ...
4
votes
1answer
1k views
How to start Qt development on Windows, but targeting Maemo 5?
I've recently heard about Qt and read about how fun it is to develop with. By the way, I'm also buying a Nokia N900 and I heard that its operating system, Maemo 5, supports Qt quite nicely, so I ...
3
votes
1answer
80 views
Is it legal to use functions returning a temporary in initialiser lists
I have the following constructor of an object
Segment::Segment(QPointF const& start, QPointF const& end):
mOrigin(toVector3df(start)),mEnd(toVector3df(end)){
}
mOrigin is of type ...
3
votes
1answer
256 views
QListWidget on freemantle
I have a problem with QListWidget on freemantle (maemo, n900).
I want to use two QListWidget on same window and allow the user to pick on number in each window.
When the user use the second ...
3
votes
2answers
1k views
OpenCV with QT on Maemo 5 (N900)
Since the presentation by Eero Bragge at theAmterdam devdays about QT / QT-Creator I've been looking for an excuse to try my hands at mobile development. Now this excuse has arrived in the form of the ...
2
votes
1answer
164 views
Qt + OpenGL ES + N900
I am trying to develop a simple (?) application for N900 using Qt, but I don't even know when to start.
I want to tap anywhere in the screen, keep that position, render an object through OpenGL ES ...
2
votes
1answer
623 views
Qt: Mobility GeoLocation works on Simulator but not on N900
I use the following code to get GeoLocation for my app
QGeoPositionInfoSource *source = QGeoPositionInfoSource::createDefaultSource(this);
if (source) {
source->setUpdateInterval(1000); // ...
2
votes
2answers
317 views
Bring a window to the front in Maemo
I've got a Maemo (Qt) app that does some integration with the built-in media player via D-Bus. All the control functionality I need is complete, but I've got a requirement to show my application ...
2
votes
0answers
254 views
How can I package my qt application with Qt Creator in Nokia Qt SDK
I have written a simple qt application with qt creator, I have tested with PC simulation and N900 device, It's OK. Qt Creator created a .deb file in my mobile. but it can't be installed. The installer ...
1
vote
1answer
190 views
Relationship between Qt framework and Nokia 's meego-harmattan
I am a beginner to Maemo Development. Has Nokia N9 come with JVM? Some forums are saying
that it will come with dalvik VM. Is it true? If I want to develop Applications for Nokia N9(meego), I have to ...
1
vote
0answers
52 views
QMaemoListPickSelector not showing anything
Alright I tried using a QMaemo5ListPickSelector together with a QMaemo5ValueButton, but when I click on the button, a popup dialog box does come up, but it doesnt any list ..
Here is a picture of ...
1
vote
2answers
82 views
Strange compilation errors when I use Maemo5 specific Qt classes .. !
Hey guys .. I recently tried to use some Maemo5 specific classes (e.g. QMaemo5ListPickSelector, etc ..), and I'm getting some strange compile time errors ..
Here is a small code I was trying out:
...
1
vote
1answer
282 views
Qt Maemo resources screwed up in Scratchbox 1 for the armel target
When I compile my Qt Maemo application in Scratchbox 1, all of the image resources appear completely messed up and corrupted, and the program runs extremely slow. This only happens for the armel ...
0
votes
0answers
39 views
Creating deamon in maemo
I want to create non-GUI app in Qt and use it on Maemo 5 (Nokia N900).
The app will save data like current position to local Sqlite database.
So my question is how to create deamon on Maemo using ...
0
votes
1answer
74 views
QPainter width and height
Is there any chance to find out the size of the QPainter? I am using QPainter for drawing the whole graphic interface for a mobile app. The problem is that certain application overlay the window with ...
0
votes
1answer
62 views
Qt and “SGX Out of mem event” on Maemo
I'm still fighting with Qt and I managed to get an "SGX Out of mem event" on Nokia N900. It happens when I load some .obj models in my QGraphicsScene (usually after the fourth-fifth). Any idea on what ...
0
votes
1answer
1k views
ISO C++ forbids declaration of … with no type
Bad luck, I had to go back to c++ (I'm c# developer) and as a school project make an Qt mobile application for maemo..
I have my class declaration, but I get the error as follows ISO C++ forbids ...
0
votes
1answer
237 views
Dial a number and play a voice file instead of microphone input
1-we are trying to write an application which dial a number and play a voice file instead of microphone input. Is it possible in Maemo (N900)?
we can not find any ""Answering Machine " like program ...
0
votes
1answer
212 views
Maemo 5 Qt: how to capture frame (RGB) from first and second camera?
So (I havent tried yet) but it somehow seems that video for linux 2 will work... But I wonder is it possible to do such thing with for pure qt libs?
0
votes
0answers
63 views
Need help in setting the background of a QListPickSelector entry to an image
I'm using a QListPickSelector in my project and the idea is that it displays a set of images, rather than a list of strings .. Now I have tried using the setIcon() function, which works, but the image ...