diff options
author | tonikitoo <tonikitoo@igalia.com> | 2016-08-18 20:10:17 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-18 20:10:17 -0700 |
commit | 618cb1f3e561b5d2a1dea9ec4653804f0da7267c (patch) | |
tree | a17067c25b751d6dfba46ab38114bd23a10ca2ff /fpdfsdk/javascript/Annot.cpp | |
parent | 7996fe888cb98597cd1608af05fb59f45c837fc6 (diff) | |
download | pdfium-618cb1f3e561b5d2a1dea9ec4653804f0da7267c.tar.xz |
Add initial Document::getAnnot supportchromium/2833
CL implements the first step in order to support
Annotations manipulation in PDFium: Document::getAnnot.
The method takes two arguments, an integer (page number)
and a string (annotation name).
When called, it iterates over the annotations on
the given page number, searching for the one whose name
matches the string in the second parameter.
If found, then an Annot instance (see Annot.cpp/g added by this
CL), is bound to a Javascript object and returned.
With the use cases described in bug [1] as an initial test case,
CL adds support to the following Annotation object properties:
- hidden
- name
- type
Idea is to keep evolving the implementation with more methods
and properties in follow up CLs.
[1] https://bugs.chromium.org/p/pdfium/issues/detail?id=492
BUG=pdfium:492
Review-Url: https://codereview.chromium.org/2260663002
Diffstat (limited to 'fpdfsdk/javascript/Annot.cpp')
-rw-r--r-- | fpdfsdk/javascript/Annot.cpp | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/fpdfsdk/javascript/Annot.cpp b/fpdfsdk/javascript/Annot.cpp new file mode 100644 index 0000000000..df123274d5 --- /dev/null +++ b/fpdfsdk/javascript/Annot.cpp @@ -0,0 +1,89 @@ +// Copyright 2016 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#include "fpdfsdk/javascript/Annot.h" + +#include "fpdfsdk/javascript/JS_Define.h" +#include "fpdfsdk/javascript/JS_Object.h" +#include "fpdfsdk/javascript/JS_Value.h" +#include "fpdfsdk/javascript/cjs_context.h" + +BEGIN_JS_STATIC_CONST(CJS_Annot) +END_JS_STATIC_CONST() + +BEGIN_JS_STATIC_PROP(CJS_Annot) +JS_STATIC_PROP_ENTRY(hidden) +JS_STATIC_PROP_ENTRY(name) +JS_STATIC_PROP_ENTRY(type) +END_JS_STATIC_PROP() + +BEGIN_JS_STATIC_METHOD(CJS_Annot) +END_JS_STATIC_METHOD() + +IMPLEMENT_JS_CLASS(CJS_Annot, Annot) + +Annot::Annot(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {} + +Annot::~Annot() {} + +FX_BOOL Annot::hidden(IJS_Context* cc, + CJS_PropValue& vp, + CFX_WideString& sError) { + if (vp.IsGetting()) { + CPDF_Annot* pPDFAnnot = m_BAAnnot->GetPDFAnnot(); + vp << CPDF_Annot::IsAnnotationHidden(pPDFAnnot->GetAnnotDict()); + return TRUE; + } + + bool bHidden; + vp >> bHidden; + + uint32_t flags = m_BAAnnot->GetFlags(); + if (bHidden) { + flags |= ANNOTFLAG_HIDDEN; + flags |= ANNOTFLAG_INVISIBLE; + flags |= ANNOTFLAG_NOVIEW; + flags &= ~ANNOTFLAG_PRINT; + } else { + flags &= ~ANNOTFLAG_HIDDEN; + flags &= ~ANNOTFLAG_INVISIBLE; + flags &= ~ANNOTFLAG_NOVIEW; + flags |= ANNOTFLAG_PRINT; + } + m_BAAnnot->SetFlags(flags); + return TRUE; +} + +FX_BOOL Annot::name(IJS_Context* cc, + CJS_PropValue& vp, + CFX_WideString& sError) { + if (vp.IsGetting()) { + vp << m_BAAnnot->GetAnnotName(); + return TRUE; + } + + CFX_WideString annotName; + vp >> annotName; + m_BAAnnot->SetAnnotName(annotName); + return TRUE; +} + +FX_BOOL Annot::type(IJS_Context* cc, + CJS_PropValue& vp, + CFX_WideString& sError) { + if (vp.IsSetting()) { + CJS_Context* pContext = static_cast<CJS_Context*>(cc); + sError = JSGetStringFromID(pContext, IDS_STRING_JSREADONLY); + return FALSE; + } + + vp << m_BAAnnot->GetType(); + return TRUE; +} + +void Annot::SetSDKAnnot(CPDFSDK_BAAnnot* annot) { + m_BAAnnot = annot; +} |