[Interest] Qt mailing list migration

2015-03-16 Thread Järvenpää Petri
Hello, We are migrating the mailing list server on Wednesday 18th of March around 09:00 EET. The change should be invisible to the normal user, but maintenance break of some sort is always possible. If you notice problems afterwards or have questions please contact : mika.hiekkam...@digia.com

[Interest] QTreeWidget with fixed or min row height

2015-03-16 Thread Duane
I'm trying to set up a tree widget where I can resize the column width to content but maintain a fixed row height. I have a custom delegate which I use to paint cell borders and I've added an overload to QSizeHint for this. I've also tried just setting the size hint but in either case column

Re: [Interest] QTreeWidget with fixed or min row height

2015-03-16 Thread Bo Thorsen
Den 16-03-2015 kl. 17:47 skrev Duane: I'm trying to set up a tree widget where I can resize the column width to content but maintain a fixed row height. I have a custom delegate which I use to paint cell borders and I've added an overload to QSizeHint for this. I've also tried just setting

[Interest] Is chaining of multiple SQL statements with bound values possible?

2015-03-16 Thread Guido Seifert
Hi, my problem: When I combine two sql statement in one QSqlQuery: query(SELECT * FROM foo; SELECT * FROM bar); it works ok. But this does not seem to work when the statements have different bound values: query(SELECT * from foo WHERE name=:foo; SELECT * from bar WHERE name=:bar);

Re: [Interest] QTreeWidget with fixed or min row height

2015-03-16 Thread Duane
On 16/03/2015 12:56 PM, Bo Thorsen wrote: Den 16-03-2015 kl. 17:47 skrev Duane: I'm trying to set up a tree widget where I can resize the column width to content but maintain a fixed row height. I have a custom delegate which I use to paint cell borders and I've added an overload to

Re: [Interest] QTDbus, Connman Parameters conversion

2015-03-16 Thread Thiago Macieira
On Monday 16 March 2015 07:43:51 LongChair . wrote: Hello, I have been looking in a way to provide with my app some wifi connection manager which would allow the following functionality :F1 - Enable/disable wifi adaptersF2 - List wifi networks F3 - connect to a network specifying the Wifi Key

Re: [Interest] Is chaining of multiple SQL statements with bound values possible?

2015-03-16 Thread Guido Seifert
Quite sure.Postgres 9.4. And without bound values it works. But it is ok, I found an alternative way to solve my problem. Are you sure the backend supports preparing of combined statements? If it does, then the best way to find the source of the problem would be running your program under

[Interest] QTDbus, Connman Parameters conversion

2015-03-16 Thread LongChair .
Hello, I have been looking in a way to provide with my app some wifi connection manager which would allow the following functionality :F1 - Enable/disable wifi adaptersF2 - List wifi networksF3 - connect to a network specifying the Wifi Key to be noticed that i need this functionality on a linux

Re: [Interest] Do I need to build Qt from the source to have an app compile in 32 bit?

2015-03-16 Thread John Weeks
What you do need though is the OS X 10.6 SDK, and I'm not sure if systems more recent than OS X 10.7 can be used to build applications targeting 10.6. I am building a non-Qt application against the 10.6 SDK on Yosemite using Xcode 6. I got the 10.6 SDK from a previous version of Xcode and

[Interest] Regarding craeting sqlite database in RAM

2015-03-16 Thread Jha Sonakumar
Hi , As we know we can create sqlite database in RAM db = QSqlDatabase::addDatabase(QSQLITE);\ db.setDatabaseName(:memory:); But how do we check whether it's created in RAM or not. Is any command in linux to check it. Best Regards Sona

Re: [Interest] Regarding craeting sqlite database in RAM

2015-03-16 Thread Scott Aron Bloom
If ( db.databaseName() == “:memory:” ) Should do the trick From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Jha Sonakumar Sent: Monday, March 16, 2015 1:42 AM To: interest@qt-project.org Interest