Re: [Interest] QtCreator complains about .pro file could not be parsed for Qt5

2013-11-12 Thread Koehne Kai
-Original Message- From: interest-bounces+kai.koehne=digia@qt-project.org [mailto:interest-bounces+kai.koehne=digia@qt-project.org] On Behalf Of liang jian Sent: Tuesday, November 12, 2013 8:48 AM To: interest@qt-project.org Subject: [Interest] QtCreator complains about .pro

Re: [Interest] QtCreator complains about .pro file could not be parsed for Qt5

2013-11-12 Thread Damian Ivanov
Had the same issue Yesterday on openSUSE. Deleted $HOME/.config/qtcreator = no result ; installed Qt from installer into different directory = no result Reinstalled OS = works 2013/11/12 liang jian jianlian...@gmail.com: Hello everyone, I have a very simple .pro file:

Re: [Interest] QtCreator complains about .pro file could not be parsed for Qt5

2013-11-12 Thread Thiago Macieira
On terça-feira, 12 de novembro de 2013 15:47:58, liang jian wrote: Qt5 in my machine is built by myself, I got the source from git and checkout to stable branch. You need to upgrade Creator. There was a change in Qt 5 that the parser in older versions of Creator cannot handle. --

[Interest] R: R: Replicate QML Listview in QtCpp and widgets

2013-11-12 Thread Simone
Hello Clément, thank you, it is a very interesting article. I will try Thanks a lot Bye Simone Da: Clément Geiger [mailto:clement.gei...@gmail.com] Inviato: martedì 12 novembre 2013 08:47 A: Simone Cc: Alan Alpert; interest@qt-project.org Oggetto: Re: [Interest] R: Replicate QML

[Interest] Why do we have to wire up all the signals ourself in QAbstractProxyModel subclasses?

2013-11-12 Thread Philipp Kursawe
It seems a QAbstractProxyModel subclass is useless and not working properly if you not connect all the source models signals as forwarding signals in setModel(). I saw the QSortFilterProxyModel does all this connecting and disconnecting too. Shouldn't this be in the QAPM class in the first place?

Re: [Interest] QtCreator complains about .pro file could not be parsed for Qt5

2013-11-12 Thread liang jian
Thank you for all the replies! On Tue, Nov 12, 2013 at 4:15 PM, Thiago Macieira thiago.macie...@intel.comwrote: On terça-feira, 12 de novembro de 2013 15:47:58, liang jian wrote: Qt5 in my machine is built by myself, I got the source from git and checkout to stable branch. You

[Interest] Very slow start-up on MacOS

2013-11-12 Thread Marc Freese
Hello, I hope this is the right place to post this, I was encouraged to do so here. Following is a bug in Qt5 I believe: On MacOS Snow Leopard and MacOS Mavericks (MacOS Lion (10.7.3), Windows and Linux work fine): When my application starts, it takes about 60 seconds, where it normally

[Interest] QtLocation Build issue with Qt5.2 Beta

2013-11-12 Thread Ramakanthreddy Kesireddy
Hi, I find qtlocation sources in Qt5.2 Beta release though I understand qtlocation is not part of official Qt5.2 Beta release. However, when I tried to build the qtlocation sources from git, it gives the below error. administrator:~/home/qt-everywhere-opensource-src-5.2.0-alpha/qtlocation$

Re: [Interest] QtLocation Build issue with Qt5.2 Beta

2013-11-12 Thread Blasche Alexander
It looks like your qmake is incompatible/old. You are running qmake in your path. Are you sure you are using the qmake in /home/administrator/qt-everywhere-opensource-src-5.2.0-alpha/qtbase/bin? You can check its version by running qmake -query. -- Alex From:

Re: [Interest] Very slow start-up on MacOS

2013-11-12 Thread Rutledge Shawn
On 12 Nov 2013, at 12:47 PM, Marc Freese wrote: Hello, I hope this is the right place to post this, I was encouraged to do so here. Following is a bug in Qt5 I believe: On MacOS Snow Leopard and MacOS Mavericks (MacOS Lion (10.7.3), Windows and Linux work fine): When my

Re: [Interest] Why are selections not preserved in QListView when resorting?

2013-11-12 Thread André Somers
Philipp Kursawe schreef op 12-11-2013 13:46: There seems to be no concept of selection preservation in QListView (an probably other QAIViews). When I select the second element and then re-order the list, the selected item is still the second (index) but models data on index 2 is not the

[Interest] (QQmlListProperty) Cannot assign to non-existent property lon lon: 3

2013-11-12 Thread Anisha Kaul
Greetings, I wish to see how [B]QQmlListProperty [/B] is used. I tried the following but I am not sure if this is the correct way to do it. I got an error shown as follows: Cannot assign to non-existent property lon lon: 3 ___aa.h___ [CODE] #ifndef IMO #define IMO #include QQmlListProperty

[Interest] Qt5 Dependencies

2013-11-12 Thread Ramakanthreddy Kesireddy
Hi, Please let me know the dependencies of Qt5 Beta on Pulseaudio and tds on X based system. Also let me know how to verify if Xcb platform plugin is available on target board filesystem. Thanks and Regards, Ramakanth DISCLAIMER: This email (including any

Re: [Interest] Why are selections not preserved in QListView when resorting?

2013-11-12 Thread Bo Thorsen
If you need to do this, it's actually not hard to do. Catch the sort just before it happens. Grab the current selection. Map the indexes to the source model. Sort. Remap the indexes to the new selection. Apply to the view. It might look at bit complicated in text, but the code is

Re: [Interest] Why are selections not preserved in QListView when resorting?

2013-11-12 Thread Philipp Kursawe
I imagine, as often, its not a lot of code, but I wonder why this basic, expected behaviour is not in all the selectable views in the first place? I like to use PersistentIndex a lot in my background data update code, so I will try to come up with a solution here. I will post the code later. On

Re: [Interest] Why are selections not preserved in QListView when resorting?

2013-11-12 Thread Scott Aron Bloom
The reason its not there… is spelled QML… From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Philipp Kursawe Sent: Tuesday, November 12, 2013 7:09 AM To: interest@qt-project.org Subject: Re:

Re: [Interest] QPrinter Support on Android

2013-11-12 Thread Joshua Grauman
FYI: I got a response from Bogdan, and he said that basically it was just disabled to get it to compile in hurrying to get Android support working in Qt5.2. However, he did say that with Android 4.4 (KitKat) having proper print support, he's hoping to have print support in Qt5.3/Android...

[Interest] How QtQuick for Qt 5.2+ handles opacity/visibility

2013-11-12 Thread Preet
Hi, In the interest of performance, if I have a Rectangle that I don't want to be rendered when its completely transparent (but otherwise want it to act like an Item -- assume it doesn't have any children) is there any difference between the following?: case 1: Rectangle { height: 50; width: 50;

Re: [Interest] Expect for Qt?

2013-11-12 Thread Scott Aron Bloom
QProcess works fine for telnet and ftp, you need to connect the input and output pipes in order to send data into it. Scott -Original Message- From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of

Re: [Interest] Why are selections not preserved in QListView when resorting?

2013-11-12 Thread André Somers
Scott Aron Bloom schreef op 12-11-2013 16:36: The reason its not there... is spelled QML... Nonsense. It is not like selection policies got much love in QML either. André *From:*interest-bounces+scott.bloom=onshorecs@qt-project.org

Re: [Interest] Why are selections not preserved in QListView when resorting?

2013-11-12 Thread Scott Aron Bloom
How many improvements to the Widget side of things, such as selection policies, has gone on in the last 2+ years :( From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of André Somers Sent: Tuesday,