[SOLVED] QGridLayout cell ordering?
-
Hello
Is it possible to make QGridLayout see the following cell order as I insert widgets into it? (start top right, move left, step down one, move back right, step down one, move back left, etc.)
// 4 3 2 1 0
// 5 6 7 8 9
// 14 13 12 11 10
// 15 16 17 18 19
// 24 23 22 21 20 -
Hi,
It's up to you to put your widgets in that order, or you could implement your own grid layout that does that.