blob: 45a6d31ff6364daee8546c2d9a65ebf43d1eb0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __DW_SIMPLETABLECELL_HH__
#define __DW_SIMPLETABLECELL_HH__
#include "textblock.hh"
namespace dw {
class SimpleTableCell: public Textblock
{
protected:
bool getAdjustMinWidth ();
public:
static int CLASS_ID;
SimpleTableCell (bool limitTextWidth);
~SimpleTableCell ();
int applyPerWidth (int containerWidth, core::style::Length perWidth);
int applyPerHeight (int containerHeight, core::style::Length perHeight);
bool isBlockLevel ();
};
} // namespace dw
#endif // __DW_SIMPLETABLECELL_HH__
|