blob: 97bddde05ddfbda425fbdb8f62c416a5b7aca1d3 [file] [log] [blame]
Henrique Nakashima077f6432017-10-16 13:32:01 -04001// Copyright 2017 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "public/fpdf_catalog.h"
6
Lei Zhang81535612018-10-09 21:15:17 +00007#include "core/fpdfapi/parser/cpdf_dictionary.h"
Henrique Nakashima077f6432017-10-16 13:32:01 -04008#include "core/fpdfapi/parser/cpdf_document.h"
Dan Sinclair00d47a62018-03-28 18:39:04 +00009#include "fpdfsdk/cpdfsdk_helpers.h"
Henrique Nakashima077f6432017-10-16 13:32:01 -040010
11FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV
12FPDFCatalog_IsTagged(FPDF_DOCUMENT document) {
13 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
14 if (!pDoc)
15 return false;
16
17 const CPDF_Dictionary* pCatalog = pDoc->GetRoot();
18 if (!pCatalog)
19 return false;
20
21 const CPDF_Dictionary* pMarkInfo = pCatalog->GetDictFor("MarkInfo");
22 return pMarkInfo && pMarkInfo->GetIntegerFor("Marked") != 0;
23}