Is there somewhere some tutorial or example on how to use Symbian libraries from Qt?
Type: Posts; User: tkatva; Keyword(s):
Is there somewhere some tutorial or example on how to use Symbian libraries from Qt?
Can I use these Symbian Crypto features with Qt? Does anyone know if Qt will have some ciphers implemented in future releases ?
I would like to implement a class as part of my application that would encrypt given string using AES. This application should run on Symbian 3 devices, so the targeted Qt framework would then be...
I have few questions regarding N8 and Qt Mobility... Which version of Qt Mobility is installed to N8? Or is there any? Does Qt Mobility 1.0.2 support Map and Location APIs?
Yes I know that Mobility 1.1.0 has APIs to Maps etc... Problem is that I don't know how to install it to use with Qt Creator and I believe that even the modern Symbian phones do not have Mobility...
I have another thread on this forum on how to use Qt Mobility with Qt Creator, so every input to that would be also appreciated.
But my question on this thread is regarding maps... Has anyone...
I've used example project where all things you mentioned have been done. But still I get cannot compile the project because QtCreator says that Qt Mobility classes are missing... Could someone who...
Hi
I would like to develop apps to Nokia phones but is not made easy... I'm getting desperate and almost ready to switch to Android.
I didn't find any good documentation on how to use Qt...
Hi
I'm new in whole Qt development but I was wandering is there any good tutorials on Nokia Map api. What i'm interested in is that I could add my own "pins" or places on interest on Nokia map,...
I'm confused... When I tried to connect to a url with QNetworkAccessManager when there was only TLS available I didn't even get any SSL-errors, but I get RemoteHostClosed-error. After I enabled SSL3...
In my previous post I wondered why my Nokia client could not connect to my server using https. After many days of wondering I found out that in the server the SSL3 was not enabled. There was only...
This was solved, it appears that the server wasn't implementing the SSL3
I've narrowed down the problem... I've deployed my web (rest) application without ssl, as a plain http. Then the httpClient-class works. But if I use https (without valid certificate -> self signed...
The specific error which I receive is :
QNetworkReply::RemoteHostClosedError
Im trying to make client that connects to my own "service" with self-signed certificate. I have managed to get this working but now somehow it doesn't work.
I have following class:
...
It helped... I removed ui_xxx.h file and it got recreated. Now the changes are shown. Thanks...
This is really annoying bug... Even if I delete the build files, run clean and rebuild commands, still the same "old" ui is shown...
Yes, this is the entry : FORMS += mainwindow.ui . It looks the same like the other entries
Hi
I have a problem when I modify my ui form in Qt Creator 2.0.1: When I change form in design view everything looks fine but when I run the application the form is not changed. I removed some...
I think the problem is that the TtValueHolder-class does not have copy constructor. I do not yet fully understand copy constructors so how would you create copy constructor for class having a QMap as...
I have a method in which I add a class to a Vector. But the adding creates Segmentation Fault.
I pass the Vector as a pointer but I don't understand why I cannot append objects to it.
Here's the...
I am trying to figure out where are threads necessary and how do I update progressbar without thread? I am trying to learn Qt so if I would try avoid everything that is difficult, I wouldn't started...
The asynchronous model is good but it is difficult to use with threads (at least for me... ;) What if I would like to update progressbar as long as the Http call hasn't received reply? Would I need...
Im am trying to do a simple test where user clicks button and it kicks of an new thread, which makes http get to specified url. If I make this call from the UI it works fine. But if I make this call...
Sorry, I didn't add the correct build configuration... Now everything works... ;)