blob: a361e5b87acff5369beb419b57db2b2240201ec0 [file] [log] [blame]
// 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 "core/fpdfapi/page/cpdf_contentmarkitem.h"
#include <utility>
#include "core/fpdfapi/parser/cpdf_dictionary.h"
CPDF_ContentMarkItem::CPDF_ContentMarkItem(ByteString name)
: m_MarkName(std::move(name)) {}
CPDF_ContentMarkItem::~CPDF_ContentMarkItem() {}
const CPDF_Dictionary* CPDF_ContentMarkItem::GetParam() const {
switch (m_ParamType) {
case kPropertiesDict:
return m_pPropertiesHolder->GetDictFor(m_PropertyName);
case kDirectDict:
return m_pDirectDict.Get();
case kNone:
default:
return nullptr;
}
}
CPDF_Dictionary* CPDF_ContentMarkItem::GetParam() {
return const_cast<CPDF_Dictionary*>(
static_cast<const CPDF_ContentMarkItem*>(this)->GetParam());
}
bool CPDF_ContentMarkItem::HasMCID() const {
const CPDF_Dictionary* pDict = GetParam();
return pDict && pDict->KeyExist("MCID");
}
void CPDF_ContentMarkItem::SetDirectDict(RetainPtr<CPDF_Dictionary> pDict) {
m_ParamType = kDirectDict;
m_pDirectDict = std::move(pDict);
}
void CPDF_ContentMarkItem::SetPropertiesHolder(
CPDF_Dictionary* pHolder,
const ByteString& property_name) {
m_ParamType = kPropertiesDict;
m_pPropertiesHolder.Reset(pHolder);
m_PropertyName = property_name;
}