You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/filters/kword/abiword/ImportHelpers.h

86 lines
2.3 KiB

/* This file is part of the KDE project
Copyright (C) 2001, 2004 Nicolas GOUTTE <goutte@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _IMPORT_HELPERS_H
#define _IMPORT_HELPERS_H
#include <tqstring.h>
#include <tqmap.h>
/**
* \file ImportHelpers.h
* Helpers for the AbiWord import filter
*
* Rough rule for including code in this file:
* use nothing of TQt except TQMap, TQValueList and TQString
*/
class AbiProps
{
public:
AbiProps() {};
AbiProps(TQString newValue) : m_value(newValue) {};
virtual ~AbiProps() {};
public:
inline TQString getValue(void) const { return m_value; }
private:
TQString m_value;
};
class AbiPropsMap : public TQMap<TQString,AbiProps>
{
public:
AbiPropsMap() {};
virtual ~AbiPropsMap() {};
public:
bool setProperty(const TQString& newName, const TQString& newValue);
void splitAndAddAbiProps(const TQString& strProps);
};
inline double CentimetresToPoints(const double d)
{
return d * 72.0 / 2.54;
}
inline double MillimetresToPoints(const double d)
{
return d * 72.0 / 25.4;
}
inline double InchesToPoints(const double d)
{
return d * 72.0;
}
inline double PicaToPoints(const double d)
{
// 1 pica = 12 pt
return d * 12.0;
}
/**
* Transform a value with unit (for example "12cm") into a double
* @param _str the value as string
* @param atleast was there a + character after the unit to denote an "at-least" property
* @return the value as double (in points)
*/
double ValueWithLengthUnit( const TQString& _str, bool* atleast = NULL );
#endif // _IMPORT_HELPERS_H