pub fn lookup_requirement_html_label_width_em(text: &str, bold: bool) -> Option<f64> {
match (text, bold) {
("<<contains>>", false) => Some(5.833984375),
("<<Design Constraint>>", false) => Some(9.9208984375),
("<<Element>>", false) => Some(5.7919921875),
("<<Functional Requirement>>", false) => Some(12.8251953125),
("<<Interface Requirement>>", false) => Some(12.2177734375),
("<<Performance Requirement>>", false) => Some(13.8095703125),
("<<Physical Requirement>>", false) => Some(11.6826171875),
("<<Requirement>>", false) => Some(7.826171875),
("<<satisfies>>", false) => Some(5.7197265625),
("<<traces>>", false) => Some(4.853515625),
("constructor", true) => Some(5.4150390625),
("dc1", true) => Some(1.6787109375),
("Doc Ref: docA", false) => Some(6.25),
("Doc Ref: https://example.com", false) => Some(13.8173828125),
("Doc Ref: test_ref", false) => Some(7.642578125),
("e1", true) => Some(1.1611328125),
("elA", true) => Some(1.5029296875),
("elB", true) => Some(1.46484375),
("elem", true) => Some(2.3037109375),
("ID: 1", false) => Some(2.0849609375),
("ID: 2", false) => Some(2.0849609375),
("ID: dc_id", false) => Some(3.9794921875),
("ID: design_id", false) => Some(5.767578125),
("ID: functional_id", false) => Some(7.4697265625),
("ID: interface_id", false) => Some(7.0244140625),
("ID: performance_id", false) => Some(8.6552734375),
("ID: physical_id", false) => Some(6.529296875),
("ID: req_id", false) => Some(4.41796875),
("ID: test_id", false) => Some(4.669921875),
("myElem", true) => Some(3.69140625),
("myReq", true) => Some(3.1630859375),
("req", true) => Some(1.5859375),
("req_design", true) => Some(5.1484375),
("req_functional", true) => Some(6.9130859375),
("req_interface", true) => Some(6.4482421875),
("req_performance", true) => Some(8.1884765625),
("req_physical", true) => Some(5.94921875),
("req_requirement", true) => Some(8.0703125),
("req1", true) => Some(2.171875),
("req2", true) => Some(2.171875),
("Risk: High", false) => Some(4.4326171875),
("Risk: Low", false) => Some(4.232421875),
("Risk: Medium", false) => Some(5.9189453125),
("test_element", true) => Some(6.25),
("test_name", true) => Some(4.94140625),
("test_req", true) => Some(3.970703125),
("Text: A requirement", false) => Some(8.923828125),
("Text: base requirement", false) => Some(10.4765625),
("Text: constraint text", false) => Some(9.2294921875),
("Text: design constraint", false) => Some(10.2314453125),
("Text: Do thing", false) => Some(6.294921875),
("Text: functional requirement", false) => Some(12.986328125),
("Text: interface requirement", false) => Some(12.5419921875),
("Text: performance requirement", false) => Some(14.1728515625),
("Text: physical requirement", false) => Some(12.0458984375),
("Text: the test text.", false) => Some(8.6083984375),
("Type: simulation", false) => Some(7.380859375),
("Type: system", false) => Some(5.8046875),
("Type: test_type", false) => Some(6.9892578125),
("Verification: Analysis", false) => Some(9.33984375),
("Verification: Demonstration", false) => Some(12.40234375),
("Verification: Inspection", false) => Some(10.4423828125),
("Verification: Test", false) => Some(7.6357421875),
_ => None,
}
}
pub fn lookup_requirement_calc_max_width_px(calc_text: &str) -> Option<i64> {
match calc_text {
"<<contains>>" => Some(200),
"<<Design Constraint>>" => Some(276),
"<<Element>>" => Some(214),
"<<Functional Requirement>>" => Some(315),
"<<Interface Requirement>>" => Some(304),
"<<Performance Requirement>>" => Some(329),
"<<Physical Requirement>>" => Some(301),
"<<Requirement>>" => Some(243),
"<<satisfies>>" => Some(200),
"<<traces>>" => Some(200),
"constructor" => Some(123),
"dc1" => Some(73),
"Doc Ref: docA" => Some(148),
"Doc Ref: https://example.com" => Some(244),
"Doc Ref: test_ref" => Some(164),
"e1" => Some(65),
"elA" => Some(74),
"elB" => Some(72),
"elem" => Some(82),
"ID: 1" => Some(83),
"ID: 2" => Some(83),
"ID: dc_id" => Some(112),
"ID: design_id" => Some(139),
"ID: functional_id" => Some(162),
"ID: interface_id" => Some(153),
"ID: performance_id" => Some(178),
"ID: physical_id" => Some(150),
"ID: req_id" => Some(117),
"ID: test_id" => Some(119),
"myElem" => Some(106),
"myReq" => Some(98),
"req" => Some(72),
"req_design" => Some(122),
"req_functional" => Some(145),
"req_interface" => Some(135),
"req_performance" => Some(160),
"req_physical" => Some(133),
"req_requirement" => Some(157),
"req1" => Some(79),
"req2" => Some(79),
"Risk: High" => Some(122),
"Risk: Low" => Some(119),
"Risk: Medium" => Some(144),
"test_element" => Some(132),
"test_name" => Some(116),
"test_req" => Some(103),
"Text: A requirement" => Some(178),
"Text: base requirement" => Some(197),
"Text: constraint text" => Some(178),
"Text: design constraint" => Some(196),
"Text: Do thing" => Some(143),
"Text: functional requirement" => Some(233),
"Text: interface requirement" => Some(224),
"Text: performance requirement" => Some(249),
"Text: physical requirement" => Some(222),
"Text: the test text." => Some(164),
"Type: simulation" => Some(159),
"Type: system" => Some(135),
"Type: test_type" => Some(148),
"Verification: Analysis" => Some(190),
"Verification: Demonstration" => Some(231),
"Verification: Inspection" => Some(203),
"Verification: Test" => Some(162),
_ => None,
}
}