1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef _MODELTOVIEWHELPER_HXX 29*cdf0e10cSrcweir #define _MODELTOVIEWHELPER_HXX 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include <sal/types.h> 32*cdf0e10cSrcweir 33*cdf0e10cSrcweir #include <vector> 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir /** Some helpers for converting model strings to view strings. 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir A paragraph string does not have its fields expanded, i.e., they are 38*cdf0e10cSrcweir represented by a special character inside the string with an additional 39*cdf0e10cSrcweir attribute assigned to it. For some tasks (e.g., SmartTags) it is required 40*cdf0e10cSrcweir to expand the fields to get the string as it appears in the view. Two 41*cdf0e10cSrcweir helper functions are provided to convert model positions to view positions 42*cdf0e10cSrcweir and vice versa. 43*cdf0e10cSrcweir */ 44*cdf0e10cSrcweir namespace ModelToViewHelper 45*cdf0e10cSrcweir { 46*cdf0e10cSrcweir /** For each field in the model string, there is an entry in the conversion 47*cdf0e10cSrcweir map. The first value of the ConversionMapEntry points to the field 48*cdf0e10cSrcweir position in the model string, the second value points to the associated 49*cdf0e10cSrcweir position in the view string. The last entry in the conversion map 50*cdf0e10cSrcweir denotes the lengths of the model resp. view string. 51*cdf0e10cSrcweir */ 52*cdf0e10cSrcweir typedef std::pair< sal_uInt32 , sal_uInt32 > ConversionMapEntry; 53*cdf0e10cSrcweir typedef std::vector< ConversionMapEntry > ConversionMap; 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir /** This struct defines a position in the model string. 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir The 'main' position is given by mnPos. If there's a field located at 58*cdf0e10cSrcweir this position, mbIsField is set and mnSubPos denotes the position inside 59*cdf0e10cSrcweir that field. 60*cdf0e10cSrcweir */ 61*cdf0e10cSrcweir struct ModelPosition 62*cdf0e10cSrcweir { 63*cdf0e10cSrcweir sal_uInt32 mnPos; 64*cdf0e10cSrcweir sal_uInt32 mnSubPos; 65*cdf0e10cSrcweir bool mbIsField; 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir ModelPosition() : mnPos(0), mnSubPos(0), mbIsField(false) {} 68*cdf0e10cSrcweir }; 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir /** Converts a model position into a view position 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir @param pMap 73*cdf0e10cSrcweir pMap is the conversion map required for the calculation. If pMap is 74*cdf0e10cSrcweir 0, no conversion takes place, i.e., it is assumed that the model 75*cdf0e10cSrcweir string is identical to the view string. 76*cdf0e10cSrcweir 77*cdf0e10cSrcweir @param nPos 78*cdf0e10cSrcweir nPos denotes a position in the model string which should be 79*cdf0e10cSrcweir converted. Note that converting model positions inside fields is 80*cdf0e10cSrcweir not supported, therefore nPos is not of type ModelPosition. 81*cdf0e10cSrcweir 82*cdf0e10cSrcweir @return 83*cdf0e10cSrcweir the position of nPos in the view string. In case the conversion 84*cdf0e10cSrcweir could not be performed (e.g., because there is not ConversionMap or 85*cdf0e10cSrcweir nPos is behind the last entry in the conversion map) nPos will 86*cdf0e10cSrcweir be returned. 87*cdf0e10cSrcweir */ 88*cdf0e10cSrcweir sal_uInt32 ConvertToViewPosition( const ConversionMap* pMap, sal_uInt32 nModelPos ); 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir /** Converts a view position into a model position 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir @param pMap 93*cdf0e10cSrcweir pMap is the conversion map required for the calculation. If pMap is 94*cdf0e10cSrcweir 0, no conversion takes place, i.e., it is assumed that the model 95*cdf0e10cSrcweir string is identical to the view string. 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir @param nPos 98*cdf0e10cSrcweir nPos denotes a position in the view string which should be 99*cdf0e10cSrcweir converted. 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir @return 102*cdf0e10cSrcweir the position of nPos in the model string. In case the conversion 103*cdf0e10cSrcweir could not be performed (e.g., because there is not ConversionMap or 104*cdf0e10cSrcweir nPos is behind the last entry in the conversion map) a model 105*cdf0e10cSrcweir model position with mnPos = nPos and mnIsField = false will be 106*cdf0e10cSrcweir returned. 107*cdf0e10cSrcweir */ 108*cdf0e10cSrcweir ModelPosition ConvertToModelPosition( const ConversionMap* pMap, sal_uInt32 nViewPos ); 109*cdf0e10cSrcweir } 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir #endif 112