Re: [Interest] Compile Qt Application with X11 libraries for Windows Platform

2012-06-25 Thread Lincoln Ramsay
On 06/25/2012 04:14 PM, ext Fatih Küçükyavuz wrote: Is there any way to build my Qt application with X11 support that can run in Windows OS? I was going to say cygwin. There is also a XPortMinGW project for minGW. But I do not know if it works for Qt applications. This will be mostly the

Re: [Interest] HTML5 canvas support?

2012-06-25 Thread Jason H
To answer your questions, 1. No, You'll have to use CSS and such to style them, and come up with specific POST handlers for every possible input. If that's what you want then use Wt. The advantage here is that there is only ever one POST handler, which handles browser events like KEY UP/DOWN,

Re: [Interest] ICS Announces Qt-Based Google APIs

2012-06-25 Thread Harri Pasanen
I took a quick look at qt-google-calendar, but it's unclear to me how the authentication is supposed to work? Basically the code expects you to fill in response uri, but does not implement the server for it? What am I supposed to put in there (m_strRedirectURI)?Reading google docs it

Re: [Interest] Dynamically Resizing the height of a Row in a QTableWidget or QTableView

2012-06-25 Thread Eric Clark
Hello Mike, I am not sure about dynamically resizing the row height, but I have a suggestion that you may or may not find helpful... Instead of placing the entire portion of text in the table cell, why not use the QFontMetrics::elidedText(...) function to add ellipsis to the left, right or

Re: [Interest] QAbstractItemView and default QItemSelectionModel

2012-06-25 Thread Eric Clark
Thanks Andreas! I know it doesn't exactly answer my question, but you are right, I can easily check this and I probably should just do the right thing anyway and delete it. However, this suggestion: Or you could make sure the selection model is set before the model, so that no

Re: [Interest] QAbstractItemView and default QItemSelectionModel

2012-06-25 Thread Eric Clark
Thank you again Andreas! I just wanted to get my head screwed on straight. I really appreciate your response and help! - Eric From: Andreas Pakulat [mailto:ap...@gmx.de] Sent: Monday, June 25, 2012 5:02 PM To: Eric Clark Cc: Qt Interest (interest@qt-project.org) Subject: Re: [Interest]

[Interest] Most direct path to using a QComboBox to edit a cell in a QTableView?

2012-06-25 Thread K. Frank
Hello List! I have a QTableView and I would like to use a QComboBox to insert and modify its entries. I'm looking for the simplest way to do this that uses as much unmodified Qt functionality as possible. At the moment I am thinking that I can use the class template QStandardItemEditorCreator

Re: [Interest] Most direct path to using a QComboBox to edit a cell in a QTableView?

2012-06-25 Thread Tony Rietwyk
Hi Frank, What does the standard delegate do for your model/view at the moment? I can't recall the specifics, but it certainly uses combo boxes at the moment - eg, for boolean fields (which I think is painful, but anyway). I think you need to give more information about what you are