mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:55:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62078 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
1.0 KiB
C
24 lines
1.0 KiB
C
#ifndef _DESTINATION_H
|
|
#define _DESTINATION_H
|
|
|
|
#pragma once
|
|
|
|
#include "Objects.h"
|
|
|
|
|
|
//----- DestinationObject -----------------------------------------------------------------------
|
|
|
|
Destination DestinationNew (MMgr oMMgr, Page pTarget, Xref pXref);
|
|
bool DestinationValidate (Destination pDst);
|
|
//----- Внешние функции --------------------------------------------------------------------------
|
|
unsigned long DestinationSetXYZ (Destination pDst, float fLeft, float fTop, float fZoom);
|
|
unsigned long DestinationSetFit (Destination pDst);
|
|
unsigned long DestinationSetFitH (Destination pDst, float fTop);
|
|
unsigned long DestinationSetFitV (Destination pDst, float fLeft);
|
|
unsigned long DestinationSetFitR (Destination pDst, float fLeft, float fBottom, float fRight, float fTop);
|
|
unsigned long DestinationSetFitB (Destination pDst);
|
|
unsigned long DestinationSetFitBH (Destination pDst, float fTop);
|
|
unsigned long DestinationSetFitBV (Destination pDst, float fLeft);
|
|
#endif /* _DESTINATION_H */
|
|
|