/************************************************************************
*
* ListCounter.java
*
* Copyright: 2002-2011 by Henrik Just
*
* This file is part of Writer2LaTeX.
*
* Writer2LaTeX is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Writer2LaTeX 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Writer2LaTeX. If not, see
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