Implement image handling
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_table.h
1 #pragma once\r
2 #include "html_tag.h"\r
3 \r
4 namespace litehtml\r
5 {\r
6         struct col_info\r
7         {\r
8                 int             width;\r
9                 bool    is_auto;\r
10         };\r
11 \r
12 \r
13         class el_table : public html_tag\r
14         {\r
15         public:\r
16                 el_table(const std::shared_ptr<litehtml::document>& doc);\r
17                 virtual ~el_table();\r
18 \r
19                 virtual bool    appendChild(const litehtml::element::ptr& el) override;\r
20                 virtual void    parse_styles(bool is_reparse = false) override;\r
21                 virtual void    parse_attributes() override;\r
22         };\r
23 }