diff options
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/color.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/tools/color.hxx b/include/tools/color.hxx index 0a55132a6fc9..3515e59b7ed3 100644 --- a/include/tools/color.hxx +++ b/include/tools/color.hxx @@ -162,6 +162,10 @@ public: TOOLS_DLLPUBLIC friend SvStream& ReadColor( SvStream& rIStream, Color& rColor ); TOOLS_DLLPUBLIC friend SvStream& WriteColor( SvStream& rOStream, const Color& rColor ); + // Return color as RGB hex string + // for example "00ff00" for green color + OUString AsRGBHexString(); + // get ::basegfx::BColor from this color ::basegfx::BColor getBColor() const { return ::basegfx::BColor(GetRed() / 255.0, GetGreen() / 255.0, GetBlue() / 255.0); } }; |