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
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
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
> 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!
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
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'.
_
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
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