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
|
/* This file is part of the KDE project
* Copyright (C) 2010-2011 Carlos Licea <carlos@kdab.com>
*
* 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 MSOOXMLTABLESTYLE_H
#define MSOOXMLTABLESTYLE_H
#include "komsooxml_export.h"
#include <KoCellStyle.h>
#include <KoBorder.h>
#include <KoGenStyle.h>
#include <QColor>
#include <QFlags>
#include <QMap>
namespace MSOOXML {
/// Reading and storage
struct KOMSOOXML_EXPORT TableStyleProperties
{
TableStyleProperties()
: target(Table)
{}
enum TargetLevel {
Table,
TableRow,
TableColumn,
TableCell
};
enum Property {
BottomBorder = 1,
InsideHBorder = 2,
InsideVBorder = 4,
LeftBorder = 8,
RightBorder = 16,
Tl2brBorder = 32,
TopBorder = 64,
Tr2blBorder = 128,
BackgroundColor = 256,
TopMargin = 512,
RightMargin = 1024,
BottomMargin = 2048,
LeftMargin = 4096,
VerticalAlign = 8192,
GlyphOrientation = 16384,
BackgroundOpacity = 32768
};
TargetLevel target;
Q_DECLARE_FLAGS(Properties, Property)
Properties setProperties;
KoBorder::BorderData bottom;
KoBorder::BorderData insideH;
KoBorder::BorderData insideV;
KoBorder::BorderData left;
KoBorder::BorderData right;
KoBorder::BorderData tl2br;
KoBorder::BorderData top;
KoBorder::BorderData tr2bl;
QColor backgroundColor;
qreal backgroundOpacity;
qreal topMargin;
qreal rightMargin;
qreal bottomMargin;
qreal leftMargin;
QString verticalAlign;
bool glyphOrientation;
KoGenStyle textStyle;
KoGenStyle paragraphStyle;
};
class KOMSOOXML_EXPORT TableStyle
{
public:
TableStyle();
virtual ~TableStyle();
void setId(const QString& id);
QString id() const;
private:
QString m_id;
};
/// Instantiation classes
class KOMSOOXML_EXPORT LocalTableStyles
{
public:
LocalTableStyles();
~LocalTableStyles();
TableStyleProperties* localStyle(int row, int column);
void setLocalStyle(MSOOXML::TableStyleProperties* properties, int row, int column);
private:
QMap<QPair<int,int>, TableStyleProperties*> m_properties;
};
class KOMSOOXML_EXPORT TableStyleConverterProperties
{
public:
TableStyleConverterProperties();
virtual ~TableStyleConverterProperties();
void setRowCount(int rowCount);
int rowCount() const;
void setColumnCount(int columnCount);
int columnCount() const;
void setRowBandSize(int size);
int rowBandSize() const;
void setColumnBandSize(int size);
int columnBandSize() const;
///LocalStyles is a collection of cell<->style relationships
void setLocalStyles(const LocalTableStyles& localStyles);
LocalTableStyles localStyles() const;
///LocalTableStyle is a style defined to be the default style of a table. Defined locally.
void setLocalDefaulCelltStyle(MSOOXML::TableStyleProperties* properties);
TableStyleProperties* localDefaultCellStyle() const;
private:
int m_rowCount;
int m_columnCount;
int m_rowBandSize;
int m_columnBandSize;
LocalTableStyles m_localStyles;
MSOOXML::TableStyleProperties* m_localDefaultCellStyle;
};
class KOMSOOXML_EXPORT TableStyleConverter
{
public:
TableStyleConverter(int row, int column);
virtual ~TableStyleConverter();
virtual KoCellStyle::Ptr style(int row, int column, const QPair<int, int> &spans) = 0;
protected:
void applyStyle(MSOOXML::TableStyleProperties* styleProperties, KoCellStyle::Ptr& style,
int row, int column, const QPair<int, int> &spans);
//NOTE: TESTING
void reapplyTableLevelBordersStyle(MSOOXML::TableStyleProperties* properties,
MSOOXML::TableStyleProperties* localProperties,
MSOOXML::TableStyleProperties* exceptionProperties,
KoCellStyle::Ptr& style,
int row, int column, const QPair<int, int> &spans);
private:
void applyTableLevelBordersStyle(MSOOXML::TableStyleProperties* properties, KoCellStyle::Ptr& style,
int row, int column, const QPair<int, int> &spans);
void applyRowLevelBordersStyle(MSOOXML::TableStyleProperties* properties, KoCellStyle::Ptr& style,
int row, int column, const QPair<int, int> &spans);
void applyColumnLevelBordersStyle(MSOOXML::TableStyleProperties* properties, KoCellStyle::Ptr& style,
int row, int column, const QPair<int, int> &spans);
void applyCellLevelBordersStyle(MSOOXML::TableStyleProperties* properties, KoCellStyle::Ptr& style);
void applyBackground(MSOOXML::TableStyleProperties* properties, KoCellStyle::Ptr& style,
int row, int column);
int m_row;
int m_column;
};
}
Q_DECLARE_OPERATORS_FOR_FLAGS(MSOOXML::TableStyleProperties::Properties)
#endif
|