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
43b05776
Kaydet (Commit)
43b05776
authored
Haz 15, 2013
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#58819 VML export of ESCHER_Prop_fillOpacity
Change-Id: Ic50be88b484e5bfba60c5bd8dafb7e6da0b33c9e
üst
98f90fde
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
vmlexport.cxx
oox/source/export/vmlexport.cxx
+6
-0
No files found.
oox/source/export/vmlexport.cxx
Dosyayı görüntüle @
43b05776
...
@@ -516,6 +516,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
...
@@ -516,6 +516,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
case
ESCHER_Prop_fillBackColor
:
// 387
case
ESCHER_Prop_fillBackColor
:
// 387
case
ESCHER_Prop_fillBlip
:
// 390
case
ESCHER_Prop_fillBlip
:
// 390
case
ESCHER_Prop_fNoFillHitTest
:
// 447
case
ESCHER_Prop_fNoFillHitTest
:
// 447
case
ESCHER_Prop_fillOpacity
:
// 386
{
{
sal_uInt32
nValue
;
sal_uInt32
nValue
;
sax_fastparser
::
FastAttributeList
*
pAttrList
=
m_pSerializer
->
createAttrList
();
sax_fastparser
::
FastAttributeList
*
pAttrList
=
m_pSerializer
->
createAttrList
();
...
@@ -567,6 +568,10 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
...
@@ -567,6 +568,10 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
if
(
rProps
.
GetOpt
(
ESCHER_Prop_fNoFillHitTest
,
nValue
)
)
if
(
rProps
.
GetOpt
(
ESCHER_Prop_fNoFillHitTest
,
nValue
)
)
impl_AddBool
(
pAttrList
,
XML_detectmouseclick
,
nValue
);
impl_AddBool
(
pAttrList
,
XML_detectmouseclick
,
nValue
);
if
(
rProps
.
GetOpt
(
ESCHER_Prop_fillOpacity
,
nValue
))
// Partly undo the transformation at the end of EscherPropertyContainer::CreateFillProperties(): VML opacity is 0..1.
pAttrList
->
add
(
XML_opacity
,
OString
::
number
(
double
((
nValue
*
100
)
>>
16
)
/
100
));
m_pSerializer
->
singleElementNS
(
XML_v
,
XML_fill
,
XFastAttributeListRef
(
pAttrList
)
);
m_pSerializer
->
singleElementNS
(
XML_v
,
XML_fill
,
XFastAttributeListRef
(
pAttrList
)
);
}
}
bAlreadyWritten
[
ESCHER_Prop_fillType
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fillType
]
=
true
;
...
@@ -574,6 +579,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
...
@@ -574,6 +579,7 @@ void VMLExport::Commit( EscherPropertyContainer& rProps, const Rectangle& rRect
bAlreadyWritten
[
ESCHER_Prop_fillBackColor
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fillBackColor
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fillBlip
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fillBlip
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fNoFillHitTest
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fNoFillHitTest
]
=
true
;
bAlreadyWritten
[
ESCHER_Prop_fillOpacity
]
=
true
;
break
;
break
;
case
ESCHER_Prop_lineColor
:
// 448
case
ESCHER_Prop_lineColor
:
// 448
...
...
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