blob: f2d7e22fc5f7a514ecc28df0f3d4e1386350905c [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef OOX_XLS_UNITCONVERTER_HXX
#define OOX_XLS_UNITCONVERTER_HXX
#include <map>
#include <vector>
#include "oox/xls/workbookhelper.hxx"
namespace com { namespace sun { namespace star {
namespace util { struct Date; struct DateTime; }
} } }
namespace oox {
namespace xls {
// ============================================================================
/** Units supported by the UnitConverter class. */
enum Unit
{
UNIT_INCH, /// Inches.
UNIT_POINT, /// Points.
UNIT_TWIP, /// Twips (1/20 point).
UNIT_EMU, /// English Metric Unit (1/360,000 cm).
UNIT_SCREENX, /// Horizontal screen pixels.
UNIT_SCREENY, /// Vertical screen pixels.
UNIT_REFDEVX, /// Horizontal pixels in Calc reference device.
UNIT_REFDEVY, /// Vertical pixels in Calc reference device.
UNIT_DIGIT, /// Digit width of document default font.
UNIT_SPACE, /// Space character width of document default font.
UNIT_ENUM_SIZE
};
/** Helper class that provides functions to convert values from and to
different units.
Provides functions to calculate the width of certain characters of the
default font of the imported/exported document. The default font is always
the first font in the styles font list, and is always referenced by the
default cell style ("Normal" style in Excel) which is used by all empty
unformatted cells in the document. To be able to calculate the charcter
width correctly, the default font must be known, which is the case after
the finalizeImport() or finalizeExport() functions have been called. Caller
must make sure to not call the character width conversion functions before.
*/
class UnitConverter : public WorkbookHelper
{
public:
explicit UnitConverter( const WorkbookHelper& rHelper );
/** Final processing after import of all style settings. */
void finalizeImport();
/** Updates internal nulldate for date/serial conversion. */
void finalizeNullDate( const ::com::sun::star::util::Date& rNullDate );
/** Converts the passed value between the passed units. */
double scaleValue( double fValue, Unit eFromUnit, Unit eToUnit ) const;
/** Converts the passed value to 1/100 millimeters. */
sal_Int32 scaleToMm100( double fValue, Unit eUnit ) const;
/** Converts the passed value from 1/100 millimeters to the passed unit. */
double scaleFromMm100( sal_Int32 nMm100, Unit eUnit ) const;
/** Returns the serial value of the passed datetime, based on current nulldate. */
double calcSerialFromDateTime( const ::com::sun::star::util::DateTime& rDateTime ) const;
/** Returns the datetime of the passed serial value, based on current nulldate. */
::com::sun::star::util::DateTime calcDateTimeFromSerial( double fSerial ) const;
/** Returns an error string from the passed BIFF error code. */
::rtl::OUString calcOoxErrorCode( sal_uInt8 nErrorCode ) const;
/** Returns a BIFF error code from the passed error string. */
sal_uInt8 calcBiffErrorCode( const ::rtl::OUString& rErrorCode ) const;
private:
/** Adds an error code to the internal maps. */
void addErrorCode( sal_uInt8 nErrorCode, const ::rtl::OUString& rErrorCode );
/** Returns the conversion coefficient for the passed unit. */
double getCoefficient( Unit eUnit ) const;
private:
typedef ::std::vector< double > DoubleVector;
typedef ::std::map< ::rtl::OUString, sal_uInt8 > OoxErrorCodeMap;
typedef ::std::map< sal_uInt8, ::rtl::OUString > BiffErrorCodeMap;
DoubleVector maCoeffs; /// Coefficients for unit conversion.
OoxErrorCodeMap maOoxErrCodes; /// Maps error code strings to BIFF error constants.
BiffErrorCodeMap maBiffErrCodes; /// Maps BIFF error constants to error code strings.
sal_Int32 mnNullDate; /// Nulldate of this workbook (number of days since 0000-01-01).
};
// ============================================================================
} // namespace xls
} // namespace oox
#endif