blob: 02203c91cf1aeacca3c2a2675b5cebd87d8e0178 [file] [log] [blame]
// 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;
}