Forum Navigation
Format, Layout, TextFormat
Posted: 02/26/07 00:26:06The global Formatter object is gone.
How shall an application handle an Formatter instance?
Shall it make its own, global instance?
Shall a lib have its own instance also?
Can Tango provide a mechanism to hold the instance for both (app & libs).
TextFormat? used the Format, now it uses Layout.
Does that change anything?
Can I simply make a global Layout object and replace all
new TextFormat!(char)(Formatter,new Buffer(file))with
new TextFormat!(char)(Layouter,new Buffer(file))? Or does this change behaviour?