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
143ecebc
Kaydet (Commit)
143ecebc
authored
Şub 01, 2013
tarafından
Radek Doulik
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
export darken/darkeless/lighten/lightenless commands
Change-Id: I4531ab82a52e3da41f12409185f7c0730381aa23
üst
52c2de96
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
0 deletions
+52
-0
shapeexport4.cxx
xmloff/source/draw/shapeexport4.cxx
+24
-0
ximpcustomshape.cxx
xmloff/source/draw/ximpcustomshape.cxx
+28
-0
No files found.
xmloff/source/draw/shapeexport4.cxx
Dosyayı görüntüle @
143ecebc
...
@@ -413,6 +413,30 @@ void ImpExportEnhancedPath( SvXMLExport& rExport,
...
@@ -413,6 +413,30 @@ void ImpExportEnhancedPath( SvXMLExport& rExport,
i
+=
2
;
i
+=
2
;
}
}
break
;
break
;
case
com
:
:
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
DARKEN
:
if
(
bExtended
)
aStrBuffer
.
append
(
(
sal_Unicode
)
'H'
);
else
bNeedExtended
=
true
;
break
;
case
com
:
:
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
DARKENLESS
:
if
(
bExtended
)
aStrBuffer
.
append
(
(
sal_Unicode
)
'I'
);
else
bNeedExtended
=
true
;
break
;
case
com
:
:
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
LIGHTEN
:
if
(
bExtended
)
aStrBuffer
.
append
(
(
sal_Unicode
)
'J'
);
else
bNeedExtended
=
true
;
break
;
case
com
:
:
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
LIGHTENLESS
:
if
(
bExtended
)
aStrBuffer
.
append
(
(
sal_Unicode
)
'K'
);
else
bNeedExtended
=
true
;
break
;
default
:
// ups, seems to be something wrong
default
:
// ups, seems to be something wrong
{
{
aSegment
.
Count
=
1
;
aSegment
.
Count
=
1
;
...
...
xmloff/source/draw/ximpcustomshape.cxx
Dosyayı görüntüle @
143ecebc
...
@@ -702,6 +702,34 @@ void GetEnhancedPath( std::vector< com::sun::star::beans::PropertyValue >& rDest
...
@@ -702,6 +702,34 @@ void GetEnhancedPath( std::vector< com::sun::star::beans::PropertyValue >& rDest
nIndex
++
;
nIndex
++
;
}
}
break
;
break
;
case
'H'
:
{
nLatestSegmentCommand
=
com
::
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
DARKEN
;
nParametersNeeded
=
0
;
nIndex
++
;
}
break
;
case
'I'
:
{
nLatestSegmentCommand
=
com
::
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
DARKENLESS
;
nParametersNeeded
=
0
;
nIndex
++
;
}
break
;
case
'J'
:
{
nLatestSegmentCommand
=
com
::
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
LIGHTEN
;
nParametersNeeded
=
0
;
nIndex
++
;
}
break
;
case
'K'
:
{
nLatestSegmentCommand
=
com
::
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
LIGHTENLESS
;
nParametersNeeded
=
0
;
nIndex
++
;
}
break
;
case
'W'
:
case
'W'
:
{
{
nLatestSegmentCommand
=
com
::
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
CLOCKWISEARCTO
;
nLatestSegmentCommand
=
com
::
sun
::
star
::
drawing
::
EnhancedCustomShapeSegmentCommand
::
CLOCKWISEARCTO
;
...
...
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