blob: 32b50f3a3132d60d696b3827c8b1072a1e750a1d [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/check.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) {
DCHECK(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() {
DCHECK(m_iArabicChars > 0);
--m_iArabicChars;
}