boxDay method

void boxDay(
  1. String caller,
  2. int _r,
  3. dynamic _w
)

For day events, weekBox collects all days. PLAN: Very small day-info-box, for.. routine day info / events. called by:: revel

Implementation

void boxDay(String caller, int _r, _w) {
  treatyBuf.writeln('::buf:  box called for :daily:Treaty:  $name ');
  int bufLength = treatyBuf.length;

  ///  Give shapes for screen matrix.
  boxServe.init(_r, _w, '_'); //  rows, width or: 0 = use default 47, 195
  boxServe.construct(':day:$name ', ':daily:Treaty:box:');
  //  Get basic bunch of day data.
  _dayLayOut();

  boxServe.show(':daily:Treaty: buf: $bufLength  $name ', 'print', 8);
  boxServe.done(':daily:Treaty:  $name ');

  //  devl:MIS  Bids to week - #auction.
}