mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-04 01:27:20 +02:00
Columns
- Implemented ColPriority, with 'default' and 'long' formats. - Implemented ColProject 'parent' format.
This commit is contained in:
parent
dd1be996a6
commit
9fd819e3a0
9 changed files with 195 additions and 16 deletions
|
@ -45,10 +45,11 @@ public:
|
|||
|
||||
std::string getStyle () { return _style; }
|
||||
std::string getLabel () { return _label; }
|
||||
void setStyle (const std::string& value) { _style = value; }
|
||||
void setLabel (const std::string& value) { _label = value; }
|
||||
std::string type () const { return _type; }
|
||||
|
||||
virtual void setStyle (const std::string& value) { _style = value; }
|
||||
virtual void setLabel (const std::string& value) { _label = value; }
|
||||
|
||||
virtual void measure (Task&, int&, int&) = 0;
|
||||
virtual void renderHeader (std::vector <std::string>&, int, Color&);
|
||||
virtual void render (std::vector <std::string>&, Task&, int, Color&) = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue