mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:08:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62408 954022d7-b5bf-4e40-9824-e11837661b57
37 lines
820 B
C++
37 lines
820 B
C++
#pragma once
|
|
|
|
#include "../../Common/3dParty/pole/pole.h"
|
|
#include "../../DesktopEditor/common/Types.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
typedef enum FKPType
|
|
{
|
|
Character,
|
|
Paragraph
|
|
} FKPType;
|
|
|
|
class FormattedDiskPage
|
|
{
|
|
friend class FormattedDiskPageCHPX;
|
|
friend class FormattedDiskPagePAPX;
|
|
friend class WordDocument;
|
|
|
|
private:
|
|
/// Specifies the type of the FKP
|
|
FKPType Type;
|
|
/// The WordDocument stream
|
|
POLE::Stream* WordStream;
|
|
/// Count of runs for that FKP
|
|
unsigned char crun;
|
|
/// Each value is the limit of a paragraph or run of exception text
|
|
int* rgfc;
|
|
unsigned int rgfcSize;
|
|
|
|
public:
|
|
FormattedDiskPage(): Type(Character), WordStream(NULL), crun(0), rgfc(NULL), rgfcSize(0)
|
|
{
|
|
}
|
|
};
|
|
}
|