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
00fc45e7
Kaydet (Commit)
00fc45e7
authored
Haz 16, 2014
tarafından
matteocam
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added Text Fill Color in TextDecoratedPrimitive2D
Change-Id: I8c3946c08d20cc2ca2af6f17a2a57d6c9a5cfa23
üst
4177d9b3
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
3 deletions
+10
-3
metafileprimitive2d.cxx
drawinglayer/source/primitive2d/metafileprimitive2d.cxx
+2
-0
textbreakuphelper.cxx
drawinglayer/source/primitive2d/textbreakuphelper.cxx
+1
-0
textdecoratedprimitive2d.cxx
drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx
+2
-1
textdecoratedprimitive2d.hxx
...ude/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx
+1
-0
svdotextdecomposition.cxx
svx/source/svdraw/svdotextdecomposition.cxx
+4
-2
No files found.
drawinglayer/source/primitive2d/metafileprimitive2d.cxx
Dosyayı görüntüle @
00fc45e7
...
...
@@ -1293,6 +1293,7 @@ namespace
// prepare FontColor and Locale
const
basegfx
::
BColor
aFontColor
(
rProperty
.
getTextColor
());
const
basegfx
::
BColor
aBFillColor
(
rFont
.
GetFillColor
().
getBColor
());
const
com
::
sun
::
star
::
lang
::
Locale
aLocale
(
LanguageTag
(
rProperty
.
getLanguageType
()).
getLocale
());
const
bool
bWordLineMode
(
rFont
.
IsWordLineMode
());
...
...
@@ -1354,6 +1355,7 @@ namespace
aFontAttribute
,
aLocale
,
aFontColor
,
aBFillColor
,
// attributes for TextDecoratedPortionPrimitive2D
rProperty
.
getOverlineColorActive
()
?
rProperty
.
getOverlineColor
()
:
aFontColor
,
...
...
drawinglayer/source/primitive2d/textbreakuphelper.cxx
Dosyayı görüntüle @
00fc45e7
...
...
@@ -144,6 +144,7 @@ namespace drawinglayer
mrSource
.
getFontAttribute
(),
mrSource
.
getLocale
(),
mrSource
.
getFontColor
(),
mrSource
.
getTextFillColor
(),
pTextDecoratedPortionPrimitive2D
->
getOverlineColor
(),
pTextDecoratedPortionPrimitive2D
->
getTextlineColor
(),
...
...
drawinglayer/source/primitive2d/textdecoratedprimitive2d.cxx
Dosyayı görüntüle @
00fc45e7
...
...
@@ -317,6 +317,7 @@ namespace drawinglayer
const
attribute
::
FontAttribute
&
rFontAttribute
,
const
::
com
::
sun
::
star
::
lang
::
Locale
&
rLocale
,
const
basegfx
::
BColor
&
rFontColor
,
const
basegfx
::
BColor
&
rFillColor
,
// local parameters
const
basegfx
::
BColor
&
rOverlineColor
,
...
...
@@ -331,7 +332,7 @@ namespace drawinglayer
bool
bEmphasisMarkBelow
,
TextRelief
eTextRelief
,
bool
bShadow
)
:
TextSimplePortionPrimitive2D
(
rNewTransform
,
rText
,
nTextPosition
,
nTextLength
,
rDXArray
,
rFontAttribute
,
rLocale
,
rFontColor
),
:
TextSimplePortionPrimitive2D
(
rNewTransform
,
rText
,
nTextPosition
,
nTextLength
,
rDXArray
,
rFontAttribute
,
rLocale
,
rFontColor
,
false
,
0
,
rFillColor
),
maOverlineColor
(
rOverlineColor
),
maTextlineColor
(
rTextlineColor
),
meFontOverline
(
eFontOverline
),
...
...
include/drawinglayer/primitive2d/textdecoratedprimitive2d.hxx
Dosyayı görüntüle @
00fc45e7
...
...
@@ -94,6 +94,7 @@ namespace drawinglayer
const
attribute
::
FontAttribute
&
rFontAttribute
,
const
::
com
::
sun
::
star
::
lang
::
Locale
&
rLocale
,
const
basegfx
::
BColor
&
rFontColor
,
const
basegfx
::
BColor
&
rFillColor
,
/// local parameters
const
basegfx
::
BColor
&
rOverlineColor
,
...
...
svx/source/svdraw/svdotextdecomposition.cxx
Dosyayı görüntüle @
00fc45e7
...
...
@@ -260,7 +260,7 @@ namespace
const
basegfx
::
BColor
aBFontColor
(
aFontColor
.
getBColor
());
const
Color
aTextFillColor
(
rInfo
.
mrFont
.
GetFillColor
());
const
basegfx
::
BColor
aBTextFill
(
aTextFillColor
.
getBColor
());
const
basegfx
::
BColor
aBTextFill
Color
(
aTextFillColor
.
getBColor
());
// prepare wordLineMode (for underline and strikeout)
// NOT for bullet texts. It is set (this may be an error by itself), but needs to be suppressed to hinder e.g. '1)'
...
...
@@ -340,6 +340,7 @@ namespace
aFontAttribute
,
rInfo
.
mpLocale
?
*
rInfo
.
mpLocale
:
::
com
::
sun
::
star
::
lang
::
Locale
(),
aBFontColor
,
aBTextFillColor
,
// attributes for TextDecoratedPortionPrimitive2D
aBOverlineColor
,
...
...
@@ -368,7 +369,8 @@ namespace
rInfo
.
mpLocale
?
*
rInfo
.
mpLocale
:
::
com
::
sun
::
star
::
lang
::
Locale
(),
aBFontColor
,
rInfo
.
mbFilled
,
rInfo
.
mnWidthToFill
);
rInfo
.
mnWidthToFill
,
aBTextFillColor
);
}
if
(
rInfo
.
mbEndOfBullet
)
...
...
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