docx_reader/documents/elements/
text_box.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
use serde::Serialize;

use crate::documents::*;
use crate::types::*;

#[derive(Debug, Clone, Serialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct TextBox {
	// For writer only
	pub children: Vec<TextBoxContentChild>,
	// unit is emu
	pub size: (u32, u32),
	pub position_type: DrawingPositionType,
	/// Specifies that this object shall be positioned using the positioning information in the
	/// simplePos child element (ยง20.4.2.13). This positioning, when specified, positions the
	/// object on the page by placing its top left point at the x-y coordinates specified by that
	/// element.
	pub simple_pos: bool,
	// unit is emu
	pub simple_pos_x: i32,
	pub simple_pos_y: i32,
	/// Specifies how this DrawingML object behaves when its anchor is located in a table cell;
	/// and its specified position would cause it to intersect with a table cell displayed in the
	/// document. That behavior shall be as follows:
	pub layout_in_cell: bool,
	/// Specifies the relative Z-ordering of all DrawingML objects in this document. Each floating
	/// DrawingML object shall have a Z-ordering value, which determines which object is
	/// displayed when any two objects intersect. Higher values shall indicate higher Z-order;
	/// lower values shall indicate lower Z-order.
	pub relative_height: u32,
	pub allow_overlap: bool,
	pub position_h: DrawingPosition,
	pub position_v: DrawingPosition,
	pub relative_from_h: RelativeFromHType,
	pub relative_from_v: RelativeFromVType,
	/// Specifies the minimum distance which shall be maintained between the top edge of this drawing object and any subsequent text within the document when this graphical object is displayed within the document's contents.,
	/// The distance shall be measured in EMUs (English Metric Units).,
	pub dist_t: i32,
	pub dist_b: i32,
	pub dist_l: i32,
	pub dist_r: i32,
}

impl Default for TextBox {
	fn default() -> Self {
		Self::new()
	}
}

impl TextBox {
	pub fn new() -> Self {
		Self {
			children: vec![],
			size: (from_px(100), from_px(100)),
			position_type: DrawingPositionType::Inline,
			simple_pos: false,
			simple_pos_x: 0,
			simple_pos_y: 0,
			layout_in_cell: false,
			relative_height: 190500,
			allow_overlap: false,
			position_v: DrawingPosition::Offset(0),
			position_h: DrawingPosition::Offset(0),
			relative_from_h: RelativeFromHType::default(),
			relative_from_v: RelativeFromVType::default(),
			dist_t: 0,
			dist_b: 0,
			dist_l: 0,
			dist_r: 0,
		}
	}

	// unit is emu
	pub fn size(mut self, w_emu: u32, h_emu: u32) -> Self {
		self.size = (w_emu, h_emu);
		self
	}

	pub fn floating(mut self) -> Self {
		self.position_type = DrawingPositionType::Anchor;
		self
	}

	pub fn offset_x(mut self, x: i32) -> Self {
		self.position_h = DrawingPosition::Offset(x);
		self
	}

	pub fn offset_y(mut self, y: i32) -> Self {
		self.position_v = DrawingPosition::Offset(y);
		self
	}

	pub fn position_h(mut self, pos: DrawingPosition) -> Self {
		self.position_h = pos;
		self
	}

	pub fn position_v(mut self, pos: DrawingPosition) -> Self {
		self.position_v = pos;
		self
	}

	pub fn relative_from_h(mut self, t: RelativeFromHType) -> Self {
		self.relative_from_h = t;
		self
	}

	pub fn relative_from_v(mut self, t: RelativeFromVType) -> Self {
		self.relative_from_v = t;
		self
	}

	pub fn dist_t(mut self, v: i32) -> Self {
		self.dist_t = v;
		self
	}

	pub fn dist_b(mut self, v: i32) -> Self {
		self.dist_b = v;
		self
	}

	pub fn dist_l(mut self, v: i32) -> Self {
		self.dist_l = v;
		self
	}

	pub fn dist_r(mut self, v: i32) -> Self {
		self.dist_r = v;
		self
	}

	pub fn simple_pos(mut self, v: bool) -> Self {
		self.simple_pos = v;
		self
	}

	pub fn relative_height(mut self, v: u32) -> Self {
		self.relative_height = v;
		self
	}
}

/*
impl BuildXML for Textbox {
	fn build(&self) -> Vec<u8> {
		let b = XMLBuilder::new();
		let w = format!("{}", self.size.0);
		let h = format!("{}", self.size.1);
		b.open_pic("http://schemas.openxmlformats.org/drawingml/2006/picture")
			.open_pic_nv_pic_pr()
			.pic_c_nv_pr("0", "")
			.open_pic_c_nv_pic_pr()
			.a_pic_locks("1", "1")
			.close()
			.close()
			.open_blip_fill()
			.a_blip(&self.id)
			.a_src_rect()
			.open_a_stretch()
			.a_fill_rect()
			.close()
			.close()
			.open_pic_sp_pr("auto")
			.open_a_xfrm()
			.a_off("0", "0")
			.a_ext(&w, &h)
			.close()
			.open_a_prst_geom("rect")
			.a_av_lst()
			.close()
			.close()
			.close()
			.build()
	}
}
*/