| 30 | { |
| 31 | |
| 32 | TextInfo::TextInfo (const LayoutViewBase *view) |
| 33 | : m_default_text_size (view->default_text_size ()), |
| 34 | m_default_font (db::Font (view->text_font ())), |
| 35 | m_apply_text_trans_mode (view->apply_text_trans_mode ()), |
| 36 | m_resolution (view->canvas ()->font_resolution ()), |
| 37 | m_point_mode (view->text_point_mode ()) |
| 38 | { |
| 39 | // .. nothing yet .. |
| 40 | } |
| 41 | |
| 42 | db::DBox |
| 43 | TextInfo::bbox (const db::DText &text, const db::DCplxTrans &vp_trans) const |
nothing calls this directly
no test coverage detected