docx_reader/documents/elements/
font_scheme.rs

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
28
29
30
31
use serde::Serialize;

#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct FontSchemeFont {
	pub script: String,
	pub typeface: String,
}

#[derive(Debug, Clone, PartialEq, Serialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct FontGroup {
	pub latin: String,
	pub ea: String,
	pub cs: String,
	pub fonts: Vec<FontSchemeFont>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct FontScheme {
	pub major_font: FontGroup,
	pub minor_font: FontGroup,
}

// For now reader only
impl FontScheme {
	pub fn new() -> Self {
		Self::default()
	}
}