http://www.developer.nokia.com/Community/Wiki/Detecting_virtual_keyboard_open_and_close_events_in_Symbian%5E3
Note that it's supposed to work also directly by using /ps/<uid>/<key> as the value...
Type: Posts; User: treinio; Keyword(s):
http://www.developer.nokia.com/Community/Wiki/Detecting_virtual_keyboard_open_and_close_events_in_Symbian%5E3
Note that it's supposed to work also directly by using /ps/<uid>/<key> as the value...
OK, so you're trying to display a note/license agreement that the user must accept, and the smart installer UI is blocking it? It does sound like a bug.
The easiest solution would be to just...
Correct, translations to all supported languages are expected for all strings in the .pkg file.
It's doable, but you need to override the default_deployment variable and provide your own...
More specifically, the TARGET qmake variable defines the name of executable file. By default, qmake derives also the display names (package name, application caption (short name) under the icon,...
I think I understand your problem, but I cannot reproduce it at least with a trivial test code. For me, this produces correct results ('Mouse' gets inserted under 'Small' section):
...
This may depend on multiple things; the volume of your audio samples, the number of audio sources used in the GE mixer, and also the version of your Qt Mobility installation.
GameEnabler uses...
Hi,
There is a Qt Multimedia Developers Guide available here:...
Hi,
A possible Symbian-specific solution is in this thread:
http://www.developer.nokia.com/Community/Discussion/showthread.php?228222-Symbian-3-how-to-pick-a-photo
To use it with QtQuick,...
Hi,
Try adding
CONFIG(release, debug|release): DEFINES += QT_NO_DEBUG_OUTPUT
to your .pro file.
In real time? That would mean you'd need to have two active audio streams, one for recording and one for playback (full-duplex). While possible on Symbian, QtMultimedia doesn't allow the...
Try with
QDesktopServices::openUrl(QUrl::fromLocalFile(path_to_image));
However, you cannot pass images from your application private folder for the gallery to display. Consider using...
No. The Qt SDK has everything you need.
Ok. Try this minimal implementation and see if it works for you: http://pastebin.com/WwRt943i
Do not install two versions of the Qt SDK (re-read the the last sentence of the text i quoted). You must not have the latest SDK 1.2 installed (at least for the same Windows account).
This should...
Hi,
You'll need Qt SDK version 1.1.2, available here, which is the last version of the SDK that supports Qt 4.6.3 development for Symbian 3rd Edition phones.
As noted on...
Hi - your code looks ok. Which version of Qt are you using? Which device are you testing this on?
Either stop using QScopedPointer for the viewer, or use viewer.data() for connecting the slot. Also, remember to #include <QGraphicsObject>
Yes, typically it's best to declare all the elements needed in both orientations in a single qml layout and just control the visibility/opacity and coordinates with the help of states. This is...
Hi,
It's probably just that when using a mobile access point, you get assigned an IP address that doesn't always resolve to any specific country code.
Perhaps you could combine your method with...
Here you go.
However, there's actually a better way to do this, no need to install additional event filters or reimplement event handler functions. QApplication provides a focusChanged() signal...
I don't know how J2ME's 'suspended' state translates for Symbian apps... your application will continue to run in background. Maybe that's what you want to track (foreground/background status)?
In...
Here. No capabilities required.
Hi,
There's also the expanding delegates example that has something similar what you're trying to do. Basically, you can just declare two states for your delegate, one that show only the heading,...
Hi,
Qt Mobility / SystemInfo has ScreenSaver QML element that should help here.
.pro file changes:
CONFIG += mobility
MOBILITY += systeminfo
I have no experience with disabling swipe controls, but apparently others have had the same problem. See here for a possible workaround.
Edit: as a reminder, a note from the screen.allowSwipe...