summaryrefslogtreecommitdiff
path: root/dw/alignedtablecell.hh
diff options
context:
space:
mode:
Diffstat (limited to 'dw/alignedtablecell.hh')
-rw-r--r--dw/alignedtablecell.hh29
1 files changed, 29 insertions, 0 deletions
diff --git a/dw/alignedtablecell.hh b/dw/alignedtablecell.hh
new file mode 100644
index 00000000..63e550e3
--- /dev/null
+++ b/dw/alignedtablecell.hh
@@ -0,0 +1,29 @@
+#ifndef __DW_ALIGNEDTABLECELL_HH__
+#define __DW_ALIGNEDTABLECELL_HH__
+
+#include "core.hh"
+#include "alignedtextblock.hh"
+
+namespace dw {
+
+class AlignedTableCell: public AlignedTextblock
+{
+private:
+ int charWordIndex, charWordPos;
+
+protected:
+ int wordWrap (int wordIndex, bool wrapAll);
+
+ int getValue ();
+ void setMaxValue (int maxValue, int value);
+
+public:
+ static int CLASS_ID;
+
+ AlignedTableCell(AlignedTableCell *ref, bool limitTextWidth);
+ ~AlignedTableCell();
+};
+
+} // namespace dw
+
+#endif // __DW_ALIGNEDTABLECELL_HH__