diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-22 15:10:14 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-22 07:19:37 +0000 |
commit | b75cb14034b51e9a385be37cf7f70e0df40d50ec (patch) | |
tree | aaa4432e3187ce67abe7c477b109c416bf163220 /include | |
parent | 05b44143d2300d025d6112b8986ac6965ef844c0 (diff) |
vcl: add font map names to Font class
Added getter and setter for font map names to the Font class.
See commit description in 8bfccd3a71d911b6d ("vcl: Create accessor
and mutator for font scaling in FontMetric") for reasoning behind
patch.
Change-Id: I3e12c900da6f3abe60ea9c8dc39178fdd3f98bb7
Reviewed-on: https://gerrit.libreoffice.org/21695
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/font.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/font.hxx b/include/vcl/font.hxx index 498c6a56ebe8..b728f87ec26c 100644 --- a/include/vcl/font.hxx +++ b/include/vcl/font.hxx @@ -84,6 +84,7 @@ public: // Device dependent functions int GetQuality() const; + OUString GetMapNames() const; bool IsBuiltInFont() const; bool CanEmbed() const; @@ -92,6 +93,7 @@ public: void SetQuality(int); void IncreaseQualityBy(int); void DecreaseQualityBy(int); + void SetMapNames(OUString const &); void SetBuiltInFontFlag(bool); void SetEmbeddableFlag(bool); |