Mercurial > dillo_port1.3
view dw/tablecell.hh @ 1255:5d6869b28e4d
treat ideographic characters (Chinese/Japanese) as words
author | corvid <corvid@lavabit.com> |
---|---|
date | Sun, 02 Aug 2009 03:59:14 +0000 |
parents | e5955ab8dafb |
children |
line wrap: on
line source
#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__