I need an algorithm that will find place a gadget window in the first availble space between other gadget windows already on the screen. Basically a screen will contain gadget windows of different sizes all in different positions. When adding another gadget of fixed size to the screen I need a way to workout where the gadget can be placed, i.e in empty space between gadgets. If the algorithm wasn't able find enought space then the gadget will just get placed at the bottom of the existing gadgets.
I have thought about creating a 2 dimentional array at represents the screen containing all of the gadgets and the space that they take up but I think that there is probably a more efficent way of doing this.
The requirements are as follows
- Moving from left to right/top to bottom find the first available empty space that will completely fit the gadget window with a fixed margin from surrounding gadgets.
- If an empty space isn't found then place the gadget at the bottom left of all the other gadgets.
Thank you.