[SOLVED] Read/write user settings
-
wrote on 18 Nov 2011, 12:27 last edited by
Thanks a lot, works now!
-
wrote on 18 Nov 2011, 12:40 last edited by
You're welcome. If the problem has been solved for you feel free to edit your initial post title and prepend "[Solved]" to it to indicate that there is a solution inside.
-
wrote on 22 Nov 2011, 12:18 last edited by
Hey, is there some way to save image to settings? I have path to the image, how do I save it now to Settings?
-
wrote on 22 Nov 2011, 12:40 last edited by
Try this :
@settings.setValue("General/Pixmap", pixmap ); // pxmap is QPixmap@I haven't tried it yet, let me knw whats happening :)
-
wrote on 22 Nov 2011, 12:46 last edited by
Thanks. How do I construct QPixmap in QML?
-
wrote on 22 Nov 2011, 12:48 last edited by
-
wrote on 22 Nov 2011, 12:51 last edited by
I'm still sort of confused. Is it possible to construct QPixmap in QML layer, or do I have to do something on C++ side as well?
-
wrote on 22 Nov 2011, 13:22 last edited by
A request from QML for image/pixmap is handled by the 'Image Provider ' class, in simple words.
Yes you have to implement the Image provider in C++.
-
wrote on 22 Nov 2011, 13:32 last edited by
Ok, thanks, I'll try to play with this idea.
-
wrote on 9 Jan 2012, 14:50 last edited by
Thank you for this excellent post!!
Cheers,
Jon -
wrote on 10 Feb 2014, 16:18 last edited by
Is the wrapper suppose to work out of the box and how do i make it work without qscopedpointer? Thank you
EDIT : Created a proper solution so anyone can answer to help future member