Re: [Interest] Further 4.X releases?

2013-02-12 Thread Turunen Tuukka
On 13.2.2013 7.26, "Thiago Macieira" wrote: >On quarta-feira, 13 de fevereiro de 2013 04.08.43, Scott Aron Bloom wrote: >> So here is my problem, I have found a bug when QSortFilterProxyModel >>with a >> QSqlTableModel as the source model. >> >> The problem, I currently at a 4.8 based system, a

Re: [Interest] Further 4.X releases?

2013-02-12 Thread Scott Aron Bloom
Ok, Ill try to come up with a minimal testcase, and a potential solution... Scott -Original Message- From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Thiago Macieira Sent: Tuesday, February 12

Re: [Interest] Further 4.X releases?

2013-02-12 Thread Thiago Macieira
On quarta-feira, 13 de fevereiro de 2013 04.08.43, Scott Aron Bloom wrote: > So here is my problem, I have found a bug when QSortFilterProxyModel with a > QSqlTableModel as the source model. > > The problem, I currently at a 4.8 based system, and the plan for 5.0 > migration isnt soon... > > Will

Re: [Interest] Further 4.X releases?

2013-02-12 Thread Scott Aron Bloom
One possible solution... Rather than making the proxy_to_source functions always based on an index.. Give access to the source_rows and source_columns data via direct calls.. And use that for the header data. Scott From: interest-bounces+scott.bloom=onshorecs@qt-project.org [mailto:intere

Re: [Interest] Further 4.X releases?

2013-02-12 Thread Scott Aron Bloom
Further investigation into the bug... In QAbstractProxyModel::headerData, it creates a proxyIndex to map the requested section into the source section. Unfortunateluy, the call proxyIndex = index( 0, section ) assumes there is a row 0, ie, a non-empty model. The proxyIndex is set to an invalid

[Interest] Further 4.X releases?

2013-02-12 Thread Scott Aron Bloom
So here is my problem, I have found a bug when QSortFilterProxyModel with a QSqlTableModel as the source model. The problem, I currently at a 4.8 based system, and the plan for 5.0 migration isnt soon... Will there be another 4.8 or in order to get a fix, I have to submit it against 5.X and Il

Re: [Interest] Qt 5 blog

2013-02-12 Thread Justin Noel
On 02/12/2013 09:59 AM, Nikos Chantziaras wrote: On 11/02/13 20:52, Amy Zinkann wrote: Just an FYI that ICS has had three recent blog posts on What's New in Qt 5: * The QScreen Class QScreen is not new though. Both

Re: [Interest] DSLR Remote Pro for windows

2013-02-12 Thread Alex Malyushytskyy
Your main problem will be not GUI, it will be technical details on how to control Cannon cameras. I would advice you to check other that QT forum sources, cause it is not right place to ask such questions. For example: http://www.usa.canon.com/cusa/consumer/standard_display/sdk_homepage Google roc

[Interest] QToolBar in Qt5 under Mac

2013-02-12 Thread Joshua Grauman
Hello all, I have a multi-platform app I'm trying to update/port to Qt5. Everything pretty much seems ok, except that QToolBar no longer works on Mac. I've been trying to google and read up on the issue, but I'm having a hard time answering my main question: Is this a permanent situation, or i

Re: [Interest] DSLR Remote Pro for windows

2013-02-12 Thread Till Oliver Knoll
Am 12.02.2013 um 15:13 schrieb Sujan Dasmahapatra : > I want to develop a similar application as DSLR Remote Pro for Window. I don't know that application. > Is it possible in Qt. Sure. > Please give me some hints on my approach. Google. Docs. The usual. Cheers, Oliver ___

Re: [Interest] Qt 5 blog

2013-02-12 Thread Nikos Chantziaras
On 11/02/13 20:52, Amy Zinkann wrote: > Just an FYI that ICS has had three recent blog posts on What's New in Qt 5: > > * The QScreen Class > QScreen is not new though. ___ In

[Interest] DSLR Remote Pro for windows

2013-02-12 Thread Sujan Dasmahapatra
I want to develop a similar application as DSLR Remote Pro for Window. Is it possible in Qt. Please give me some hints on my approach. Any help is highly appreciated. -- Regards Sujan http://www.sujantechnologies.com/ ___ Interest mailing list Interest@

Re: [Interest] QML Canvas: bug or programmer error?

2013-02-12 Thread Mark Summerfield
Hi Jens, On Tue, 12 Feb 2013 11:59:59 + Bache-Wiig Jens wrote: [snip] > Hi Mark. > > There is indeed a mistake in this example. You can think of Canvas as an > Image Item that you paint on and the coordinates you specify in the > paint function are local to that Image. Things that are painte

Re: [Interest] QML Canvas: bug or programmer error?

2013-02-12 Thread Bache-Wiig Jens
> > // Triangle.qml > import QtQuick 2.0 > Canvas { >id: triangle >antialiasing: true >property color color: "white" >onPaint: { >var ctx = getContext("2d"); >ctx.save(); >ctx.fillStyle = color; >ctx.moveTo((x + width) / 2, 0); >ctx.lineTo(wi

Re: [Interest] Relocate Qt5 with qt.conf

2013-02-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 ??? ?? > Sent: Tuesday, February 12, 2013 11:59 AM > To: interest@qt-project.org > Subject: [Interest] Relocate Qt5 with

[Interest] QML Canvas: bug or programmer error?

2013-02-12 Thread Mark Summerfield
Hi, I'm having a problem with QML Canvas (Qt 5.0.0 and Qt 5.0.1). Below are two tiny programs: // canvas1.qml import QtQuick 2.0 Grid { columns: 2 spacing: 1 Square { color: "red"; width: 100; height: 100; } Square { color: "green"; width: 100; height: 100; } Square { color:

[Interest] Relocate Qt5 with qt.conf

2013-02-12 Thread Алексей Павлов
Hi! I have build myself Qt-5.0.1+QtCreator with MinGW. Then I copy installation to another computer in different folder. I create qt.conf file in bin folder with next content: [Paths] Prefix = c:/Qt64 //new location Translations = translations QtCreator launch well. But when I try to launch sampl