I've just run the graphics-views.cpp tutorial here
http://www.sfml-dev.org/tutorials/1.6/graphics-views.phpI'd like to modify it so that a user can set up a grid of cells...
where each cell is a coloured rectangle of fixed size
with the first so-many digits on it i.e. nothing fancy.
The thing is...
I want the grid size to be specified at run time,
i.e. avoiding statements like "Background.Resize(2000, 2000);"
which fixes the size of the background at compile time.
I'd like to start with one cell (top left) and have the user add cells
by pressing either the right or down arrow keys.
I used such unlimited pads in both ncurses and wxpython.
Any thoughts much appreciated
Rgds
Dean