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
717f14ff
Kaydet (Commit)
717f14ff
authored
Ock 02, 2016
tarafından
Bjoern Michaelsen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make PutItemToSet and SetStyleProperty members to save half the params
Change-Id: I77a1c71f1a801e83f861b43e05e456a75fc511da
üst
9384b619
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
43 deletions
+28
-43
unostyle.cxx
sw/source/core/unocore/unostyle.cxx
+28
-43
No files found.
sw/source/core/unocore/unostyle.cxx
Dosyayı görüntüle @
717f14ff
...
@@ -363,6 +363,8 @@ public:
...
@@ -363,6 +363,8 @@ public:
void
Invalidate
();
void
Invalidate
();
void
ApplyDescriptorProperties
();
void
ApplyDescriptorProperties
();
void
SetStyleName
(
const
OUString
&
rSet
){
m_sStyleName
=
rSet
;}
void
SetStyleName
(
const
OUString
&
rSet
){
m_sStyleName
=
rSet
;}
void
SetStyleProperty
(
const
SfxItemPropertySimpleEntry
&
rEntry
,
const
SfxItemPropertySet
&
rPropSet
,
const
uno
::
Any
&
rValue
,
SwStyleBase_Impl
&
rBase
)
throw
(
beans
::
PropertyVetoException
,
lang
::
IllegalArgumentException
,
lang
::
WrappedTargetException
,
uno
::
RuntimeException
,
std
::
exception
);
void
PutItemToSet
(
const
SvxSetItem
*
pSetItem
,
const
SfxItemPropertySet
&
rPropSet
,
const
SfxItemPropertySimpleEntry
&
rEntry
,
const
uno
::
Any
&
rVal
,
SwStyleBase_Impl
&
rBaseImpl
);
};
};
class
SwXFrameStyle
class
SwXFrameStyle
...
@@ -1496,38 +1498,41 @@ void SwXStyle::SetPropertyValue<RES_BACKGROUND>(const SfxItemPropertySimpleEntry
...
@@ -1496,38 +1498,41 @@ void SwXStyle::SetPropertyValue<RES_BACKGROUND>(const SfxItemPropertySimpleEntry
// to potentially override parent style, which is unknown yet
// to potentially override parent style, which is unknown yet
if
(
aChangedBrushItem
==
aOriginalBrushItem
&&
(
MID_GRAPHIC_TRANSPARENT
!=
nMemberId
||
!
aValue
.
has
<
bool
>
()
||
!
aValue
.
get
<
bool
>
()))
if
(
aChangedBrushItem
==
aOriginalBrushItem
&&
(
MID_GRAPHIC_TRANSPARENT
!=
nMemberId
||
!
aValue
.
has
<
bool
>
()
||
!
aValue
.
get
<
bool
>
()))
return
;
return
;
setSvxBrushItemAsFillAttributesToTargetSet
(
aChangedBrushItem
,
rStyleSet
);
setSvxBrushItemAsFillAttributesToTargetSet
(
aChangedBrushItem
,
rStyleSet
);
}
}
static
void
lcl_SetStyleProperty
(
const
SfxItemPropertySimpleEntry
&
rEntry
,
void
SwXStyle
::
SetStyleProperty
(
const
SfxItemPropertySimpleEntry
&
rEntry
,
const
SfxItemPropertySet
&
rPropSet
,
const
uno
::
Any
&
rValue
,
SwStyleBase_Impl
&
rBase
)
throw
(
beans
::
PropertyVetoException
,
lang
::
IllegalArgumentException
,
lang
::
WrappedTargetException
,
uno
::
RuntimeException
,
std
::
exception
)
const
SfxItemPropertySet
&
rPropSet
,
const
uno
::
Any
&
rValue
,
SwStyleBase_Impl
&
rBase
,
SfxStyleSheetBasePool
*
pBasePool
,
SwDoc
*
pDoc
,
SfxStyleFamily
eFamily
)
throw
(
beans
::
PropertyVetoException
,
lang
::
IllegalArgumentException
,
lang
::
WrappedTargetException
,
uno
::
RuntimeException
,
std
::
exception
)
{
{
SfxStyleSheetBasePool
*
pBasePool
=
m_pBasePool
;
SfxStyleFamily
eFamily
=
m_rEntry
.
m_eFamily
;
SwDoc
*
pDoc
(
m_pDoc
);
//UUUU adapted switch logic to a more readable state; removed goto's and made
//UUUU adapted switch logic to a more readable state; removed goto's and made
// execution of standard setting of proerty in ItemSet dependent of this variable
// execution of standard setting of proerty in ItemSet dependent of this variable
bool
bDone
(
false
);
bool
bDone
(
false
);
uno
::
Any
aValue
(
rValue
);
uno
::
Any
aValue
(
rValue
);
const
auto
nMemberId
(
lcl_TranslateMetric
(
rEntry
,
pDoc
,
aValue
));
const
auto
nMemberId
(
lcl_TranslateMetric
(
rEntry
,
pDoc
,
aValue
));
switch
(
rEntry
.
nWID
)
switch
(
rEntry
.
nWID
)
{
{
case
FN_UNO_HIDDEN
:
case
FN_UNO_HIDDEN
:
SetPropertyValue
<
FN_UNO_HIDDEN
>
(
rEntry
,
rPropSet
,
rValue
,
rBase
);
bDone
=
true
;
break
;
case
FN_UNO_STYLE_INTEROP_GRAB_BAG
:
case
FN_UNO_STYLE_INTEROP_GRAB_BAG
:
SetPropertyValue
<
FN_UNO_STYLE_INTEROP_GRAB_BAG
>
(
rEntry
,
rPropSet
,
rValue
,
rBase
);
bDone
=
true
;
break
;
case
XATTR_FILLGRADIENT
:
case
XATTR_FILLGRADIENT
:
case
XATTR_FILLHATCH
:
case
XATTR_FILLHATCH
:
case
XATTR_FILLBITMAP
:
case
XATTR_FILLBITMAP
:
case
XATTR_FILLFLOATTRANSPARENCE
:
case
XATTR_FILLFLOATTRANSPARENCE
:
SetPropertyValue
<
XATTR_FILLGRADIENT
>
(
rEntry
,
rPropSet
,
rValue
,
rBase
);
bDone
=
true
;
break
;
case
RES_BACKGROUND
:
case
RES_BACKGROUND
:
assert
(
false
);
SetPropertyValue
<
RES_BACKGROUND
>
(
rEntry
,
rPropSet
,
rValue
,
rBase
);
bDone
=
true
;
break
;
break
;
case
OWN_ATTR_FILLBMP_MODE
:
case
OWN_ATTR_FILLBMP_MODE
:
{
{
...
@@ -1966,7 +1971,6 @@ static void lcl_SetStyleProperty(const SfxItemPropertySimpleEntry& rEntry,
...
@@ -1966,7 +1971,6 @@ static void lcl_SetStyleProperty(const SfxItemPropertySimpleEntry& rEntry,
break
;
break
;
}
}
}
}
if
(
!
bDone
)
if
(
!
bDone
)
lcl_SetDefaultWay
(
rEntry
,
rPropSet
,
aValue
,
rBase
);
lcl_SetDefaultWay
(
rEntry
,
rPropSet
,
aValue
,
rBase
);
}
}
...
@@ -2010,26 +2014,7 @@ void SAL_CALL SwXStyle::SetPropertyValues_Impl(
...
@@ -2010,26 +2014,7 @@ void SAL_CALL SwXStyle::SetPropertyValues_Impl(
throw
beans
::
PropertyVetoException
(
"Property is read-only: "
+
pNames
[
nProp
],
static_cast
<
cppu
::
OWeakObject
*>
(
this
));
throw
beans
::
PropertyVetoException
(
"Property is read-only: "
+
pNames
[
nProp
],
static_cast
<
cppu
::
OWeakObject
*>
(
this
));
if
(
aBaseImpl
.
getNewBase
().
is
())
if
(
aBaseImpl
.
getNewBase
().
is
())
{
{
switch
(
pEntry
->
nWID
)
SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
{
case
FN_UNO_HIDDEN
:
SetPropertyValue
<
FN_UNO_HIDDEN
>
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
case
FN_UNO_STYLE_INTEROP_GRAB_BAG
:
SetPropertyValue
<
FN_UNO_STYLE_INTEROP_GRAB_BAG
>
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
case
XATTR_FILLGRADIENT
:
case
XATTR_FILLHATCH
:
case
XATTR_FILLBITMAP
:
case
XATTR_FILLFLOATTRANSPARENCE
:
// not yet needed; activate when LineStyle support may be added
// case XATTR_LINESTART:
// case XATTR_LINEEND:
// case XATTR_LINEDASH:
SetPropertyValue
<
XATTR_FILLGRADIENT
>
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
case
RES_BACKGROUND
:
SetPropertyValue
<
RES_BACKGROUND
>
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
default
:
lcl_SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
m_pDoc
,
m_rEntry
.
m_eFamily
);
}
}
}
else
if
(
m_bIsDescriptor
)
else
if
(
m_bIsDescriptor
)
{
{
...
@@ -3067,20 +3052,20 @@ SwXPageStyle::~SwXPageStyle()
...
@@ -3067,20 +3052,20 @@ SwXPageStyle::~SwXPageStyle()
}
}
static
void
lcl_putItemToSet
(
const
SvxSetItem
*
pSetItem
,
const
SfxItemPropertySet
&
rPropSet
,
const
SfxItemPropertySimpleEntry
&
rEntry
,
const
uno
::
Any
&
rVal
,
SwStyleBase_Impl
&
rBaseImpl
,
SfxStyleSheetBasePool
*
pPool
,
SwDoc
*
pDoc
,
SfxStyleFamily
eFamily
)
void
SwXStyle
::
PutItemToSet
(
const
SvxSetItem
*
pSetItem
,
const
SfxItemPropertySet
&
rPropSet
,
const
SfxItemPropertySimpleEntry
&
rEntry
,
const
uno
::
Any
&
rVal
,
SwStyleBase_Impl
&
rBaseImpl
)
{
{
// create a new SvxSetItem and get it's ItemSet as new target
// create a new SvxSetItem and get it's ItemSet as new target
SvxSetItem
*
pNewSetItem
=
static_cast
<
SvxSetItem
*
>
(
pSetItem
->
Clone
());
SvxSetItem
*
pNewSetItem
=
static_cast
<
SvxSetItem
*
>
(
pSetItem
->
Clone
());
SfxItemSet
&
rSetSet
=
pNewSetItem
->
GetItemSet
();
SfxItemSet
&
rSetSet
=
pNewSetItem
->
GetItemSet
();
// set parent to ItemSet to ensure XFILL_NONE as XFillStyleItem
// set parent to ItemSet to ensure XFILL_NONE as XFillStyleItem
rSetSet
.
SetParent
(
&
pDoc
->
GetDfltFrameFormat
()
->
GetAttrSet
());
rSetSet
.
SetParent
(
&
m_
pDoc
->
GetDfltFrameFormat
()
->
GetAttrSet
());
// replace the used SfxItemSet at the SwStyleBase_Impl temporarily and use the
// replace the used SfxItemSet at the SwStyleBase_Impl temporarily and use the
// default method to set the property
// default method to set the property
{
{
SwStyleBase_Impl
::
ItemSetOverrider
o
(
rBaseImpl
,
&
rSetSet
);
SwStyleBase_Impl
::
ItemSetOverrider
o
(
rBaseImpl
,
&
rSetSet
);
lcl_SetStyleProperty
(
rEntry
,
rPropSet
,
rVal
,
rBaseImpl
,
pPool
,
pDoc
,
eFamily
);
SetStyleProperty
(
rEntry
,
rPropSet
,
rVal
,
rBaseImpl
);
}
}
// reset paret at ItemSet from SetItem
// reset paret at ItemSet from SetItem
...
@@ -3169,7 +3154,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
...
@@ -3169,7 +3154,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
if
(
lcl_GetHeaderFooterItem
(
aBaseImpl
.
GetItemSet
(),
if
(
lcl_GetHeaderFooterItem
(
aBaseImpl
.
GetItemSet
(),
rPropName
,
bFooter
,
pSetItem
))
rPropName
,
bFooter
,
pSetItem
))
{
{
lcl_putItemToSet
(
pSetItem
,
*
pPropSet
,
*
pEntry
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
GetDoc
(),
GetFamily
()
);
PutItemToSet
(
pSetItem
,
*
pPropSet
,
*
pEntry
,
pValues
[
nProp
],
aBaseImpl
);
if
(
pEntry
->
nWID
==
SID_ATTR_PAGE_SHARED_FIRST
)
if
(
pEntry
->
nWID
==
SID_ATTR_PAGE_SHARED_FIRST
)
{
{
...
@@ -3178,7 +3163,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
...
@@ -3178,7 +3163,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
bFooter
?
SID_ATTR_PAGE_HEADERSET
:
SID_ATTR_PAGE_FOOTERSET
,
bFooter
?
SID_ATTR_PAGE_HEADERSET
:
SID_ATTR_PAGE_FOOTERSET
,
false
,
reinterpret_cast
<
const
SfxPoolItem
**>
(
&
pSetItem
)))
false
,
reinterpret_cast
<
const
SfxPoolItem
**>
(
&
pSetItem
)))
{
{
lcl_putItemToSet
(
pSetItem
,
*
pPropSet
,
*
pEntry
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
GetDoc
(),
GetFamily
()
);
PutItemToSet
(
pSetItem
,
*
pPropSet
,
*
pEntry
,
pValues
[
nProp
],
aBaseImpl
);
}
}
}
}
}
}
...
@@ -3233,7 +3218,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
...
@@ -3233,7 +3218,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
default
:
default
:
{
{
// part of PageStyle, fallback to default
// part of PageStyle, fallback to default
lcl_SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
GetDoc
(),
GetFamily
()
);
SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
}
}
}
}
}
}
...
@@ -3284,7 +3269,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
...
@@ -3284,7 +3269,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
// default method to set the property
// default method to set the property
{
{
SwStyleBase_Impl
::
ItemSetOverrider
o
(
aBaseImpl
,
&
rSetSet
);
SwStyleBase_Impl
::
ItemSetOverrider
o
(
aBaseImpl
,
&
rSetSet
);
lcl_SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
GetDoc
(),
GetFamily
()
);
SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
}
}
// reset paret at ItemSet from SetItem
// reset paret at ItemSet from SetItem
...
@@ -3298,7 +3283,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
...
@@ -3298,7 +3283,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
else
else
{
{
// part of PageStyle, fallback to default
// part of PageStyle, fallback to default
lcl_SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
GetDoc
(),
GetFamily
()
);
SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
}
}
break
;
break
;
...
@@ -3328,7 +3313,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
...
@@ -3328,7 +3313,7 @@ void SAL_CALL SwXPageStyle::SetPropertyValues_Impl(
default
:
default
:
{
{
//UUUU
//UUUU
lcl_SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
,
m_pBasePool
,
GetDoc
(),
GetFamily
()
);
SetStyleProperty
(
*
pEntry
,
*
pPropSet
,
pValues
[
nProp
],
aBaseImpl
);
break
;
break
;
}
}
}
}
...
...
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