mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
256 lines
5.6 KiB
C++
256 lines
5.6 KiB
C++
#ifndef TABLE_H
|
|
#define TABLE_H
|
|
|
|
#include "../DesktopEditor/common/StringBuilder.h"
|
|
#include "../Common/3dParty/html/css/src/StyleProperties.h"
|
|
#include "../Common/3dParty/html/css/src/CNode.h"
|
|
|
|
#include <vector>
|
|
|
|
namespace HTML
|
|
{
|
|
#define MAXCOLUMNSINTABLE 63
|
|
#define MAXROWSINTABLE 32767
|
|
|
|
enum class ERowParseMode
|
|
{
|
|
Header,
|
|
Body,
|
|
Foother
|
|
};
|
|
|
|
enum class ERowPosition
|
|
{
|
|
First,
|
|
Middle,
|
|
Last
|
|
};
|
|
|
|
struct TTableRowStyle
|
|
{
|
|
UINT m_unMaxIndex;
|
|
UINT m_unMaxHeight;
|
|
bool m_bIsHeader;
|
|
|
|
TTableRowStyle();
|
|
|
|
bool Empty() const;
|
|
};
|
|
|
|
struct TTableCellStyle
|
|
{
|
|
NSCSS::NSProperties::CDigit m_oWidth;
|
|
NSCSS::NSProperties::CDigit m_oHeight;
|
|
NSCSS::NSProperties::CBorder m_oBorder;
|
|
NSCSS::NSProperties::CIndent m_oPadding;
|
|
NSCSS::NSProperties::CColor m_oBackground;
|
|
|
|
std::wstring m_wsHAlign;
|
|
std::wstring m_wsVAlign;
|
|
|
|
TTableCellStyle();
|
|
|
|
bool Empty();
|
|
void Copy(const TTableCellStyle* pTableCellStyle);
|
|
|
|
TTableCellStyle& operator+=(const TTableCellStyle* pCellStyle);
|
|
};
|
|
|
|
class CStorageTable;
|
|
|
|
class CStorageTableCell
|
|
{
|
|
public:
|
|
CStorageTableCell();
|
|
CStorageTableCell(UINT unColspan, UINT unRowspan, bool bIsMerged, bool bIsEmpty);
|
|
CStorageTableCell(CStorageTableCell& oCell);
|
|
|
|
bool Empty() const;
|
|
bool Merged() const;
|
|
|
|
CStorageTableCell* Copy();
|
|
|
|
static CStorageTableCell* CreateEmpty(UINT unColspan = 1, bool m_bIsMerged = false, const TTableCellStyle* pStyle = NULL);
|
|
static CStorageTableCell* CreateEmpty(const TTableCellStyle* pStyle);
|
|
|
|
void SetColspan(UINT unColspan, UINT unCurrentIndex);
|
|
UINT GetColspan() const;
|
|
|
|
void SetRowspan(UINT unRowspan);
|
|
UINT GetRowspan() const;
|
|
|
|
NSStringUtils::CStringBuilder* GetData();
|
|
|
|
const TTableCellStyle* GetStyles() const;
|
|
TTableCellStyle* GetStyles();
|
|
|
|
void SetWidth(const NSCSS::NSProperties::CDigit& oWidth);
|
|
void SetHeight(const NSCSS::NSProperties::CDigit& oHeight);
|
|
|
|
UINT GetWidth() const;
|
|
UINT GetHeight() const;
|
|
|
|
void SetBorder(const NSCSS::NSProperties::CBorder& oBorder);
|
|
|
|
void ClearTopBorder();
|
|
void ClearLeftBorder();
|
|
void ClearBottomBorder();
|
|
void ClearRightBorder();
|
|
|
|
void SetPadding(const NSCSS::NSProperties::CIndent& oPadding);
|
|
void SetHAlign(const std::wstring& wsAlign);
|
|
void SetVAlign(const std::wstring& wsAlign);
|
|
void SetBackground(const NSCSS::NSProperties::CColor& oColor);
|
|
private:
|
|
UINT m_unColspan;
|
|
UINT m_unRowSpan;
|
|
|
|
bool m_bIsMerged;
|
|
bool m_bIsEmpty;
|
|
|
|
TTableCellStyle m_oStyles;
|
|
NSStringUtils::CStringBuilder m_oData;
|
|
};
|
|
|
|
class CStorageTableRow
|
|
{
|
|
public:
|
|
CStorageTableRow();
|
|
~CStorageTableRow();
|
|
|
|
void AddCell(CStorageTableCell* pCell);
|
|
void InsertCell(CStorageTableCell *pCell, int nPosition);
|
|
|
|
UINT GetIndex() const;
|
|
UINT GetCount() const;
|
|
|
|
CStorageTableCell* operator[](UINT unIndex);
|
|
|
|
bool Empty() const;
|
|
const TTableRowStyle& GetStyles() const;
|
|
const std::vector<CStorageTableCell*>& GetCells() const;
|
|
private:
|
|
TTableRowStyle m_oStyles;
|
|
std::vector<CStorageTableCell*> m_arCells;
|
|
};
|
|
|
|
class CTableCol
|
|
{
|
|
public:
|
|
CTableCol(UINT unSpan);
|
|
CTableCol(const NSCSS::CNode& oTableColNode);
|
|
|
|
UINT GetSpan() const;
|
|
TTableCellStyle* GetStyle();
|
|
const TTableCellStyle* GetStyle() const;
|
|
private:
|
|
UINT m_unSpan;
|
|
TTableCellStyle m_oStyle;
|
|
};
|
|
|
|
class CTableColgroup
|
|
{
|
|
public:
|
|
CTableColgroup(NSCSS::CNode& oTableColgroupNode);
|
|
~CTableColgroup();
|
|
|
|
bool Empty() const;
|
|
|
|
void AddCol(CTableCol* pCol);
|
|
|
|
const std::vector<CTableCol*>& GetCols() const;
|
|
private:
|
|
std::vector<CTableCol*> m_arCols;
|
|
UINT m_unWidth;
|
|
};
|
|
|
|
//Required table styles
|
|
struct TTableStyles
|
|
{
|
|
NSCSS::NSProperties::CIndent m_oPadding;
|
|
NSCSS::NSProperties::CIndent m_oMargin;
|
|
NSCSS::NSProperties::CBorder m_oBorder;
|
|
NSCSS::NSProperties::CDigit m_oWidth;
|
|
|
|
int m_nCellSpacing;
|
|
|
|
std::wstring m_wsAlign;
|
|
|
|
enum ETableRules
|
|
{
|
|
All,
|
|
Groups,
|
|
Cols,
|
|
None,
|
|
Rows
|
|
} m_enRules;
|
|
|
|
TTableStyles();
|
|
|
|
bool Empty() const;
|
|
};
|
|
|
|
class CStorageTable
|
|
{
|
|
public:
|
|
CStorageTable();
|
|
~CStorageTable();
|
|
|
|
CStorageTableRow* operator[](UINT unIndex);
|
|
|
|
bool Empty() const;
|
|
bool HaveCaption();
|
|
bool HaveColgroups() const;
|
|
bool HaveHeader() const;
|
|
UINT GetRowCount() const;
|
|
const TTableStyles& GetTableStyles() const;
|
|
const TTableCellStyle* GetColStyle(UINT unColumnNumber) const;
|
|
|
|
void AddRows(std::vector<CStorageTableRow*>& m_arRows, ERowParseMode eParseMode = ERowParseMode::Body);
|
|
void AddRow(CStorageTableRow* pRow, ERowParseMode eParseMode = ERowParseMode::Body);
|
|
|
|
NSStringUtils::CStringBuilder* GetCaptionData();
|
|
|
|
void SetPadding(const NSCSS::NSProperties::CIndent& oPadding);
|
|
const NSCSS::NSProperties::CIndent& GetPadding() const;
|
|
|
|
void SetMargin(const NSCSS::NSProperties::CIndent& oMargin);
|
|
void SetBorder(const NSCSS::NSProperties::CBorder& oBorder);
|
|
|
|
void SetWidth(const NSCSS::NSProperties::CDigit& oWidth);
|
|
void SetCellSpacing(int nCellSpacing);
|
|
void SetAlign(const std::wstring& wsValue);
|
|
void SetRules(const std::wstring& wsValue);
|
|
|
|
void AddColgroup(CTableColgroup* pElement);
|
|
|
|
void RecalculateMaxColumns();
|
|
void Shorten();
|
|
void CompleteTable();
|
|
|
|
//TODO:: refactor to const std::vector<const T*> Get...() const;
|
|
const std::vector<std::vector<CStorageTableRow*>>& GetHeaders() const;
|
|
const std::vector<CStorageTableRow*>& GetFoothers() const;
|
|
const std::vector<CStorageTableRow*>& GetRows() const;
|
|
const std::vector<CTableColgroup*> GetColgroups() const;
|
|
|
|
UINT GetMaxColumns() const;
|
|
private:
|
|
std::vector<std::vector<CStorageTableRow*>> m_arHeaders;
|
|
std::vector<CStorageTableRow*> m_arFoother;
|
|
std::vector<CStorageTableRow*> m_arRows;
|
|
|
|
std::vector<UINT> m_arMinColspan;
|
|
|
|
NSStringUtils::CStringBuilder m_oCaption;
|
|
|
|
std::vector<CTableColgroup*> m_arColgroups;
|
|
|
|
TTableStyles m_oStyles;
|
|
|
|
UINT m_unMaxColumns;
|
|
};
|
|
}
|
|
|
|
#endif // TABLE_H
|