diff options
author | Mark Hung <marklh9@gmail.com> | 2015-10-21 22:34:08 +0800 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2015-11-03 20:01:46 +0000 |
commit | 281be263619a8e513a26e6a9165d1d77cf6524ea (patch) | |
tree | 93b961416e794b100fbc86ac5af80ec3a65428a2 /include | |
parent | 2b48a5f1550e6f62931c2973086e8970f88f58ee (diff) |
tdf#81144 Chinese full-width punctuation does not align properly
Ideographic fullstop and comma in most Chinese fonts are centered,
while those in Japanese fonts align closer to the left. Original
compression algorithm trimed right side of the punctuation, making
fullwidth fullstop or comma in Chinese font visually unbalanced.
In worst case, it crowds together with the followed compressed
punctuation.
This patch fix the situation in the folowing way
1) make compression less stronger.
2) Trim space according to glyph bearing to font height ratio.
3) fix a memory access violation issue
Change-Id: Icff215064e6c442fd36eac8e01b01fb6acb27594
Reviewed-on: https://gerrit.libreoffice.org/19517
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/metric.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/metric.hxx b/include/vcl/metric.hxx index ba2393d4123e..ddf27eb85455 100644 --- a/include/vcl/metric.hxx +++ b/include/vcl/metric.hxx @@ -72,6 +72,7 @@ public: long GetExtLeading() const; long GetLineHeight() const; long GetSlant() const; + bool IsFullstopCentered() const; FontMetric& operator=( const FontMetric& rMetric ); bool operator==( const FontMetric& rMetric ) const; |