My idea is:
Each window has a data area allocated to it, that is the dimensions of the window in size. In this data area is everything the window will print to screen (including the border etc). I memcpy this data area into my double buffer, which then refreshes the relevent parts (that need updating) at screen refresh's.
The components (textbox's, scrollbars's etc) are all defined as a seperate "component window" and also have a data area defined by their dimensions. This is memcpy'd into the parent windows data area at every refresh.
I will deal with message passing later, but does this seem wasteful/economic/slow/fast/good/poor?
Critique would be nice
