|
From: Hans-Bernhard B. <br...@ph...> - 2004-12-12 16:58:36
|
Nigel Nunn wrote: [Nigel, please check your mail client. Something's causing it to emit doubled linebreaks...] > My experimental term wx works well, but the Gnuplot's use > of global variables effectively limits us to a single panel. I consider fixing this a major goal that absolutely has to be achieved before the next official release (4.2). > This could be fixed by packaging these globals in a struct, > and associating one such struct with each display panel. It shouldn't be strictly associated to any visible entity, but rather switchable from inside gnuplot. I.e., we need the effect of 'load' and 'save' commands (but including saving of entire multi-plots), without relying on external files. Each "package of globals" has to be come a selectable global state (--> 'set' command), roughly like this: set state 5 to current # do something else set state to 5 ; replot multi # or even temporily: replot multi 5 |