Quote Originally Posted by Bong.Da.City View Post
First i want to say.. Do not give me any Class reference... I had looked many times THE class reference of listwidget and i cannot understand it...
Perhaps you could clarify what exactly is causing you grief in the documentation?

So what i want to do is to create a list widget... Beside the listwidget i want to have four buttons... Add, Remove, Move up, Move down ....
So when i press add it will search for files and when you click open it will add the items you selected to the listwidget... When you click on an item on the listwidget and click remove the item be deleted... With move up go up an item and with move down go down an item...
That is a lot of functionality, but most of it is concerned with the signals and slots paradigm, I think. Specifically, you need to connect the clicked() signal of the various buttons to slots that manipulate the QListWidget. Most likely this will involve subclassing QListWidget.

The school is starting in 3 days so i would appresiate it if you created an example for me so i can understand it and make the app before school starts..
Well, now I'm curious...