Re: [Interest] bluetooth profile

2014-08-17 Thread Blasche Alexander
> -Original Message- > From: interest-bounces+alexander.blasche=digia@qt-project.org > [mailto:interest-bounces+alexander.blasche=digia@qt-project.org] On > Behalf Of Ahmet Dogan > I have seen how to set and add new service in bluetooth chat example but > it has just add service is

[Interest] QThreadPool & writing to the DB

2014-08-17 Thread Igor Mironchik
Hi. I want to move write to DB operation to another thread (from the GUI thread). And I implemented the following QRunnable: SourcesLogWritter//class SourcesLogWritter : public QRunnable{public:SourcesLogWritter() { setAutoDelete( false ); } void setD

Re: [Interest] Windows Phone & landscape orientation

2014-08-17 Thread Alexander Ivash
Thank you for the reply, now it is clear that implementing landscape in portrait via rotation is the only way. Initial experiments showed that its possible to do so, although a lot of places needs to be updated (at least using approach from here http://developer.nokia.com/community/wiki/Display_por

Re: [Interest] Custom .prf files for QMake in project root?

2014-08-17 Thread Elvis Stansvik
2014-08-17 21:59 GMT+02:00 Filip Piechocki : > Haven't tested this on Qt5 but on Qt4 we were using: > qmake -set QMAKEFEATURES /path/to/prf/files > > and put all prf files in the /path/to/prf/files directory. Main downside > of this is that you have to set this qmake variable - so just shipping >

Re: [Interest] Custom .prf files for QMake in project root?

2014-08-17 Thread Filip Piechocki
Haven't tested this on Qt5 but on Qt4 we were using: qmake -set QMAKEFEATURES /path/to/prf/files and put all prf files in the /path/to/prf/files directory. Main downside of this is that you have to set this qmake variable - so just shipping custom prf files is not enough, you have to force the dev

Re: [Interest] Custom .prf files for QMake in project root?

2014-08-17 Thread Thiago Macieira
On Sunday 17 August 2014 18:23:13 Elvis Stansvik wrote: > 1) What is this cache file? I can't remember ever seeing that on Linux or > Windows. It's a file called .qmake.cache. There are lots of those in the Qt build. > 2) Why is QMake only loading the .prf files in the project root if there's > a

Re: [Interest] Custom .prf files for QMake in project root?

2014-08-17 Thread Elvis Stansvik
2014-08-17 18:23 GMT+02:00 Elvis Stansvik : > Hi folks, > > According to point 3 in the second list at [1], I should be able to put my > own .prf feature files for QMake in the project root. > > I tried putting my foo.prf in features/win32/foo.prf with a simple > message("foo.prf loaded") in it, b

[Interest] Custom .prf files for QMake in project root?

2014-08-17 Thread Elvis Stansvik
Hi folks, According to point 3 in the second list at [1], I should be able to put my own .prf feature files for QMake in the project root. I tried putting my foo.prf in features/win32/foo.prf with a simple message("foo.prf loaded") in it, but it was not loaded by QMake. I then took a look at the

Re: [Interest] Windows Phone & landscape orientation

2014-08-17 Thread Knight Andrew
Alexander Ivash wrote: > How to specify landscape orientation for Windows Phone app? On Windows Phone 8.0, you can't do this in Qt apps (or native apps in general, unless you implement rotation yourself). This has been fixed in WP8.1 in the upcoming Qt 5.4; apps automatically rotate by default.