Grid type layout for image file
-
Hi,
I need to generate the grid type layout for the images which I have stored and also it should be get auto arrange(update/reshuffle) if new file is added or removed.
Can you please let me know how can be implement such functionality in QT-C++ .
It will be really great if we can have a reference/example link to develop such functions.Looking forward for responses & solutions.
Thanks & Regards
Volass -
Hi,
I need to generate the grid type layout for the images which I have stored and also it should be get auto arrange(update/reshuffle) if new file is added or removed.
Can you please let me know how can be implement such functionality in QT-C++ .
It will be really great if we can have a reference/example link to develop such functions.Looking forward for responses & solutions.
Thanks & Regards
Volass@volass said in Grid type layout for image file:
I need to generate the grid type layout for the images which I have stored and also it should be get auto arrange(update/reshuffle) if new file is added or removed.
Hello and welcome.
Either you just mean a
QGridLayout
and you do whatever moving of widgets yourself as & when, or you want Flow Layout Example which will move things in a "flow", like in a<DIV>
in HTML. Your images can be placed onQLabel
widgets, which work with both of these. -
Hi @JonB
I am totally to new & beginner to this QT development.
Here, I need to design the GUI where the picture(files or folder) are store in grid layout order and get auto arrange or reshuffle whenever new file added or deleted.
I am trying to search in the example but could not get any proper one.
It will great of yours if you can share any such example. -
Hi @JonB
I am totally to new & beginner to this QT development.
Here, I need to design the GUI where the picture(files or folder) are store in grid layout order and get auto arrange or reshuffle whenever new file added or deleted.
I am trying to search in the example but could not get any proper one.
It will great of yours if you can share any such example.@volass said in Grid type layout for image file:
I am trying to search in the example but could not get any proper one.
It will great of yours if you can share any such example.What do you mean? I gave you the necessary Flow Layout Example above, it's a link to click on.... And that has a link to the code at the bottom of its page.
-
Hi and welcome to devnet,
Looks like you could be interested by QFileSystemModel coupled to a QListView