Re: [Interest] Aligning QProgressBar inside a QSplashScreen

2012-10-01 Thread Alex Malyushytskyy
Few comments 1. If you remove : splash->finish(&w); You will have splash staying on top until you click it. Good for debugging. 2. QApplication can only be one, so it does not make sense to pass pointer of it, use qApp; 3. On Windows with Qt 4.7 your example result in Unhandled exception : A

Re: [Interest] Qt5, QtMobility API: Qt Service Framework

2012-10-01 Thread Andrew Stanley-Jones
Qt Service Framework in qtsystems/qtserviceframework and received a lot of attention for Qt 5, with a lot of bug fixes, etc. All the unit tests work on windows, so it should be in a functional state. Since I've left Nokia I no longer have anyone paying my to work on it, but I'm trying to keep on

Re: [Interest] Re-ordering items in QListWidget by drag-and-drop

2012-10-01 Thread Stephen Chu
On 10/1/12 10:55 AM, Tony Rietwyk wrote: > >> Sent: Tuesday, 2 October 2012 12:12 AM >> >> On 10/1/12 9:55 AM, R. Reucher wrote: >>> On Monday 01 October 2012 15:54:30 R. Reucher wrote: > What else should I set so I can reorder items? Or does QListWidget > not support it? You have

Re: [Interest] Re-ordering items in QListWidget by drag-and-drop

2012-10-01 Thread Tony Rietwyk
> Sent: Tuesday, 2 October 2012 12:12 AM > > On 10/1/12 9:55 AM, R. Reucher wrote: > > On Monday 01 October 2012 15:54:30 R. Reucher wrote: > >>> What else should I set so I can reorder items? Or does QListWidget > >>> not support it? > >> > >> You have set the dragDropMode property to InterMove!

Re: [Interest] Re-ordering items in QListWidget by drag-and-drop

2012-10-01 Thread Stephen Chu
On 10/1/12 9:55 AM, R. Reucher wrote: > On Monday 01 October 2012 15:54:30 R. Reucher wrote: >>> What else should I set so I can reorder items? Or does QListWidget not >>> support it? >> >> You have set the dragDropMode property to InterMove! > Correction: the property's value is 'InternalMove'. T

Re: [Interest] Re-ordering items in QListWidget by drag-and-drop

2012-10-01 Thread R. Reucher
On Monday 01 October 2012 15:54:30 R. Reucher wrote: > > What else should I set so I can reorder items? Or does QListWidget not > > support it? > > You have set the dragDropMode property to InterMove! Correction: the property's value is 'InternalMove'. _

Re: [Interest] Re-ordering items in QListWidget by drag-and-drop

2012-10-01 Thread R. Reucher
On Monday 01 October 2012 15:38:46 Stephen Chu wrote: > I am showing a list of item in a QListWidget and would like to allow > user to reorder them by drag-and-drop. > > I set the movement to free but it doesn't really do anything. I can't > even select any of the items. The selection mode is set

[Interest] Re-ordering items in QListWidget by drag-and-drop

2012-10-01 Thread Stephen Chu
I am showing a list of item in a QListWidget and would like to allow user to reorder them by drag-and-drop. I set the movement to free but it doesn't really do anything. I can't even select any of the items. The selection mode is set to SingleSelection. What else should I set so I can reorder i