summaryrefslogtreecommitdiff
path: root/sw/source/core
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2015-12-23 17:50:59 +0100
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2015-12-24 00:03:40 +0100
commit987a33d5226d5ec4c6fc5c9d3d70c9799e689b6b (patch)
treeb00d1fc3870da378f88a76fc8b02dd37b2a86d26 /sw/source/core
parent2cbeefa677220a035704d9c4c0dc31030565fc28 (diff)
refactor SwXStyle ctor
Change-Id: I306ca1b20af83519f81ca0867eb73cbbaa1874d2
Diffstat (limited to 'sw/source/core')
-rw-r--r--sw/source/core/unocore/unostyle.cxx57
1 files changed, 31 insertions, 26 deletions
diff --git a/sw/source/core/unocore/unostyle.cxx b/sw/source/core/unocore/unostyle.cxx
index 0009d8f2b5b7..cc9a0e8455ca 100644
--- a/sw/source/core/unocore/unostyle.cxx
+++ b/sw/source/core/unocore/unostyle.cxx
@@ -254,7 +254,6 @@ class SwXStyle : public cppu::WeakImplHelper
SwDoc* m_pDoc;
OUString m_sStyleName;
SfxStyleFamily m_eFamily; // for Notify
-
bool m_bIsDescriptor;
bool m_bIsConditional;
OUString m_sParentStyleName;
@@ -1084,53 +1083,59 @@ uno::Sequence< OUString > SwXStyle::getSupportedServiceNames() throw( uno::Runti
return aRet;
}
-SwXStyle::SwXStyle( SwDoc *pDoc, SfxStyleFamily eFam, bool bConditional) :
- m_pDoc( pDoc ),
- m_eFamily(eFam),
+static uno::Reference<beans::XPropertySet> lcl_GetStandardStyle(uno::Reference<container::XNameAccess>& rxStyleFamily)
+{
+ using return_t = decltype(lcl_GetStandardStyle(rxStyleFamily));
+ auto aResult(rxStyleFamily->getByName("Standard"));
+ if(!aResult.isExtractableTo(cppu::UnoType<return_t>::get()))
+ return {};
+ return aResult.get<return_t>();
+}
+static uno::Reference<container::XNameAccess> lcl_GetStyleFamily(SwDoc* pDoc, const SfxStyleFamily eFamily)
+{
+ using return_t = decltype(lcl_GetStyleFamily(pDoc, eFamily));
+ auto pEntries = lcl_GetStyleFamilyEntries();
+ const auto pEntry = std::find_if(pEntries->begin(), pEntries->end(),
+ [eFamily] (const StyleFamilyEntry& e) { return e.m_eFamily == eFamily; });
+ auto xModel(pDoc->GetDocShell()->GetBaseModel());
+ uno::Reference<style::XStyleFamiliesSupplier> xFamilySupplier(xModel, uno::UNO_QUERY);
+ auto xFamilies = xFamilySupplier->getStyleFamilies();
+ auto aResult(xFamilies->getByName(pEntry->m_sName));
+ if(!aResult.isExtractableTo(cppu::UnoType<return_t>::get()))
+ return {};
+ return aResult.get<return_t>();
+}
+
+SwXStyle::SwXStyle( SwDoc *pDoc, SfxStyleFamily eFamily, bool bConditional) :
+ m_pDoc(pDoc),
+ m_eFamily(eFamily),
m_bIsDescriptor(true),
m_bIsConditional(bConditional),
m_pBasePool(nullptr)
{
// Register ourselves as a listener to the document (via the page descriptor)
pDoc->getIDocumentStylePoolAccess().GetPageDescFromPool(RES_POOLPAGE_STANDARD)->Add(this);
- // get the property set for the default style data
- // First get the model
- uno::Reference < frame::XModel > xModel = pDoc->GetDocShell()->GetBaseModel();
- // Ask the model for it's family supplier interface
- uno::Reference < style::XStyleFamiliesSupplier > xFamilySupplier ( xModel, uno::UNO_QUERY );
- // Get the style families
- uno::Reference < container::XNameAccess > xFamilies = xFamilySupplier->getStyleFamilies();
-
- uno::Any aAny;
sal_uInt16 nMapId = PROPERTY_MAP_NUM_STYLE;
switch( m_eFamily )
{
case SFX_STYLE_FAMILY_CHAR:
{
nMapId = PROPERTY_MAP_CHAR_STYLE;
- aAny = xFamilies->getByName ("CharacterStyles");
- // Get the Frame family (and keep it for later)
- aAny >>= mxStyleFamily;
+ mxStyleFamily = lcl_GetStyleFamily(pDoc, eFamily);
}
break;
case SFX_STYLE_FAMILY_PARA:
{
nMapId = m_bIsConditional ? PROPERTY_MAP_CONDITIONAL_PARA_STYLE : PROPERTY_MAP_PARA_STYLE;
- aAny = xFamilies->getByName ("ParagraphStyles");
- // Get the Frame family (and keep it for later)
- aAny >>= mxStyleFamily;
- aAny = mxStyleFamily->getByName ("Standard");
- aAny >>= mxStyleData;
+ mxStyleFamily = lcl_GetStyleFamily(pDoc, eFamily);
+ mxStyleData = lcl_GetStandardStyle(mxStyleFamily);
}
break;
case SFX_STYLE_FAMILY_PAGE:
{
nMapId = PROPERTY_MAP_PAGE_STYLE;
- aAny = xFamilies->getByName ("PageStyles");
- // Get the Frame family (and keep it for later)
- aAny >>= mxStyleFamily;
- aAny = mxStyleFamily->getByName ("Standard");
- aAny >>= mxStyleData;
+ mxStyleFamily = lcl_GetStyleFamily(pDoc, eFamily);
+ mxStyleData = lcl_GetStandardStyle(mxStyleFamily);
}
break;
case SFX_STYLE_FAMILY_FRAME :