Text/font functions
| 1715 | |
| 1716 | // Text/font functions |
| 1717 | void Context::selectFontFace( const std::string &family, int32_t slant, int32_t weight ) |
| 1718 | { |
| 1719 | cairo_select_font_face( mCairo, family.c_str(), static_cast<cairo_font_slant_t>( slant ), static_cast<cairo_font_weight_t>( weight ) ); |
| 1720 | } |
| 1721 | |
| 1722 | void Context::setFontSize( double size ) |
| 1723 | { |