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
bdd1a3e1
Kaydet (Commit)
bdd1a3e1
authored
Tem 09, 2012
tarafından
Andre Fischer
Kaydeden (comit)
Xisco Fauli
Mar 31, 2013
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#i120039# Export more bitmap fill style parameters.
Reported by: Du Jing Patch by: zjchen Review by: Andre Fischer
üst
c81f869a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
1 deletion
+37
-1
escherex.cxx
filter/source/msfilter/escherex.cxx
+37
-1
No files found.
filter/source/msfilter/escherex.cxx
Dosyayı görüntüle @
bdd1a3e1
...
...
@@ -1453,7 +1453,43 @@ sal_Bool EscherPropertyContainer::CreateGraphicProperties(
}
if
(
eBitmapMode
==
::
com
::
sun
::
star
::
drawing
::
BitmapMode_REPEAT
)
AddOpt
(
ESCHER_Prop_fillType
,
ESCHER_FillTexture
);
{
sal_Int32
nSizeX
=
0
,
nSizeY
=
0
,
nOffsetX
=
0
,
nOffsetY
=
0
,
nPosOffsetX
=
0
,
nPosOffsetY
=
0
;
if
(
EscherPropertyValueHelper
::
GetPropertyValue
(
aAny
,
rXPropSet
,
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"FillBitmapSizeX"
)
),
sal_True
)
)
{
aAny
>>=
nSizeX
;
}
if
(
EscherPropertyValueHelper
::
GetPropertyValue
(
aAny
,
rXPropSet
,
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"FillBitmapSizeY"
)
),
sal_True
)
)
{
aAny
>>=
nSizeY
;
}
if
(
EscherPropertyValueHelper
::
GetPropertyValue
(
aAny
,
rXPropSet
,
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"FillBitmapOffsetX"
)
),
sal_True
)
)
{
aAny
>>=
nOffsetX
;
}
if
(
EscherPropertyValueHelper
::
GetPropertyValue
(
aAny
,
rXPropSet
,
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"FillBitmapOffsetY"
)
),
sal_True
)
)
{
aAny
>>=
nOffsetY
;
}
if
(
EscherPropertyValueHelper
::
GetPropertyValue
(
aAny
,
rXPropSet
,
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"FillBitmapPositionOffsetX"
)
),
sal_True
)
)
{
aAny
>>=
nPosOffsetX
;
}
if
(
EscherPropertyValueHelper
::
GetPropertyValue
(
aAny
,
rXPropSet
,
String
(
RTL_CONSTASCII_USTRINGPARAM
(
"FillBitmapPositionOffsetY"
)
),
sal_True
)
)
{
aAny
>>=
nPosOffsetY
;
}
if
(
nSizeX
==
-
100
&&
nSizeY
==
-
100
&&
nOffsetX
==
0
&&
nOffsetY
==
0
&&
nPosOffsetX
==
0
&&
nPosOffsetY
==
0
)
AddOpt
(
ESCHER_Prop_fillType
,
ESCHER_FillPicture
);
else
AddOpt
(
ESCHER_Prop_fillType
,
ESCHER_FillTexture
);
}
else
AddOpt
(
ESCHER_Prop_fillType
,
ESCHER_FillPicture
);
...
...
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