Codebase list dillo / debian/3_hg20110720-1 dw / tablecell.hh
debian/3_hg20110720-1

Tree @debian/3_hg20110720-1 (Download .tar.gz)

tablecell.hh @debian/3_hg20110720-1raw · history · blame

#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:
   void wordWrap(int wordIndex);

   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__