Merge branch 'hotfix-1.4.1' into develop

This commit is contained in:
Jinhao
2016-10-31 06:21:41 +08:00
26 changed files with 428 additions and 342 deletions

View File

@@ -156,6 +156,18 @@ namespace paint
return (impl_->font_ptr->italic);
}
bool font::underline() const
{
if(empty()) return false;
return (impl_->font_ptr->underline);
}
bool font::strikeout() const
{
if(empty()) return false;
return (impl_->font_ptr->strikeout);
}
native_font_type font::handle() const
{
if(empty()) return nullptr;