mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
33 lines
648 B
C++
33 lines
648 B
C++
#ifndef CTRLCOLUMNDEF_H
|
|
#define CTRLCOLUMNDEF_H
|
|
|
|
#include "../HWPElements/HwpRecordTypes.h"
|
|
#include "../HWPStream.h"
|
|
#include "Ctrl.h"
|
|
#include <vector>
|
|
|
|
namespace HWP
|
|
{
|
|
class CCtrlColumnDef : public CCtrl
|
|
{
|
|
int m_nSize;
|
|
|
|
int m_nAttr;
|
|
short m_shColCount;
|
|
bool m_bSameSz;
|
|
short m_shSameGap;
|
|
VECTOR<short> m_arColSzWidths;
|
|
VECTOR<short> m_arColSzGaps;
|
|
ELineStyle2 m_eColLineStyle;
|
|
HWP_BYTE m_chColLineWidth;
|
|
int m_nColLineColor;
|
|
public:
|
|
CCtrlColumnDef(const HWP_STRING& sCtrlID);
|
|
CCtrlColumnDef(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
|
|
|
|
int GetSize() override;
|
|
};
|
|
}
|
|
|
|
#endif // CTRLCOLUMNDEF_H
|