summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-06-29 02:06:25 +0200
committerBosdonnat Cedric <cedric.bosdonnat@free.fr>2013-07-01 13:33:27 +0000
commit902f6d61e1e9ffdf39544d8b168996b0093ac57e (patch)
tree95eea5930008a3686bcb39511066e8bca6052a29 /sc
parent336d684a940165d15b3581a72d8bd45743bf98ee (diff)
extract this functionality from the uno code
we need this code in our next step for some mappings in the filters code Change-Id: I059d9d05877846215e1a967123dc253de605417e (cherry picked from commit b3aabf223ec7bc2678fd6dfbbbbb79ab7f079e5b) Reviewed-on: https://gerrit.libreoffice.org/4614 Reviewed-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr> Tested-by: Bosdonnat Cedric <cedric.bosdonnat@free.fr>
Diffstat (limited to 'sc')
-rw-r--r--sc/Library_sc.mk1
-rw-r--r--sc/inc/stylehelper.hxx29
-rw-r--r--sc/inc/styleuno.hxx9
-rw-r--r--sc/source/core/tool/stylehelper.cxx157
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx1
-rw-r--r--sc/source/ui/unoobj/fmtuno.cxx1
-rw-r--r--sc/source/ui/unoobj/styleuno.cxx143
7 files changed, 190 insertions, 151 deletions
diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk
index 94ad19e17aec..2583937b46e0 100644
--- a/sc/Library_sc.mk
+++ b/sc/Library_sc.mk
@@ -238,6 +238,7 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
sc/source/core/tool/scmatrix \
sc/source/core/tool/simplerangelist \
sc/source/core/tool/stringutil \
+ sc/source/core/tool/stylehelper \
sc/source/core/tool/subtotal \
sc/source/core/tool/token \
sc/source/core/tool/typedstrdata \
diff --git a/sc/inc/stylehelper.hxx b/sc/inc/stylehelper.hxx
new file mode 100644
index 000000000000..31f79d1191b1
--- /dev/null
+++ b/sc/inc/stylehelper.hxx
@@ -0,0 +1,29 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include <rtl/ustring.hxx>
+
+class ScStyleNameConversion
+{
+public:
+ static OUString DisplayToProgrammaticName( const OUString& rDispName, sal_uInt16 nType );
+ static OUString ProgrammaticToDisplayName( const OUString& rProgName, sal_uInt16 nType );
+};
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/inc/styleuno.hxx b/sc/inc/styleuno.hxx
index bd7d8a42d1e6..29ab960a1515 100644
--- a/sc/inc/styleuno.hxx
+++ b/sc/inc/styleuno.hxx
@@ -43,15 +43,6 @@ class ScDocShell;
class ScStyleFamilyObj;
class ScStyleObj;
-
-class ScStyleNameConversion
-{
-public:
- static String DisplayToProgrammaticName( const String& rDispName, sal_uInt16 nType );
- static String ProgrammaticToDisplayName( const String& rProgName, sal_uInt16 nType );
-};
-
-
class ScStyleFamiliesObj : public ::cppu::WeakImplHelper4<
::com::sun::star::container::XIndexAccess,
::com::sun::star::container::XNameAccess,
diff --git a/sc/source/core/tool/stylehelper.cxx b/sc/source/core/tool/stylehelper.cxx
new file mode 100644
index 000000000000..a5e5b5bb194e
--- /dev/null
+++ b/sc/source/core/tool/stylehelper.cxx
@@ -0,0 +1,157 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include <rsc/rscsfx.hxx>
+
+#include "stylehelper.hxx"
+#include "global.hxx"
+#include "globstr.hrc"
+
+// conversion programmatic <-> display (visible) name
+// currently, the core always has the visible names
+// the api is required to use programmatic names for default styles
+// these programmatic names must never change!
+
+#define SC_STYLE_PROG_STANDARD "Default"
+#define SC_STYLE_PROG_RESULT "Result"
+#define SC_STYLE_PROG_RESULT1 "Result2"
+#define SC_STYLE_PROG_HEADLINE "Heading"
+#define SC_STYLE_PROG_HEADLINE1 "Heading1"
+#define SC_STYLE_PROG_REPORT "Report"
+
+struct ScDisplayNameMap
+{
+ OUString aDispName;
+ OUString aProgName;
+};
+
+static const ScDisplayNameMap* lcl_GetStyleNameMap( sal_uInt16 nType )
+{
+ if ( nType == SFX_STYLE_FAMILY_PARA )
+ {
+ static bool bCellMapFilled = false;
+ static ScDisplayNameMap aCellMap[6];
+ if ( !bCellMapFilled )
+ {
+ aCellMap[0].aDispName = ScGlobal::GetRscString( STR_STYLENAME_STANDARD );
+ aCellMap[0].aProgName = OUString( SC_STYLE_PROG_STANDARD );
+
+ aCellMap[1].aDispName = ScGlobal::GetRscString( STR_STYLENAME_RESULT );
+ aCellMap[1].aProgName = OUString( SC_STYLE_PROG_RESULT );
+
+ aCellMap[2].aDispName = ScGlobal::GetRscString( STR_STYLENAME_RESULT1 );
+ aCellMap[2].aProgName = OUString( SC_STYLE_PROG_RESULT1 );
+
+ aCellMap[3].aDispName = ScGlobal::GetRscString( STR_STYLENAME_HEADLINE );
+ aCellMap[3].aProgName = OUString( SC_STYLE_PROG_HEADLINE );
+
+ aCellMap[4].aDispName = ScGlobal::GetRscString( STR_STYLENAME_HEADLINE1 );
+ aCellMap[4].aProgName = OUString( SC_STYLE_PROG_HEADLINE1 );
+
+ // last entry remains empty
+
+ bCellMapFilled = true;
+ }
+ return aCellMap;
+ }
+ else if ( nType == SFX_STYLE_FAMILY_PAGE )
+ {
+ static bool bPageMapFilled = false;
+ static ScDisplayNameMap aPageMap[3];
+ if ( !bPageMapFilled )
+ {
+ aPageMap[0].aDispName = ScGlobal::GetRscString( STR_STYLENAME_STANDARD );
+ aPageMap[0].aProgName = OUString( SC_STYLE_PROG_STANDARD );
+
+ aPageMap[1].aDispName = ScGlobal::GetRscString( STR_STYLENAME_REPORT );
+ aPageMap[1].aProgName = OUString( SC_STYLE_PROG_REPORT );
+
+ // last entry remains empty
+
+ bPageMapFilled = true;
+ }
+ return aPageMap;
+ }
+ OSL_FAIL("invalid family");
+ return NULL;
+}
+
+// programmatic name suffix for display names that match other programmatic names
+// is " (user)" including a space
+
+#define SC_SUFFIX_USER " (user)"
+#define SC_SUFFIX_USER_LEN 7
+
+static bool lcl_EndsWithUser( const OUString& rString )
+{
+ return rString.endsWith(SC_SUFFIX_USER);
+}
+
+OUString ScStyleNameConversion::DisplayToProgrammaticName( const OUString& rDispName, sal_uInt16 nType )
+{
+ bool bDisplayIsProgrammatic = false;
+
+ const ScDisplayNameMap* pNames = lcl_GetStyleNameMap( nType );
+ if (pNames)
+ {
+ do
+ {
+ if (pNames->aDispName == rDispName)
+ return pNames->aProgName;
+ else if (pNames->aProgName == rDispName)
+ bDisplayIsProgrammatic = true; // display name matches any programmatic name
+ }
+ while( !(++pNames)->aDispName.isEmpty() );
+ }
+
+ if ( bDisplayIsProgrammatic || lcl_EndsWithUser( rDispName ) )
+ {
+ // add the (user) suffix if the display name matches any style's programmatic name
+ // or if it already contains the suffix
+
+ String aRet(rDispName);
+ aRet.AppendAscii( RTL_CONSTASCII_STRINGPARAM( SC_SUFFIX_USER ) );
+ return aRet;
+ }
+
+ return rDispName;
+}
+
+OUString ScStyleNameConversion::ProgrammaticToDisplayName( const OUString& rProgName, sal_uInt16 nType )
+{
+ if ( lcl_EndsWithUser( rProgName ) )
+ {
+ // remove the (user) suffix, don't compare to map entries
+ return rProgName.copy( 0, rProgName.getLength() - SC_SUFFIX_USER_LEN );
+ }
+
+ const ScDisplayNameMap* pNames = lcl_GetStyleNameMap( nType );
+ if (pNames)
+ {
+ do
+ {
+ if (pNames->aProgName == rProgName)
+ return pNames->aDispName;
+ }
+ while( !(++pNames)->aDispName.isEmpty() );
+ }
+ return rProgName;
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index 93192ae4083a..763bf67051cf 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -121,6 +121,7 @@
#include "stringutil.hxx"
#include "formulaiter.hxx"
#include "tokenarray.hxx"
+#include "stylehelper.hxx"
#include <list>
#include <boost/scoped_ptr.hpp>
diff --git a/sc/source/ui/unoobj/fmtuno.cxx b/sc/source/ui/unoobj/fmtuno.cxx
index 197321325c2c..67a2ad82323f 100644
--- a/sc/source/ui/unoobj/fmtuno.cxx
+++ b/sc/source/ui/unoobj/fmtuno.cxx
@@ -35,6 +35,7 @@
#include "styleuno.hxx" // ScStyleNameConversion
#include "tokenarray.hxx"
#include "tokenuno.hxx"
+#include "stylehelper.hxx"
using namespace ::com::sun::star;
using namespace ::formula;
diff --git a/sc/source/ui/unoobj/styleuno.cxx b/sc/source/ui/unoobj/styleuno.cxx
index 9c7cc587d386..246639d0c609 100644
--- a/sc/source/ui/unoobj/styleuno.cxx
+++ b/sc/source/ui/unoobj/styleuno.cxx
@@ -63,6 +63,7 @@
#include "unowids.hxx"
#include "globstr.hrc"
#include "cellsuno.hxx"
+#include "stylehelper.hxx"
using namespace ::com::sun::star;
@@ -397,148 +398,6 @@ SC_SIMPLE_SERVICE_INFO( ScStyleFamilyObj, "ScStyleFamilyObj", "com.sun.star.styl
//------------------------------------------------------------------------
-// conversion programmatic <-> display (visible) name
-// currently, the core always has the visible names
-// the api is required to use programmatic names for default styles
-// these programmatic names must never change!
-
-#define SC_STYLE_PROG_STANDARD "Default"
-#define SC_STYLE_PROG_RESULT "Result"
-#define SC_STYLE_PROG_RESULT1 "Result2"
-#define SC_STYLE_PROG_HEADLINE "Heading"
-#define SC_STYLE_PROG_HEADLINE1 "Heading1"
-#define SC_STYLE_PROG_REPORT "Report"
-
-struct ScDisplayNameMap
-{
- String aDispName;
- String aProgName;
-};
-
-static const ScDisplayNameMap* lcl_GetStyleNameMap( sal_uInt16 nType )
-{
- if ( nType == SFX_STYLE_FAMILY_PARA )
- {
- static sal_Bool bCellMapFilled = false;
- static ScDisplayNameMap aCellMap[6];
- if ( !bCellMapFilled )
- {
- aCellMap[0].aDispName = ScGlobal::GetRscString( STR_STYLENAME_STANDARD );
- aCellMap[0].aProgName = OUString( SC_STYLE_PROG_STANDARD );
-
- aCellMap[1].aDispName = ScGlobal::GetRscString( STR_STYLENAME_RESULT );
- aCellMap[1].aProgName = OUString( SC_STYLE_PROG_RESULT );
-
- aCellMap[2].aDispName = ScGlobal::GetRscString( STR_STYLENAME_RESULT1 );
- aCellMap[2].aProgName = OUString( SC_STYLE_PROG_RESULT1 );
-
- aCellMap[3].aDispName = ScGlobal::GetRscString( STR_STYLENAME_HEADLINE );
- aCellMap[3].aProgName = OUString( SC_STYLE_PROG_HEADLINE );
-
- aCellMap[4].aDispName = ScGlobal::GetRscString( STR_STYLENAME_HEADLINE1 );
- aCellMap[4].aProgName = OUString( SC_STYLE_PROG_HEADLINE1 );
-
- // last entry remains empty
-
- bCellMapFilled = sal_True;
- }
- return aCellMap;
- }
- else if ( nType == SFX_STYLE_FAMILY_PAGE )
- {
- static sal_Bool bPageMapFilled = false;
- static ScDisplayNameMap aPageMap[3];
- if ( !bPageMapFilled )
- {
- aPageMap[0].aDispName = ScGlobal::GetRscString( STR_STYLENAME_STANDARD );
- aPageMap[0].aProgName = OUString( SC_STYLE_PROG_STANDARD );
-
- aPageMap[1].aDispName = ScGlobal::GetRscString( STR_STYLENAME_REPORT );
- aPageMap[1].aProgName = OUString( SC_STYLE_PROG_REPORT );
-
- // last entry remains empty
-
- bPageMapFilled = sal_True;
- }
- return aPageMap;
- }
- OSL_FAIL("invalid family");
- return NULL;
-}
-
-// programmatic name suffix for display names that match other programmatic names
-// is " (user)" including a space
-
-#define SC_SUFFIX_USER " (user)"
-#define SC_SUFFIX_USER_LEN 7
-
-static sal_Bool lcl_EndsWithUser( const String& rString )
-{
- const sal_Unicode *pChar = rString.GetBuffer();
- xub_StrLen nLen = rString.Len();
- return nLen >= SC_SUFFIX_USER_LEN &&
- pChar[nLen-7] == ' ' &&
- pChar[nLen-6] == '(' &&
- pChar[nLen-5] == 'u' &&
- pChar[nLen-4] == 's' &&
- pChar[nLen-3] == 'e' &&
- pChar[nLen-2] == 'r' &&
- pChar[nLen-1] == ')';
-}
-
-String ScStyleNameConversion::DisplayToProgrammaticName( const String& rDispName, sal_uInt16 nType )
-{
- sal_Bool bDisplayIsProgrammatic = false;
-
- const ScDisplayNameMap* pNames = lcl_GetStyleNameMap( nType );
- if (pNames)
- {
- do
- {
- if (pNames->aDispName == rDispName)
- return pNames->aProgName;
- else if (pNames->aProgName == rDispName)
- bDisplayIsProgrammatic = sal_True; // display name matches any programmatic name
- }
- while( (++pNames)->aDispName.Len() );
- }
-
- if ( bDisplayIsProgrammatic || lcl_EndsWithUser( rDispName ) )
- {
- // add the (user) suffix if the display name matches any style's programmatic name
- // or if it already contains the suffix
-
- String aRet(rDispName);
- aRet.AppendAscii( RTL_CONSTASCII_STRINGPARAM( SC_SUFFIX_USER ) );
- return aRet;
- }
-
- return rDispName;
-}
-
-String ScStyleNameConversion::ProgrammaticToDisplayName( const String& rProgName, sal_uInt16 nType )
-{
- if ( lcl_EndsWithUser( rProgName ) )
- {
- // remove the (user) suffix, don't compare to map entries
- return rProgName.Copy( 0, rProgName.Len() - SC_SUFFIX_USER_LEN );
- }
-
- const ScDisplayNameMap* pNames = lcl_GetStyleNameMap( nType );
- if (pNames)
- {
- do
- {
- if (pNames->aProgName == rProgName)
- return pNames->aDispName;
- }
- while( (++pNames)->aDispName.Len() );
- }
- return rProgName;
-}
-
-//------------------------------------------------------------------------
-
static sal_Bool lcl_AnyTabProtected( ScDocument& rDoc )
{
SCTAB nTabCount = rDoc.GetTableCount();