From f4443bba903f84ea1ba8ea3f2bcd06addbc50b11 Mon Sep 17 00:00:00 2001 From: PeterAddy960 Date: Wed, 31 Aug 2016 20:30:11 -0500 Subject: [PATCH] Added methods to font object to get if font has underline and strikeout. --- include/nana/paint/graphics.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/nana/paint/graphics.hpp b/include/nana/paint/graphics.hpp index 8e667ef2..af4e1bdc 100644 --- a/include/nana/paint/graphics.hpp +++ b/include/nana/paint/graphics.hpp @@ -52,6 +52,8 @@ namespace nana bool italic() const; native_font_type handle() const; void release(); + bool strikeout() const; + bool underline() const; font& operator=(const font&); bool operator==(const font&) const;