odilia_common/
elements.rs

1#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
2pub enum ElementType {
3	Heading,
4	HeadingLevel1,
5	HeadingLevel2,
6	HeadingLevel3,
7	HeadingLevel4,
8	HeadingLevel5,
9	HeadingLevel6,
10	Button,
11	Text,
12	Table,
13	TableCell,
14	List,
15	ListItem,
16	Video,
17	Audio,
18	Link,
19	Tab, // This is when you're looking at tabs in a dialog
20}