And by not working QtMobility examples, I mean Sensors API examples. Other QtMobility stuff I am using, seems to work fine.
Type: Posts; User: virne; Keyword(s):
And by not working QtMobility examples, I mean Sensors API examples. Other QtMobility stuff I am using, seems to work fine.
I am using Qt SDK 1.1.4 and I have tried Qt 4.7.4 for Symbian Belle (and for Anna just in case.)
And by not working QtMobility examples, I mean Sensors API examples. Other QtMobility stuff I am using, seems to work fine.
I am using Qt SDK 1.1.4 and I have tried Qt 4.7.4 for Symbian Belle (and for Anna just in case.)
It seems that some of the sensors are not supported on Symbian Belle when used through QtMoblity Sensors API. Or am I just doing something wrong? I am testing on Nokia 700.
So... I was porting...
Got it working! All I had to do, was to plug in another Symbian device with CODA installed. In my case it was Nokia 700. Qt SDK found it and debugging worked fine. After that I plugged in my E7 and...
Hi
I was experimenting with QDesktopServices with my app. (I was showing images through default viewer.) Something happend to OS, it came unresponsive and continued to do that after reboot....
Ok. Found the issue. Problem arises when password field is child of a top-level widget that is wrapped by QGraphicsProxyWidget. If I wrap just password field with QGraphicsWidgetProxy it works.
...
Well hmm.. Since you guys were saying that it works, I did small application that tries to replicate what my big app is doing - and - it worked! This however leads to question, what my big app is...
Our Qt app for Symbian^3 has a password field. It's a QLineEdit set up like this:
ui->passwordLine->setInputMethodHints(Qt::ImhHiddenText| Qt::ImhNoPredictiveText | Qt::ImhNoAutoUppercase);...
One option is to use some simple and easy to use JSON library like json-cpp. I have just added its files to Qt project and it compiles and works just fine on any target I have tried so far and that...
Our Symbian^3/Qt app just got through Ovi Store QA, but there was a comment:
If I have understood right, C7-00_01 is just a T-Mobile branded version of C7, also known as Nokia Astound, and I...
N8 has hardware accelerated graphics and generally animated graphics should run smoothly. But to my experience hardware acceleration, be it OpenVG or OpenGL, does bring some problems and...
To "stop connection" between signal and slot, there is disconnect.
In your case, code might look like this:
QObject::disconnect( ui->LineEdit, SIGNAL(selectionChanged()), this, SLOT(done()) );
It turned out that using ItemCoordinateCache wasn't bullet proof solution either. It sometimes caused use of QPainter outside paint event (happened also on Windows) and in some cases bounds were yet...
I added some fancy transitions to my app. Just animating position and rotation for QGraphicsTextItem and QGraphicsWidgetProxy that are in QGraphicsSCene in QGraphicsView.
On desktop version...
Yea. I installed it like that too. I did re-install my installed apps before that, but there were no nasty or experimental apps there that could have installed something nasty. I do have quite large...
Thanks a lot! This narrows problem strictly to device side, which was excepted.
And yes. I tried running it manually. Same error.
Could it be that reflashing didn't wipe out everything?...
That may be the case, but it might be some other libraries than Qt ones that are messing things up. Or it could be a bug in messaging that only happens in certain cases. For example I have quite a...
Yeah. I don't think problem is with the code or with Nokia Qt SDK. Problem must be in the libraries installed to device.
Minimalistic application that gives "Segmentation fault" on my N900.
mobtest.pro
QT += core gui
TARGET = mobtest
TEMPLATE = app
SOURCES += main.cpp
Reflashed device and installed QtMobility messaging 1.0.2 (apt-get install libqtm-messaging) and... well.. for first run with my test code I got no segmentation fault. That code didn't actually do...
I tried to retrieve messages with code similar to one in first post. I also tried QtMobility messaging examples with same error. (With N900 of course.)
I have latest Qt SDK (updated) and QtMobility...
I just tried this too and same result: "Segmentation fault"
QMessageManager::queryMessages seems to cause this with any input.
Also QMessageService::queryMessages causes "Segmentation fault", but...
I started to build old and quite big Maemo project from Qt SDK in Windows. (Before I've been using Scratchbox to build this project.)
My problem is packaging and therefore also deployment,...