mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63069 954022d7-b5bf-4e40-9824-e11837661b57
30 lines
657 B
C++
30 lines
657 B
C++
#ifndef _PDF_WRITER_SRC_ANNOTATION_DESTINATION_H
|
|
#define _PDF_WRITER_SRC_ANNOTATION_DESTINATION_H
|
|
|
|
#include "Objects.h"
|
|
|
|
namespace PdfWriter
|
|
{
|
|
class CPage;
|
|
|
|
class CDestination : public CArrayObject
|
|
{
|
|
public:
|
|
CDestination(CPage* pPage, CXref* pXref);
|
|
bool IsValid() const;
|
|
void SetXYZ (float fLeft, float fTop, float fZoom);
|
|
void SetFit ();
|
|
void SetFitH (float fTop);
|
|
void SetFitV (float fLeft);
|
|
void SetFitR (float fLeft, float fBottom, float fRight, float fTop);
|
|
void SetFitB ();
|
|
void SetFitBH(float fTop);
|
|
void SetFitBV(float fLeft);
|
|
private:
|
|
|
|
void PrepareArray();
|
|
};
|
|
}
|
|
#endif // _PDF_WRITER_SRC_ANNOTATION_DESTINATION_H
|
|
|