mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62078 954022d7-b5bf-4e40-9824-e11837661b57
18 lines
1.1 KiB
C
18 lines
1.1 KiB
C
#ifndef _ANNOTATION_H
|
|
#define _ANNOTATION_H
|
|
|
|
#pragma once
|
|
|
|
#include "Objects.h"
|
|
|
|
Annotation LinkAnnotNew (MMgr oMMgr, Xref pXref, TRect oRect, Destination pDst);
|
|
Annotation TextAnnotNew (MMgr oMMgr, Xref pXref, TRect oRect, const char *sText, EncoderRecPtr pEncoder);
|
|
Annotation URILinkAnnotNew (MMgr oMMgr, Xref pXref, TRect oRect, const char *sUri);
|
|
//------ Внешние функции --------------------------------------------------------------------------
|
|
unsigned long AnnotationSetBorderStyle (Annotation pAnnot, BSSubtype eSubtype, float fWidth, unsigned short nDashOn, unsigned short nDashOff, unsigned short nDashPhase);
|
|
unsigned long LinkAnnotSetBorderStyle (Annotation pAnnot, float fWidth, unsigned short nDashOn, unsigned short nDashOff );
|
|
unsigned long LinkAnnotSetHighlightMode (Annotation pAnnot, AnnotHighlightMode eMode);
|
|
unsigned long TextAnnotSetIcon (Annotation pAnnot, AnnotIcon eIcon);
|
|
unsigned long TextAnnotSetOpened (Annotation pAnnot, bool bOpened);
|
|
#endif /* _ANNOTATION_H */
|