Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
74fa26c8
Kaydet (Commit)
74fa26c8
authored
Haz 13, 2014
tarafından
matteocam
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
VclProcessor's text rendering looks at fill color
Change-Id: I96dcafd01fb6d8a5e873719ee617008b5f2cbc13
üst
d4c1c038
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
vclprocessor2d.cxx
drawinglayer/source/processor2d/vclprocessor2d.cxx
+10
-0
editattr.cxx
editeng/source/editeng/editattr.cxx
+2
-0
No files found.
drawinglayer/source/processor2d/vclprocessor2d.cxx
Dosyayı görüntüle @
74fa26c8
...
...
@@ -187,6 +187,16 @@ namespace drawinglayer
if
(
eFontStrikeout
!=
STRIKEOUT_NONE
)
aFont
.
SetStrikeout
(
eFontStrikeout
);
// set FillColor Attribute
// FIXME(matteocam)
// XXX: is "Color" the right type
const
Color
aFillColor
(
pTCPP
->
getFillColor
()
);
if
(
aFillColor
!=
COL_TRANSPARENT
)
{
aFont
.
SetFillColor
(
aFillColor
);
aFont
.
SetTransparent
(
false
);
}
// set EmphasisMark attribute
FontEmphasisMark
eFontEmphasisMark
=
EMPHASISMARK_NONE
;
switch
(
pTCPP
->
getTextEmphasisMark
()
)
...
...
editeng/source/editeng/editattr.cxx
Dosyayı görüntüle @
74fa26c8
...
...
@@ -246,6 +246,8 @@ EditCharAttribBackgroundColor::EditCharAttribBackgroundColor(
void
EditCharAttribBackgroundColor
::
SetFont
(
SvxFont
&
rFont
,
OutputDevice
*
)
{
#define BREAK_BKG_COLOR_SET_FONT 0
assert
(
BREAK_BKG_COLOR_SET_FONT
);
// XXX: checking if this is being called // FIXME(matteocam)
Color
aColor
=
((
const
SvxBackgroundColorItem
*
)
GetItem
())
->
GetValue
();
rFont
.
SetFillColor
(
aColor
);
// XXX: Is it SetFillColor we want?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment