You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
917 B

// Copyright 2017 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 "xfa/fgas/layout/cfx_breakline.h"
#include "third_party/base/stl_util.h"
CFX_BreakLine::CFX_BreakLine() = default;
CFX_BreakLine::~CFX_BreakLine() = default;
CFX_Char* CFX_BreakLine::GetChar(int32_t index) {
ASSERT(pdfium::IndexInBounds(m_LineChars, index));
return &m_LineChars[index];
}
int32_t CFX_BreakLine::GetLineEnd() const {
return m_iStart + m_iWidth;
}
void CFX_BreakLine::Clear() {
m_LineChars.clear();
m_LinePieces.clear();
m_iWidth = 0;
m_iArabicChars = 0;
}
void CFX_BreakLine::IncrementArabicCharCount() {
++m_iArabicChars;
}
void CFX_BreakLine::DecrementArabicCharCount() {
ASSERT(m_iArabicChars > 0);
--m_iArabicChars;
}