I am using a QWebview to display web pages. The initial page loads and is displayed successfully. However, when a certain link on the page is clicked, the new page fails to load and the webview...
Type: Posts; User: hclemson; Keyword(s):
I am using a QWebview to display web pages. The initial page loads and is displayed successfully. However, when a certain link on the page is clicked, the new page fails to load and the webview...
Ok, if I remove the event loop and hook up the slots as so ...
QNetworkReply *reply = networkManager->post(request, data); // perform POST request
QObject::connect(reply,...
That's what I'm trying to avoid while i'm testing. Using the event loop I can examine the response straight after the post has finished.
Unfortunately I can't use wireshark (company policy), so...
Event loop is created manually to help whilst i'm debugging - it'll be removed for the final version.
There are no HTTP headers appended to post data - all that is in the post data is the image file...
Solution: On the left hand bar, if 'Edit' is selected, then the Views menu is greyed out. If 'Debug' is selected, the views menu becomes active.
I'm having problems trying to post an image file to a server. I get the error "Missing or invalid file". I'm assuming its the way I've read the image file into the byte array, but i'm not sure.
...
It looks like they are switch off by default on the N8, so
w.setWindowFlags( w.windowFlags() ^ Qt::WindowSoftkeysVisibleHint );
was actually switching them on again. I should have added a check...
According to many posts and this link http://www.developer.nokia.com/Community/Wiki/Qt_Tips_n'_Trick_:_Hide_StatusPane to hide the softkeys you should do:
// Toggle softkey visibility...
I'm trying to view the callstack in my app. According to the documentation http://doc.qt.nokia.com/qtcreator-snapshot/creator-debug-mode.html#viewing-call-stack-trace I should go to Window > Views to...
It was the order of the elements under Item that I had got wrong. Moving the Loader element to the end of the Item solved the problem.
I'm trying to use the Loader element to load .qml pages. I've been following the documentation here http://doc.qt.nokia.com/4.7-snapshot/qml-loader.html
The problem i'm facing, is that when I set...
Well it looks like I have also fallen into the update trap. Downloaded the update from QtCreator, updated finished successfully, however after I restarted the computer QtCreator.exe has vanished....
Thanks for the reply. Can you think of any instances where you would develop for S60 5th Ed, as opposed to Qt? Are there any major limitations to Qt?
From what I have read so far, I think Qt is...
I've recently been asked to write a Symbian Application. I have previously done S60 app development, but I'm a couple of years out of date now. Now I've returned to Symbian, I see there are a lot...
Having just downloaded the Qt SDK, I fired up QtCreator and tried to run one of the sample projects using the Symbian Emulator.
The sample app wont run, and i get a large number of 'Missing...
Brilliant, that was it.
Hi,
I'm getting a panic when I'm trying to open a string.
RStringpool iStrPool;
iStrPool.OpenL(PROFILETABLE::Table);
RString category = iStrPool.String(PROFILETABLE::EConker,...
Thanks for the replies. Yes I mean the lens cover.
Unfortunatly that link was not helpful, unless its possible to get that information from HAL::Get()? But I can't see a TAttribute that...
Hi,
Is it possible to detect if the camera shutter is open or closed? I'm using the CCamera API. I can detect if cameras are available using
CCamera::CamerasAvailable()
but a phone may...
Thanks for the reply. I think the problem is with the actual database encoding. I tried programmatically creating my own database and inserting items that use special characters. When it came to...
Hi,
I'm trying to read some text, that contains special characters, from a SQLite DB. The problem that I am having is that the special characters are being read in incorrectly (\xFFFD is being...
Thanks for the reply. I've "cheated" by creating a nice svg circular graphic and blit that instead, as it has a much better finish.
Hi,
I'm trying to draw a smooth circle. I'm using CWindowGc::DrawEllipse, but its producing a rather raggedy edge. Is there anyway to apply a smoothing technique? Or use a different method to...
It was the view's Draw(). I had forgot to implement MakeViewClassInstanceL() - its been a long day :-)
Hi,
What framework function calls DrawItemText ?
The SDK documentation says that the view's Draw() will "Draws every visible item into the specified rectangle." But if I override this,...