summaryrefslogtreecommitdiffstats
path: root/cppcanvas/source/inc
diff options
context:
space:
mode:
authorMark Hung <marklh9@gmail.com>2018-10-31 23:55:31 +0800
committerMark Hung <marklh9@gmail.com>2018-11-05 12:20:15 +0100
commit9709061a570a4867a4c5898ffed936b4b47ce90f (patch)
treee8a30cd3d44c544ef22b0d9a12b30ae1302411ee /cppcanvas/source/inc
parentMake ScAbstractDialogFactory::Create() do its job also on non-DESKTOP (diff)
downloadcore-9709061a570a4867a4c5898ffed936b4b47ce90f.tar.gz
core-9709061a570a4867a4c5898ffed936b4b47ce90f.zip
tdf#37636 take care of MetaOverlineColorAction in mtfrenderer.
Keep the overline color in DevOutState so that it can be used in text actions later. Change-Id: Ia584de9b78e1adf6862c09fb50cbed1f16e2ad0b Reviewed-on: https://gerrit.libreoffice.org/62829 Tested-by: Jenkins Reviewed-by: Mark Hung <marklh9@gmail.com>
Diffstat (limited to 'cppcanvas/source/inc')
-rw-r--r--cppcanvas/source/inc/outdevstate.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/cppcanvas/source/inc/outdevstate.hxx b/cppcanvas/source/inc/outdevstate.hxx
index 36f4c6fda57f..0c24d5f75366 100644
--- a/cppcanvas/source/inc/outdevstate.hxx
+++ b/cppcanvas/source/inc/outdevstate.hxx
@@ -50,6 +50,7 @@ namespace cppcanvas
fillColor(),
textColor(),
textFillColor(),
+ textOverlineColor(),
textLineColor(),
xFont(),
@@ -75,6 +76,7 @@ namespace cppcanvas
isLineColorSet( false ),
isFillColorSet( false ),
isTextFillColorSet( false ),
+ isTextOverlineColorSet( false ),
isTextLineColorSet( false )
{
}
@@ -87,6 +89,7 @@ namespace cppcanvas
css::uno::Sequence< double > fillColor;
css::uno::Sequence< double > textColor;
css::uno::Sequence< double > textFillColor;
+ css::uno::Sequence< double > textOverlineColor;
css::uno::Sequence< double > textLineColor;
/** Current font.
@@ -116,6 +119,7 @@ namespace cppcanvas
bool isLineColorSet;
bool isFillColorSet;
bool isTextFillColorSet;
+ bool isTextOverlineColorSet;
bool isTextLineColorSet;
};
}