Codebase list dillo / 2edfb5ba-a200-4c34-826b-63f503726917/main dw / tablecell.hh
2edfb5ba-a200-4c34-826b-63f503726917/main

Tree @2edfb5ba-a200-4c34-826b-63f503726917/main (Download .tar.gz)

tablecell.hh @2edfb5ba-a200-4c34-826b-63f503726917/main

17ecdf9
 
 
 
 
 
 
 
 
 
 
 
 
 
dafdfbf
17ecdf9
 
 
 
 
 
 
 
 
 
 
 
 
 
#ifndef __DW_TABLECELL_HH__
#define __DW_TABLECELL_HH__

#include "core.hh"
#include "alignedtextblock.hh"

namespace dw {

class TableCell: public AlignedTextblock
{
private:
   int charWordIndex, charWordPos;

protected:
   bool wordWrap (int wordIndex, bool wrapAll);

   int getValue ();
   void setMaxValue (int maxValue, int value);

public:
   static int CLASS_ID;

   TableCell(TableCell *ref, bool limitTextWidth);
   ~TableCell();
};

} // namespace dw

#endif // __DW_TABLECELL_HH__