mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 00:04:04 +08:00
Co-authored-by: Alexander Trofimov <alexander.trofimov@onlyoffice.com> Co-committed-by: Alexander Trofimov <alexander.trofimov@onlyoffice.com>
111 lines
4.8 KiB
C++
111 lines
4.8 KiB
C++
/*
|
|
* Copyright (C) Ascensio System SIA, 2009-2026
|
|
*
|
|
* This program is a free software product. You can redistribute it and/or
|
|
* modify it under the terms of the GNU Affero General Public License (AGPL)
|
|
* version 3 as published by the Free Software Foundation, together with the
|
|
* additional terms provided in the LICENSE file.
|
|
*
|
|
* This program is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For
|
|
* details, see the GNU AGPL at: https://www.gnu.org/licenses/agpl-3.0.html
|
|
*
|
|
* You can contact Ascensio System SIA by email at info@onlyoffice.com
|
|
* or by postal mail at 20A-6 Ernesta Birznieka-Upisha Street, Riga,
|
|
* LV-1050, Latvia, European Union.
|
|
*
|
|
* The interactive user interfaces in modified versions of the Program
|
|
* are required to display Appropriate Legal Notices in accordance with
|
|
* Section 5 of the GNU AGPL version 3.
|
|
*
|
|
* No trademark rights are granted under this License.
|
|
*
|
|
* All non-code elements of the Product, including illustrations,
|
|
* icon sets, and technical writing content, are licensed under the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License:
|
|
* https://creativecommons.org/licenses/by-sa/4.0/legalcode
|
|
*
|
|
* This license applies only to such non-code elements and does not
|
|
* modify or replace the licensing terms applicable to the Program's
|
|
* source code, which remains licensed under the GNU Affero General
|
|
* Public License v3.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
#pragma once
|
|
#include "../../OOXML/Base/SmartPtr.h"
|
|
|
|
#include "BorderCode.h"
|
|
#include "Global.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
struct TC80
|
|
{
|
|
TC80()
|
|
{
|
|
wWidth = horzMerge =0;
|
|
|
|
textFlow = Global::lrTb;
|
|
vertMerge = Global::fvmClear;
|
|
vertAlign = Global::top;
|
|
ftsWidth = Global::nil;
|
|
|
|
fFitText = fNoWrap = fHideMark = false;
|
|
}
|
|
/// A value from the following table that specifies how this cell merges horizontally with the neighboring cells in the same row.
|
|
/// MUST be one of the following values:
|
|
/// 0 - The cell is not merged with the cells on either side of it.
|
|
/// 1 - The cell is one of a set of horizontally merged cells. It contributes its layout region to the set and its own contents are not rendered.
|
|
/// 2, 3 - The cell is the first cell in a set of horizontally merged cells. The contents and formatting of this cell extend into any consecutive cells following it that are designated as part of the merged set.
|
|
unsigned char horzMerge;
|
|
/// A value from the TextFlow enumeration that specifies rotation settings for the text in the cell.
|
|
Global::TextFlow textFlow;
|
|
/// A value from the VerticalMergeFlag enumeration that specifies how this cell merges vertically with the cells above or below it.
|
|
Global::VerticalMergeFlag vertMerge;
|
|
/// A value from the VerticalAlign enumeration that specifies how contents inside this cell are aligned.
|
|
Global::VerticalAlign vertAlign;
|
|
/// An Fts that specifies the unit of measurement for the wWidth field in the TC80 structure.
|
|
Global::CellWidthType ftsWidth;
|
|
/// Specifies whether the contents of the cell are to be stretched out such that the full cell width is used.
|
|
bool fFitText;
|
|
/// When set, specifies that the preferred layout of the contents of this cell are as a single line,
|
|
/// and cell widths can be adjusted to accommodate long lines.
|
|
/// This preference is ignored when the preferred width of this cell is set to ftsDxa.
|
|
bool fNoWrap;
|
|
/// When set, specifies that this cell is rendered with no height if all cells in the row are empty.
|
|
bool fHideMark;
|
|
/// An integer that specifies the preferred width of the cell.
|
|
/// The width includes cell margins, but does not include cell spacing. MUST be non-negative.
|
|
/// The unit of measurement depends on ftsWidth.
|
|
/// If ftsWidth is set to ftsPercent, the value is a fraction of the width of the entire table.
|
|
short wWidth;
|
|
|
|
NSCommon::smart_ptr<BorderCode> brcTop;
|
|
NSCommon::smart_ptr<BorderCode> brcLeft;
|
|
NSCommon::smart_ptr<BorderCode> brcBottom;
|
|
NSCommon::smart_ptr<BorderCode> brcRight;
|
|
} ;
|
|
|
|
class SprmTDefTable
|
|
{
|
|
private:
|
|
friend class TableCellPropertiesMapping;
|
|
|
|
public:
|
|
SprmTDefTable (unsigned char* bytes, int size);
|
|
|
|
unsigned char numberOfColumns;
|
|
|
|
/// An array of 16-bit signed integer that specifies horizontal distance in twips.
|
|
/// MUST be greater than or equal to -31680 and less than or equal to 31680.
|
|
std::vector<short> rgdxaCenter;
|
|
|
|
/// An array of TC80 that specifies the default formatting for a cell in the table.
|
|
/// Each TC80 in the array corresponds to the equivalent column in the table.
|
|
/// If there are fewer TC80s than columns, the remaining columns are formatted with the default TC80 formatting.
|
|
/// If there are more TC80s than columns, the excess TC80s MUST be ignored.
|
|
std::vector<TC80> rgTc80;
|
|
};
|
|
}
|