1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
/* Copyright (C) 2023 ebandal
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>
*/
/* 본 제품은 한글과컴퓨터의 ᄒᆞᆫ글 문서 파일(.hwp) 공개 문서를 참고하여 개발하였습니다.
* 개방형 워드프로세서 마크업 언어(OWPML) 문서 구조 KS X 6101:2018 문서를 참고하였습니다.
* 작성자 : 반희수 ebandal@gmail.com
* 작성일 : 2022.10
*/
package HwpDoc.HwpElement;
import java.util.logging.Logger;
import HwpDoc.Exception.HwpParseException;
import HwpDoc.paragraph.Ctrl_Common.VertAlign;
public class HwpRecord_ListHeader extends HwpRecord {
private static final Logger log = Logger.getLogger(HwpRecord_ListHeader.class.getName());
HwpRecord_ListHeader(int tagNum, int level, int size) {
super(tagNum, level, size);
}
public static int getCount(int tagNum, int level, int size, byte[] buf, int off, int version) throws HwpParseException {
int offset = off;
short nParas = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
log.fine(" "+"문단갯수="+nParas);
return nParas;
}
public static VertAlign getVertAlign(int size, byte[] buf, int off, int version) throws HwpParseException {
int offset = off;
offset += 2;
int attr = buf[offset+3]<<24&0xFF000000 | buf[offset+2]<<16&0x00FF0000 | buf[offset+1]<<8&0x0000FF00 | buf[offset]&0x000000FF;
offset += 4;
VertAlign verAlign = VertAlign.from(attr>>21&0x03);
log.fine(" "
+"리스트헤더속성="+String.format("0x%X", attr)
+",세로정렬="+verAlign.toString());
return verAlign;
}
}
|