Photon 1.0.0
Loading...
Searching...
No Matches
el_table.h
Go to the documentation of this file.
1#ifndef LH_EL_TABLE_H
2#define LH_EL_TABLE_H
3
4#include "html_tag.h"
5
6namespace litehtml
7{
8 struct col_info
9 {
10 int width;
11 bool is_auto;
12 };
13
14
15 class el_table : public html_tag
16 {
17 public:
18 explicit el_table(const std::shared_ptr<litehtml::document>& doc);
19
20 bool appendChild(const litehtml::element::ptr& el) override;
21 void parse_attributes() override;
22 };
23}
24
25#endif // LH_EL_TABLE_H
Definition el_table.h:16
bool appendChild(const litehtml::element::ptr &el) override
Definition el_table.cpp:13
void parse_attributes() override
Definition el_table.cpp:26
std::shared_ptr< element > ptr
Definition element.h:25
Definition html_tag.h:18
friend class el_table
Definition html_tag.h:20
Definition background.h:12
Definition el_table.h:9
int width
Definition el_table.h:10
bool is_auto
Definition el_table.h:11