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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
/* This file is part of the KDE project
Copyright 2010 Marijn Kruisselbrink <mkruisselbrink@kde.org>
Copyright 2006 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
Copyright 2003 Norbert Andres <nandres@web.de>
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 CALLIGRA_SHEETS_STYLE
#define CALLIGRA_SHEETS_STYLE
#include <QFont>
#include <QSharedDataPointer>
#include <QTextCharFormat>
#include <KoXmlReader.h>
#include "Currency.h"
#include "Format.h"
#include "Global.h"
namespace Calligra
{
namespace Sheets
{
class Conditions;
class CustomStyle;
class SharedSubStyle;
class Style;
class StyleManager;
class SubStyle;
class ValueParser;
// used for preloading OASIS auto styles
typedef QHash<QString, Style> Styles;
// needs to be ordered (QMap) for the style dialog
typedef QMap<QString, CustomStyle*> CustomStyles;
CALLIGRA_SHEETS_ODF_EXPORT uint qHash(const Style& style);
/**
* \ingroup Style
* A cell style.
*/
class CALLIGRA_SHEETS_ODF_EXPORT Style
{
public:
enum HAlign {
Left = 1,
Center = 2,
Right = 3,
Justified = 4,
HAlignUndefined = 0
};
enum VAlign {
Top = 1,
Middle = 2,
Bottom = 3,
VDistributed = 4,
VJustified = 5,
VAlignUndefined = 0
};
enum FloatFormat {
DefaultFloatFormat = 0,
AlwaysSigned = 1,
AlwaysUnsigned = 2,
OnlyNegSigned = DefaultFloatFormat
};
enum FloatColor {
DefaultFloatColor = 0,
NegRed = 1,
AllBlack = DefaultFloatColor,
NegBrackets = 3,
NegRedBrackets = 4
};
/// The style type
enum StyleType {
BUILTIN, ///< built-in style (the default style)
CUSTOM, ///< custom style (defined in the StyleManager dialog)
AUTO, ///< automatically generated on cell format changes
TENTATIVE ///< @internal temporary state
};
enum Key {
// special cases
DefaultStyleKey,
/**
* The NamedStyleKey has two functions:
* \li In Style: On lookup the Style is composed (\see StyleStorage::composeStyle()).
* For named styles just the style's name is stored. On lookup, these styles
* are looked up in the StyleManager and their attributes, including all
* attributes of the parents, are filled in the composed style. Additionally,
* the name of the named style is stored in the NamedStyleKey attribute.
* This is especially useful while saving the styles.
* \li In CustomStyle: It simply refers to the parent style.
*/
NamedStyleKey,
// borders
LeftPen,
RightPen,
TopPen,
BottomPen,
FallDiagonalPen,
GoUpDiagonalPen,
// layout
HorizontalAlignment,
VerticalAlignment,
MultiRow,
VerticalText,
Angle,
ShrinkToFit,
Indentation,
// content format
Prefix,
Postfix,
Precision,
ThousandsSep,
FormatTypeKey,
FloatFormatKey,
FloatColorKey,
CurrencyFormat,
CustomFormat,
// background
BackgroundBrush,
BackgroundColor,
// font
FontColor,
FontFamily,
FontSize,
FontBold,
FontItalic,
FontStrike,
FontUnderline,
//misc
DontPrintText,
NotProtected,
HideAll,
HideFormula
};
Style();
Style(const Style& style);
virtual ~Style();
virtual StyleType type() const;
QString parentName() const;
void setParentName(const QString& name);
bool loadXML(KoXmlElement& format, Paste::Mode pm = Paste::Normal);
void saveXML(QDomDocument& doc, QDomElement& format, const StyleManager* styleManager) const;
void clearAttribute(Key key);
bool hasAttribute(Key key) const;
uint bottomPenValue() const;
uint rightPenValue() const;
uint leftPenValue() const;
uint topPenValue() const;
QColor fontColor() const;
QColor backgroundColor() const;
QPen rightBorderPen() const;
QPen bottomBorderPen() const;
QPen leftBorderPen() const;
QPen topBorderPen() const;
QPen fallDiagonalPen() const;
QPen goUpDiagonalPen() const;
QBrush backgroundBrush() const;
QString customFormat() const;
QString prefix() const;
QString postfix() const;
QString fontFamily() const;
HAlign halign() const;
VAlign valign() const;
FloatFormat floatFormat() const;
FloatColor floatColor() const;
Format::Type formatType() const;
Currency currency() const;
QFont font() const;
bool bold() const;
bool italic() const;
bool underline() const;
bool strikeOut() const;
uint fontFlags() const;
int fontSize() const;
int precision() const;
bool thousandsSep() const;
int angle() const;
double indentation() const;
bool shrinkToFit() const;
bool verticalText() const;
bool wrapText() const;
bool printText() const;
bool hideAll() const;
bool hideFormula() const;
bool notProtected() const;
bool isDefault() const;
bool isEmpty() const;
public:
void setHAlign(HAlign align);
void setVAlign(VAlign align);
void setFont(QFont const & font);
void setFontFamily(QString const & fam);
void setFontBold(bool enable);
void setFontItalic(bool enable);
void setFontUnderline(bool enable);
void setFontStrikeOut(bool enable);
void setFontSize(int size);
void setFontColor(QColor const & color);
void setRightBorderPen(QPen const & pen);
void setBottomBorderPen(QPen const & pen);
void setLeftBorderPen(QPen const & pen);
void setTopBorderPen(QPen const & pen);
void setFallDiagonalPen(QPen const & pen);
void setGoUpDiagonalPen(QPen const & pen);
void setAngle(int angle);
void setIndentation(double indent);
void setBackgroundBrush(QBrush const & brush);
void setFloatFormat(FloatFormat format);
void setFloatColor(FloatColor color);
void setFormatType(Format::Type format);
void setCustomFormat(QString const & strFormat);
void setPrecision(int precision);
void setThousandsSep(bool thousandsSep);
void setPrefix(QString const & prefix);
void setPostfix(QString const & postfix);
void setCurrency(Currency const & currency);
void setWrapText(bool enable);
void setHideAll(bool enable);
void setHideFormula(bool enable);
void setNotProtected(bool enable);
void setDontPrintText(bool enable);
void setVerticalText(bool enable);
void setShrinkToFit(bool enable);
void setBackgroundColor(QColor const & color);
void setDefault();
void clear();
static bool compare(const SubStyle* one, const SubStyle* two);
/** Returns true if both styles have the same properties */
bool operator== (const Style& style) const;
inline bool operator!=(const Style& other) const {
return !operator==(other);
}
friend CALLIGRA_SHEETS_ODF_EXPORT uint qHash(const Style& style);
void operator=(const Style& style);
Style operator-(const Style& style) const;
/// Insert and replace substyles from style
void merge(const Style& style);
/**
* The keys, that are contained in this style, but not in \p other and
* the keys, that are contained in both but differ in value.
* \return a set of keys, in which this style and \p other differ.
*/
QSet<Key> difference(const Style& other) const;
void dump() const;
/**
* Return the properties of this style that can be represented as a QTextCharFormat
*/
QTextCharFormat asCharFormat() const;
/** Defined style elements - used when saving the style */
virtual QSet<Style::Key> definedKeys(const StyleManager *) const;
protected:
QList<SharedSubStyle> subStyles() const;
SharedSubStyle createSubStyle(Key key, const QVariant& value);
virtual void insertSubStyle(Key key, const QVariant& value);
void insertSubStyle(const SharedSubStyle& subStyle);
bool releaseSubStyle(Key key);
private:
friend class StyleStorage;
friend class StyleStorageLoaderJob;
friend class BorderColorCommand;
class Private;
QSharedDataPointer<Private> d;
};
/**
* \ingroup Style
* A named cell style.
*/
class CALLIGRA_SHEETS_ODF_EXPORT CustomStyle : public Style
{
public:
/**
* Constructor.
* Creates a custom style.
* \param name The name of this style.
* \param parent The style whose attributes are inherited - the parent style.
*/
explicit CustomStyle(const QString& name, CustomStyle* parent = 0);
CustomStyle(const CustomStyle& style);
~CustomStyle() override;
CustomStyle& operator=(const CustomStyle& other);
StyleType type() const override;
void setType(StyleType type);
void setName(QString const & name);
QString const & name() const;
bool loadXML(KoXmlElement const & style, QString const & name);
void save(QDomDocument & doc, QDomElement & styles, const StyleManager* styleManager);
//bool operator==(const CustomStyle& other) const;
//inline bool operator!=(const CustomStyle& other) const {
// return !operator==(other);
//}
/**
* @return the number of references to this style.
*/
int usage() const;
QSet<Style::Key> definedKeys(const StyleManager *) const override;
private:
friend class StyleManager;
/**
* Constructor.
* Constructs the default cell style.
*/
CustomStyle();
class Private;
QSharedDataPointer<Private> d;
};
/**
* \ingroup Style
* A single style attribute.
*/
class CALLIGRA_SHEETS_ODF_TEST_EXPORT SubStyle : public QSharedData
{
public:
SubStyle() {}
virtual ~SubStyle() {}
virtual Style::Key type() const {
return Style::DefaultStyleKey;
}
virtual void dump() const {
debugSheetsStyle << debugData();
}
virtual QString debugData(bool withName = true) const {
QString out; if (withName) out = name(Style::DefaultStyleKey); return out;
}
virtual uint koHash() const { return uint(type()); }
static QString name(Style::Key key);
};
// Provides a default SubStyle for the tree.
// Otherwise, we would have QSharedDataPointer<SubStyle>() as default,
// which has a null pointer and crashes.
// Also, this makes the code more readable:
// QSharedDataPointer<SubStyle> vs. SharedSubStyle
class SharedSubStyle
{
public:
inline SharedSubStyle() : d(s_defaultStyle.d){}
inline SharedSubStyle(SubStyle* subStyle) : d(subStyle) {}
inline const SubStyle *operator->() const {
return d.data();
}
inline const SubStyle *data() const {
return d.data();
}
inline bool operator<(const SharedSubStyle& o) const {
return d.data() < o.d.data();
}
inline bool operator==(const SharedSubStyle& o) const {
return d.data() == o.d.data();
}
inline bool operator!() const {
return !d;
}
private:
QSharedDataPointer<SubStyle> d;
static SharedSubStyle s_defaultStyle;
};
class NamedStyle : public SubStyle
{
public:
NamedStyle(const QString& n) : SubStyle(), name(n) {}
Style::Key type() const override {
return Style::NamedStyleKey;
}
void dump() const override {
debugSheetsStyle << debugData();
}
QString debugData(bool withName = true) const override {
QString out; if (withName) out = SubStyle::name(Style::NamedStyleKey) + ' '; out += name; return out;
}
uint koHash() const override { return uint(type()) ^ qHash(name); }
QString name;
};
static inline uint qHash(const QColor& color)
{ return uint(color.rgb()); }
static inline uint qHash(const QPen& pen)
{ return qHash(pen.color()) ^ 37 * uint(pen.style()); }
static inline uint qHash(const QBrush& brush)
{ return qHash(brush.color()) ^ 91 * uint(brush.style()); }
template<Style::Key key, class Value1>
class SubStyleOne : public SubStyle
{
public:
SubStyleOne(const Value1& v = Value1()) : SubStyle(), value1(v) {}
Style::Key type() const override {
return key;
}
void dump() const override {
debugSheetsStyle << debugData();
}
QString debugData(bool withName = true) const override {
QString out; if (withName) out = name(key) + ' '; QDebug qdbg(&out); qdbg << value1; return out;
}
uint koHash() const override { return uint(type()) ^ qHash(value1); }
Value1 value1;
};
} // namespace Sheets
} // namespace Calligra
Q_DECLARE_TYPEINFO(Calligra::Sheets::Style, Q_MOVABLE_TYPE);
Q_DECLARE_TYPEINFO(Calligra::Sheets::CustomStyle, Q_MOVABLE_TYPE);
Q_DECLARE_TYPEINFO(Calligra::Sheets::SharedSubStyle, Q_MOVABLE_TYPE);
CALLIGRA_SHEETS_ODF_TEST_EXPORT QDebug operator<<( QDebug dbg, const Calligra::Sheets::Style *style );
CALLIGRA_SHEETS_ODF_TEST_EXPORT QDebug operator<<( QDebug dbg, const Calligra::Sheets::Style &style );
#endif // CALLIGRA_SHEETS_STYLE
|