Hi
As title says, if I add for example XML file to my project as content. I can read it from code with XDocument. But I cannot see file with in Isolated Storage. Also, XDocument throws exception...
Type: Posts; User: jupaavola; Keyword(s):
Hi
As title says, if I add for example XML file to my project as content. I can read it from code with XDocument. But I cannot see file with in Isolated Storage. Also, XDocument throws exception...
Oh well, now it works and what I did:
Cleaned everything, all what could &would be generated under project dir. Uninstall QtSDK, download new QtSDK 1.2.
So, updating QtSDK from SDKMaintenanceTool...
No, I dont have any custom manifest files.
Project main is subdir project. It contains plugin project and QML project. Both manifests are empty, not done anything for those.
Hello,
QtCreator generated pro file contains this:
maemo5 | !isEmpty(MEEGO_VERSION_MAJOR) {
installPath = /usr/lib/qt4/imports/$$replace(uri, \\., /)
} else {
...
Who knows what is correct and/or suggested directory for installing QML declarative extension plugins ?
I'm using QtCreator's .pro file templates, so not modifying what it creates. And default is...
There might be point to show it and ways to interact it. Anyhoo, drawing own cursor could be one but since OS itself supports it, is there way to show it ?
And for the own drawing, how I can...
Symbian^3 atleast has support for connecting mouse to phone, works like in PC's and shows mouse pointer in screen. But how to and is there way to programmatically show mouse pointer in screen without...
Well, the thing in here is that draw image and it shows. I don't have and possibly hardly anyone has interest or time to tweak XML what is produced. Image just should work without coding it again...
Well, I managed to draw images now with Inkscape and converted to svgt. Problem seems to be with gradients. Some parts will show just fine but almost half of gradients what I used, didn't show in...
Stumbling with this too. All will suggest to create SVG icon, so I created. I used Inkscape but then, few line/polygons/what ever is fine but when you have more than few lines, image is not displayed...
Put this to dialog constructor:
#if defined(Q_OS_SYMBIAN)
this->showMaximized();
#else
this->show();
#endif
Hello
I have been reading LGPL/GPL Open source licensing, though I'm thinking to license software what I develope with those.
Anyway, for Qt this is straight forward, it can be and it's...
Do API's need more capabilities ?
http://doc.qt.nokia.com/4.7.1/phonon-module.html
Thanks, these opens quite a lot. So, I'm thinking now to host project code itself in FN Projects but delivery of binaries is by Ovi Store.
But but, also thinking licensing of the code. Because...
Hi,
Like topic says, I'm thinking to host my code in FN Projects. Software will be public, everyone can see code and then to use it if want. Is there problem when my application is done with...
What tools you are using ?
Carbide ?
Symbian SDK ?
Make QList, QButtons in it. Layout, connect and display.
QList<QPushButton*> m_buttons;
QHBoxLayout* layout = new QHBoxLayout;
for(int i=0;i<5;i++){
QPushButton* b = new QPushButton(...
No. But other way could be QListWidget, read directory contents and make thumbnail from each image and display to QListWidget.
Well, there is possibility to write LDD/PDD but security restrictions are quite heavy so needed capability with certificate might be out of the question. And anyway user space is quite enough to do...
Setup project to for example SourceForge and distribute your .sisx from there, maybe put even source code there. Only problem is now advertising, eg. how you tell people to download your app.
I assume you create iSocketServ with new but you don't need to do so. Just declare RSocketServ iSocketServ in header and then in constructor or somewhere else open it iSocketServ.Connect();
Forgot qmake before rebuild ?
And you should use #include <QDialog>
So you have SQL database on your computer and want phone to connect to it via internet ?
If yes, you need know your computer IP and connect to it.
Don't set screen size, use showMaximum() function in Qt, so framework will handle sizes.
Qt itself handles rest of the size and resizing.