/************************************************************************ * * ListCounter.java * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Copyright: 2002-2011 by Henrik Just * * All Rights Reserved. * * Version 1.2 (2011-03-09) * */ package writer2latex.office; import writer2latex.util.*; /** *
This class produces labels for OOo lists/outlines (for xhtml * and text, which cannot produce them on their own).
* */ public class ListCounter { private int[] nCounter = new int[11]; private String[] sNumFormat = new String[11]; private int[] nStartValue = new int[11]; private ListStyle style; private int nLevel=1; // current level public ListCounter() { // Create a dummy counter this.style = null; for (int i=1; i<=10; i++) { sNumFormat[i] = null; } } public ListCounter(ListStyle style) { this(); if (style!=null) { this.style = style; for (int i=1; i<=10; i++) { sNumFormat[i] = style.getLevelProperty(i,XMLString.STYLE_NUM_FORMAT); nStartValue[i] = Misc.getPosInteger(style.getLevelProperty(i, XMLString.TEXT_START_VALUE),1); } } restart(1); } public ListCounter step(int nLevel) { // Make sure no higher levels are zero // This means that unlike eg. LaTeX, step(1).step(3) does not create // the value 1.0.1 but rather 1.1.1 for (int i=1; i