1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _SVXCSS1_HXX
#define _SVXCSS1_HXX
#include <tools/string.hxx>
#include <svl/itemset.hxx>
#include <editeng/svxenum.hxx>
#ifndef _SVSTDARR_HXX
#define _SVSTDARR_USHORTS
#include <svl/svstdarr.hxx>
#endif
#include <rtl/textenc.h>
#include "parcss1.hxx"
#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/ptr_container/ptr_map.hpp>
class SfxItemPool;
class SvxBoxItem;
class FontList;
enum SvxCSS1Position
{
SVX_CSS1_POS_NONE, // nichts angegeben
SVX_CSS1_POS_STATIC, // normal
SVX_CSS1_POS_ABSOLUTE, // absolut
SVX_CSS1_POS_RELATIVE, // relativ
SVX_CSS1_POS_END
};
enum SvxCSS1LengthType
{
SVX_CSS1_LTYPE_NONE, // nichts angegeben
SVX_CSS1_LTYPE_AUTO, // automatisch
SVX_CSS1_LTYPE_TWIP, // twip
SVX_CSS1_LTYPE_PERCENTAGE, // %-Angabe
SVX_CSS1_LTYPE_END
};
// Feature: PrintExt
enum SvxCSS1SizeType
{
SVX_CSS1_STYPE_NONE, // nichts angegeben
SVX_CSS1_STYPE_AUTO, // automatisch
SVX_CSS1_STYPE_TWIP, // twip
SVX_CSS1_STYPE_LANDSCAPE, // Landscape
SVX_CSS1_STYPE_PORTRAIT, // Landscape
SVX_CSS1_STYPE_END
};
enum SvxCSS1PageBreak
{
SVX_CSS1_PBREAK_NONE, // nichts angegeben
SVX_CSS1_PBREAK_AUTO, // automatisch
SVX_CSS1_PBREAK_ALWAYS, // immer
SVX_CSS1_PBREAK_AVOID, // nie
SVX_CSS1_PBREAK_LEFT, // naechste Seite ist eine linke
SVX_CSS1_PBREAK_RIGHT, // naechste Seite ist eine rechte
SVX_CSS1_PBREAK_END
};
// /Feature: PrintExt
#define CSS1_SCRIPT_WESTERN 0x01
#define CSS1_SCRIPT_CJK 0x02
#define CSS1_SCRIPT_CTL 0x04
#define CSS1_SCRIPT_ALL 0x07
struct CSS1PropertyEnum
{
const sal_Char *pName; // Wert einer Property
sal_uInt16 nEnum; // und der dazugehoerige Wert eines Enums
};
namespace editeng { class SvxBorderLine; }
#define SVX_CSS1_BORDERINFO_WIDTH 1
#define SVX_CSS1_BORDERINFO_COLOR 2
#define SVX_CSS1_BORDERINFO_STYLE 4
struct SvxCSS1BorderInfo;
class SvxCSS1PropertyInfo
{
SvxCSS1BorderInfo *aBorderInfos[4];
void DestroyBorderInfos();
public:
String aId; // ID fuer Bookmarks, Rahmen etc.
sal_Bool bTopMargin : 1;
sal_Bool bBottomMargin : 1;
sal_Bool bLeftMargin : 1;
sal_Bool bRightMargin : 1;
sal_Bool bTextIndent : 1;
SvxAdjust eFloat;
SvxCSS1Position ePosition;
sal_uInt16 nTopBorderDistance;
sal_uInt16 nBottomBorderDistance;
sal_uInt16 nLeftBorderDistance;
sal_uInt16 nRightBorderDistance;
long nLeft, nTop;
long nWidth, nHeight;
long nLeftMargin, nRightMargin;
SvxCSS1LengthType eLeftType, eTopType;
SvxCSS1LengthType eWidthType, eHeightType;
// Feature: PrintExt
SvxCSS1SizeType eSizeType;
SvxCSS1PageBreak ePageBreakBefore;
SvxCSS1PageBreak ePageBreakAfter;
// /Feature: PrintExt
SvxCSS1PropertyInfo();
SvxCSS1PropertyInfo( const SvxCSS1PropertyInfo& rProp );
~SvxCSS1PropertyInfo();
void Merge( const SvxCSS1PropertyInfo& rProp );
void Clear();
SvxCSS1BorderInfo *GetBorderInfo( sal_uInt16 nLine, sal_Bool bCreate=sal_True );
void CopyBorderInfo( sal_uInt16 nSrcLine, sal_uInt16 nDstLine, sal_uInt16 nWhat );
void CopyBorderInfo( sal_uInt16 nCount, sal_uInt16 nWhat );
void SetBoxItem( SfxItemSet& rItemSet, sal_uInt16 nMinBorderDist,
const SvxBoxItem* pDflt=0, sal_Bool bTable = sal_False );
};
class SvxCSS1MapEntry
{
String aKey;
SfxItemSet aItemSet;
SvxCSS1PropertyInfo aPropInfo;
public:
SvxCSS1MapEntry( SfxItemPool& rPool, const sal_uInt16 *pWhichMap ) :
aItemSet( rPool, pWhichMap )
{}
SvxCSS1MapEntry( const String& rKey, const SfxItemSet& rItemSet,
const SvxCSS1PropertyInfo& rProp );
const SfxItemSet& GetItemSet() const { return aItemSet; }
SfxItemSet& GetItemSet() { return aItemSet; }
const SvxCSS1PropertyInfo& GetPropertyInfo() const { return aPropInfo; }
SvxCSS1PropertyInfo& GetPropertyInfo() { return aPropInfo; }
const String& GetKey() const { return aKey; }
// TODO: ToUpperAscii -> ???
void SetKey( const String& rKey ) { aKey = rKey; aKey.ToUpperAscii(); }
friend sal_Bool operator==( const SvxCSS1MapEntry& rE1,
const SvxCSS1MapEntry& rE2 );
friend sal_Bool operator<( const SvxCSS1MapEntry& rE1,
const SvxCSS1MapEntry& rE2 );
};
#if !defined( ICC )
inline sal_Bool operator==( const SvxCSS1MapEntry& rE1, const SvxCSS1MapEntry& rE2 )
{
return rE1.aKey==rE2.aKey;
}
inline sal_Bool operator<( const SvxCSS1MapEntry& rE1, const SvxCSS1MapEntry& rE2 )
{
return rE1.aKey<rE2.aKey;
}
#endif
// Diese Klasse bereitet den Output des CSS1-Parsers auf,
// indem die CSS1-Properties in SvxItem(Set)s umgewandelt werden.
// Ausserdem werden die Selektoren samt zugehoeriger Item-Set
// gespeichert.
// Ein abgeleiteter Parser kann dies fuer einzelne Selektoren unterdruecken,
// indem er die Methode StyleParsed ueberlaed.
class SvxCSS1Parser : public CSS1Parser
{
typedef ::boost::ptr_vector<CSS1Selector> CSS1Selectors;
typedef ::boost::ptr_map<String, SvxCSS1MapEntry> CSS1Map;
CSS1Selectors aSelectors; // Liste der "offenen" Selectoren
CSS1Map aIds;
CSS1Map aClasses;
CSS1Map aPages;
CSS1Map aTags;
String sBaseURL;
SfxItemSet *pSheetItemSet; // der Item-Set fuer Style-Sheets
SfxItemSet *pItemSet; // der aktuelle Item-Set
SvxCSS1MapEntry *pSearchEntry;
SvxCSS1PropertyInfo *pSheetPropInfo;
SvxCSS1PropertyInfo *pPropInfo;
sal_uInt16 nMinFixLineSpace; // Mindest-Abstand fuer festen Zeilenabstand
rtl_TextEncoding eDfltEnc;
sal_uInt16 nScriptFlags;
sal_Bool bIgnoreFontFamily;
void ParseProperty( const String& rProperty,
const CSS1Expression *pExpr );
std::vector<sal_uInt16> aWhichMap; // Which-Map des Parser
using CSS1Parser::ParseStyleOption;
protected:
using CSS1Parser::ParseStyleSheet;
// Diese Methode wird fuer jeden Selektor mit dem zugehoerigen
// Item-Set aufgerufen. Fuer einen Selektor koennen mehrere
// Aufrufe erfolgen.
// wenn sal_True zuruckgegeben wird, wird der Item-Set bzw. der
// Selektor nicht mehr gespeichert!
// Der ItemSet darf entsprechend modifiziert werden!
// Die Implementierung dieser Methode gibt sal_False zurueck.
virtual sal_Bool StyleParsed( const CSS1Selector *pSelector,
SfxItemSet& rItemSet,
SvxCSS1PropertyInfo& rPropInfo );
// Diese Methode wird aufgerufen, wenn ein Selektor geparst wurde
// Wenn bFirst gesetzt ist, wird der Inhalt von aItemSet in alle
// zuletzt angelegten Styles kopiert.
// Diese Methode sollte in abgleiteten Parsern nicht mehr
// ueberladen werden!
virtual bool SelectorParsed( CSS1Selector *pSelector, bool bFirst );
// Diese Methode wird fuer jede geparste Property aufgerufen
// sie fuegt das Item in den ItemSet 'pItemSet' ein
// Sie sollte in abgeleiteten Parsern nicht mehr ueberladen werden!
virtual sal_Bool DeclarationParsed( const String& rProperty,
const CSS1Expression *pExpr );
public:
SvxCSS1Parser( SfxItemPool& rPool,
const String& rBaseURL,
sal_uInt16 nMinFixLineSp,
sal_uInt16 *pWhichIds=0, sal_uInt16 nWhichIds=0 );
virtual ~SvxCSS1Parser();
sal_Bool IsIgnoreFontFamily() const { return bIgnoreFontFamily; }
void SetIgnoreFontFamily( sal_Bool bSet ) { bIgnoreFontFamily = bSet; }
// Parsen eines Style-Sheets. Fuer jeden gefundenen Selektor
// wird StyleParsed mit dem entsprechenem Item-Set aufgerufen
virtual sal_Bool ParseStyleSheet( const String& rIn );
// Parsen einer Style-Option. Hier wird einfach nur der Item-Set
// gefuellt.
sal_Bool ParseStyleOption( const String& rIn, SfxItemSet& rItemSet,
SvxCSS1PropertyInfo& rPropInfo );
// Umwandeln eines Strings in den Wert eines Enums
static sal_Bool GetEnum( const CSS1PropertyEnum *pPropTable,
const String& rValue, sal_uInt16 &rEnum );
// Pixel in Twips wandeln
static void PixelToTwip( long &nWidth, long &nHeight );
// Die Font-Hoehe fuer eine bestimmte Font-Groesse (0-6) ermitteln
virtual sal_uInt32 GetFontHeight( sal_uInt16 nSize ) const;
virtual const FontList *GetFontList() const;
const sal_uInt16 *GetWhichMap() const { return &aWhichMap[0]; }
void InsertMapEntry( const String& rKey, const SfxItemSet& rItemSet,
const SvxCSS1PropertyInfo& rProp, CSS1Map& rMap );
void InsertId( const String& rId, const SfxItemSet& rItemSet,
const SvxCSS1PropertyInfo& rProp );
const SvxCSS1MapEntry* GetId( const String& rId ) const;
void InsertClass( const String& rClass, const SfxItemSet& rItemSet,
const SvxCSS1PropertyInfo& rProp );
const SvxCSS1MapEntry* GetClass( const String& rClass ) const;
void InsertPage( const String& rPage, sal_Bool bPseudo,
const SfxItemSet& rItemSet,
const SvxCSS1PropertyInfo& rProp );
SvxCSS1MapEntry* GetPage( const String& rPage, bool bPseudo );
void InsertTag( const String& rTag, const SfxItemSet& rItemSet,
const SvxCSS1PropertyInfo& rProp );
SvxCSS1MapEntry* GetTag( const String& rTag );
void MergeStyles( const SfxItemSet& rSrcSet,
const SvxCSS1PropertyInfo& rSrcInfo,
SfxItemSet& rTargetSet,
SvxCSS1PropertyInfo& rTargetInfo,
sal_Bool bSmart );
sal_uInt16 GetMinFixLineSpace() const { return nMinFixLineSpace; }
virtual void SetDfltEncoding( rtl_TextEncoding eEnc );
rtl_TextEncoding GetDfltEncoding() const { return eDfltEnc; }
sal_Bool IsSetWesternProps() const { return (nScriptFlags & CSS1_SCRIPT_WESTERN) != 0; }
sal_Bool IsSetCJKProps() const { return (nScriptFlags & CSS1_SCRIPT_CJK) != 0; }
sal_Bool IsSetCTLProps() const { return (nScriptFlags & CSS1_SCRIPT_CTL) != 0; }
const String& GetBaseURL() const { return sBaseURL;}
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|