Make a line break in a layout or container
-
@mrjj said in Make a line break in a layout or container:
A Delegate is a custem draw for a ListView ( or any view)
So instead of drawing the normal cell, you make a small class where you use
QPainter to draw the cell how you want it.
Its much faster than having a tons of QLabels in a layout as
Views has been optimized for having many items.
so the clear benefit is that it works very fast and it can draw however you like.
(well you have to program that part)
Using html , you would have to construct the right html to have it look how u want.
Some thing be much harder. Like the clock/time in the whatapps sample.
With Delegate you can simply paint it there.
However, learning to use Views and Delegates will take some practice.Thank you very much for the answer.
but can you give me a training link on the view and the delegate? -
Did you took a look at the documentation I linked to earlier ? It does explain everything with examples.
There's the model view tutorial and the Item Views examples.
-
@SGaist said in Make a line break in a layout or container:
Did you took a look at the documentation I linked to earlier ? It does explain everything with examples.
Yeah, but it's a little complicated for me.
@EL-jos
Hi
maybe this is easier to follow ?
https://www.bogotobogo.com/Qt/Qt5_QListView_QStringListModel_ModelView_MVC.phpTry to follow the steps and build the same.
It looks more complicated than it is. -
@mrjj said in Make a line break in a layout or container:
Try to follow the steps and build the same.
It looks more complicated than it is.
All right, I'll take your advice, anyway, thank you for your answers and I can put the subject as resolved.