- Documented the new layout algorithm.
- Used Nibbler for decomposing fields into word chunks.
- Implemented variable intra padding.
- Implemented variable left margin.
- Implemented variable extra padding.
- Implemented colored headers.
- Implemented wrappable headers.
- Eliminated need to specify fixed column size.
This commit is contained in:
Paul Beckingham 2011-04-29 01:45:10 -04:00
parent 66afc7c057
commit 4dca2a5a2d
9 changed files with 186 additions and 87 deletions

View file

@ -30,6 +30,7 @@
#include <vector>
#include <string>
#include <Column.h>
#include <Color.h>
#include <Task.h>
class ColumnID : public Column
@ -39,7 +40,7 @@ public:
~ColumnID ();
void measure (Task&, int&, int&);
void render (std::vector <std::string>&, Task&, int);
void render (std::vector <std::string>&, Task&, int, Color&);
private:
};