repo.or.cz
/
claws.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Disable stack execution on plugins
[claws.git]
/
src
/
plugins
/
litehtml_viewer
/
litehtml
/
el_table.h
blob
38352503bffa9d34bf5c42a52677e622d48bffdf
1
#ifndef LH_EL_TABLE_H
2
#define LH_EL_TABLE_H
3
4
#include
"html_tag.h"
5
6
namespace
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