Re: [Interest] Modifying the font metrics (leading and tracking) everywhere

2013-07-16 Thread Atlant Schmidt
Ruth: Thanks for your suggestions! Unfortunately for us: o It's not clear that the licensing of the font in question would allow us to make modifications to it. (It's a commercial font, not a FOSS font.) o FontForge doesn't successfully open the font.(1) You should

[Interest] QML Location in 5.1

2013-07-16 Thread Jason H
There is one module that is sorely missing in the 5.1 documentation. I am looking to get lat and long for iOS and Android. Is this possible yet?___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QML Location in 5.1

2013-07-16 Thread Blasche Alexander
Hi, QtLocation is not a released module as part of Qt 5.1. However there are plans to bring it back in 5.2 and later. At the moment it looks like the Positioning API (C++ and QML) is the first part that will come back. Maps, Navigation and Places will have to wait. On the subject of an

[Interest] void pointers

2013-07-16 Thread Phil Hannent
Hi, I have a codebase that is using a C library and Qt. I have some legacy code where structs from the C library are stored in a Qt/C++ class using: void *userData; Is this an example where I should replace the void * with a QSharedPointer or a QWeakPointer? Regards Phil Hannent

Re: [Interest] void pointers

2013-07-16 Thread Mandeep Sandhu
On Tue, Jul 16, 2013 at 9:19 PM, Phil Hannent p...@hannent.co.uk wrote: Hi, I have a codebase that is using a C library and Qt. I have some legacy code where structs from the C library are stored in a Qt/C++ class using: void *userData; Is this an example where I should replace the void *