Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <rsc/rscsfx.hxx>
21 :
22 : #include "stylehelper.hxx"
23 : #include "global.hxx"
24 : #include "globstr.hrc"
25 :
26 : // conversion programmatic <-> display (visible) name
27 : // currently, the core always has the visible names
28 : // the api is required to use programmatic names for default styles
29 : // these programmatic names must never change!
30 :
31 : #define SC_STYLE_PROG_STANDARD "Default"
32 : #define SC_STYLE_PROG_RESULT "Result"
33 : #define SC_STYLE_PROG_RESULT1 "Result2"
34 : #define SC_STYLE_PROG_HEADLINE "Heading"
35 : #define SC_STYLE_PROG_HEADLINE1 "Heading1"
36 : #define SC_STYLE_PROG_REPORT "Report"
37 :
38 0 : struct ScDisplayNameMap
39 : {
40 : OUString aDispName;
41 : OUString aProgName;
42 : };
43 :
44 0 : static const ScDisplayNameMap* lcl_GetStyleNameMap( sal_uInt16 nType )
45 : {
46 0 : if ( nType == SFX_STYLE_FAMILY_PARA )
47 : {
48 : static bool bCellMapFilled = false;
49 0 : static ScDisplayNameMap aCellMap[6];
50 0 : if ( !bCellMapFilled )
51 : {
52 0 : aCellMap[0].aDispName = ScGlobal::GetRscString( STR_STYLENAME_STANDARD );
53 0 : aCellMap[0].aProgName = OUString( SC_STYLE_PROG_STANDARD );
54 :
55 0 : aCellMap[1].aDispName = ScGlobal::GetRscString( STR_STYLENAME_RESULT );
56 0 : aCellMap[1].aProgName = OUString( SC_STYLE_PROG_RESULT );
57 :
58 0 : aCellMap[2].aDispName = ScGlobal::GetRscString( STR_STYLENAME_RESULT1 );
59 0 : aCellMap[2].aProgName = OUString( SC_STYLE_PROG_RESULT1 );
60 :
61 0 : aCellMap[3].aDispName = ScGlobal::GetRscString( STR_STYLENAME_HEADLINE );
62 0 : aCellMap[3].aProgName = OUString( SC_STYLE_PROG_HEADLINE );
63 :
64 0 : aCellMap[4].aDispName = ScGlobal::GetRscString( STR_STYLENAME_HEADLINE1 );
65 0 : aCellMap[4].aProgName = OUString( SC_STYLE_PROG_HEADLINE1 );
66 :
67 : // last entry remains empty
68 :
69 0 : bCellMapFilled = true;
70 : }
71 0 : return aCellMap;
72 : }
73 0 : else if ( nType == SFX_STYLE_FAMILY_PAGE )
74 : {
75 : static bool bPageMapFilled = false;
76 0 : static ScDisplayNameMap aPageMap[3];
77 0 : if ( !bPageMapFilled )
78 : {
79 0 : aPageMap[0].aDispName = ScGlobal::GetRscString( STR_STYLENAME_STANDARD );
80 0 : aPageMap[0].aProgName = OUString( SC_STYLE_PROG_STANDARD );
81 :
82 0 : aPageMap[1].aDispName = ScGlobal::GetRscString( STR_STYLENAME_REPORT );
83 0 : aPageMap[1].aProgName = OUString( SC_STYLE_PROG_REPORT );
84 :
85 : // last entry remains empty
86 :
87 0 : bPageMapFilled = true;
88 : }
89 0 : return aPageMap;
90 : }
91 : OSL_FAIL("invalid family");
92 0 : return NULL;
93 : }
94 :
95 : // programmatic name suffix for display names that match other programmatic names
96 : // is " (user)" including a space
97 :
98 : #define SC_SUFFIX_USER " (user)"
99 : #define SC_SUFFIX_USER_LEN 7
100 :
101 0 : static bool lcl_EndsWithUser( const OUString& rString )
102 : {
103 0 : return rString.endsWith(SC_SUFFIX_USER);
104 : }
105 :
106 0 : OUString ScStyleNameConversion::DisplayToProgrammaticName( const OUString& rDispName, sal_uInt16 nType )
107 : {
108 0 : bool bDisplayIsProgrammatic = false;
109 :
110 0 : const ScDisplayNameMap* pNames = lcl_GetStyleNameMap( nType );
111 0 : if (pNames)
112 : {
113 0 : do
114 : {
115 0 : if (pNames->aDispName == rDispName)
116 0 : return pNames->aProgName;
117 0 : else if (pNames->aProgName == rDispName)
118 0 : bDisplayIsProgrammatic = true; // display name matches any programmatic name
119 : }
120 0 : while( !(++pNames)->aDispName.isEmpty() );
121 : }
122 :
123 0 : if ( bDisplayIsProgrammatic || lcl_EndsWithUser( rDispName ) )
124 : {
125 : // add the (user) suffix if the display name matches any style's programmatic name
126 : // or if it already contains the suffix
127 0 : return rDispName + SC_SUFFIX_USER;
128 : }
129 :
130 0 : return rDispName;
131 : }
132 :
133 0 : OUString ScStyleNameConversion::ProgrammaticToDisplayName( const OUString& rProgName, sal_uInt16 nType )
134 : {
135 0 : if ( lcl_EndsWithUser( rProgName ) )
136 : {
137 : // remove the (user) suffix, don't compare to map entries
138 0 : return rProgName.copy( 0, rProgName.getLength() - SC_SUFFIX_USER_LEN );
139 : }
140 :
141 0 : const ScDisplayNameMap* pNames = lcl_GetStyleNameMap( nType );
142 0 : if (pNames)
143 : {
144 0 : do
145 : {
146 0 : if (pNames->aProgName == rProgName)
147 0 : return pNames->aDispName;
148 : }
149 0 : while( !(++pNames)->aDispName.isEmpty() );
150 : }
151 0 : return rProgName;
152 : }
153 :
154 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|