2020-02-11 10:01:39 +02:00
|
|
|
use serde::Serialize;
|
|
|
|
|
2019-11-12 10:32:50 +02:00
|
|
|
use crate::documents::BuildXML;
|
|
|
|
use crate::types::*;
|
|
|
|
use crate::xml_builder::*;
|
|
|
|
|
2020-02-11 10:01:39 +02:00
|
|
|
#[derive(Debug, Clone, PartialEq, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
2019-11-12 10:32:50 +02:00
|
|
|
pub struct TableWidth {
|
|
|
|
width: usize,
|
|
|
|
width_type: WidthType,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TableWidth {
|
|
|
|
pub fn new(width: usize, width_type: WidthType) -> TableWidth {
|
|
|
|
TableWidth { width, width_type }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BuildXML for TableWidth {
|
|
|
|
fn build(&self) -> Vec<u8> {
|
|
|
|
XMLBuilder::new()
|
2020-03-19 18:19:39 +02:00
|
|
|
.table_width(self.width as i32, WidthType::DXA)
|
2019-11-12 10:32:50 +02:00
|
|
|
.build()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
#[cfg(test)]
|
|
|
|
use pretty_assertions::assert_eq;
|
|
|
|
use std::str;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_table_width() {
|
|
|
|
let b = TableWidth::new(20, WidthType::DXA).build();
|
|
|
|
assert_eq!(
|
|
|
|
str::from_utf8(&b).unwrap(),
|
|
|
|
r#"<w:tblW w:w="20" w:type="dxa" />"#
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|