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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
/* 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.paragraph;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.zip.DataFormatException;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
import HwpDoc.HwpxFile;
import HwpDoc.IContext;
import HwpDoc.Exception.NotImplementedException;
import HwpDoc.section.NoteShape;
import HwpDoc.section.Page;
import HwpDoc.section.PageBorderFill;
public class Ctrl_SectionDef extends Ctrl {
private static final Logger log = Logger.getLogger(Ctrl_SectionDef.class.getName());
private int size;
// 속성
public boolean hideHeader; // 머리말 감추기 여부
public boolean hideFooter; // 꼬리말 감추기 여부
public boolean hideMasterPage; // 바탕쪽 감추기 여부
public boolean hideBorder; // 테두리 감추기 여부
public boolean hideFill; // 배경 감추기 여부
public boolean hidePageNumPos; // 쪽번호 위치 감추기 여부
public boolean showFirstBorder; // 구역의 첫 쪽에서만 테두리 표시여부
public boolean showFirstFill; // 구역의 첫 쪽에만 배경 표시 여부
public byte textDirection; // 텍스트 방향 (0:가로, 1:세로)
public boolean hideEmptyLine; // 빈줄 감추기 여부
public byte pageStartOn; // 구역 나눔으로 새 페이지가 생길대의 페이지 번호 적용할지 여부 Both,Even,Odd
// public boolean gridPaper; // 원고지 정서법 적용 여부
public short spaceColumns; // 동일한 페이지에서 서로 다른 단 사이의 간격
public short lineGrid; // 세로로 줄맞춤을 할지 여부. 0:off, 1-n:간격을 hwpunit 단위로 지정
public short charGrid; // 가로로 줄맞춤을 할지 여부. 0:off, 1-n:간격을 hwpunit 단위로 지정
public int tabStop; // 기본 탭 간격 (hwpunit or relative characters)
public int outlineNumberingID; // 번호 문단 모양 ID
public short pageNum; // 쪽 번호 (0:앞 구역에 이어, n= 임의의 번호로 시작)
public short figure; // 그림 번호 (0:앞 구역에 이어, n= 임의의 번호로 시작)
public short table; // 표 번호 (0:앞 구역에 이어, n= 임의의 번호로 시작)
public short equation; // 수식 번호 (0:앞 구역에 이어, n= 임의의 번호로 시작)
public short lang; // 대표 language (0:없음, Application에 지정된 language) 5.0.15 이상
public Page page; // HWPTAG_PAGE_DEF 처리
public List<Ctrl_HeadFoot> headerFooter; //
public List<NoteShape> noteShapes; // HWPTAG_FOOTNOTE_SHAPE 처리
public List<PageBorderFill> borderFills; // HWPTAG_PAGE_BORDER_FILL 처리
public List<HwpParagraph> paras; // 바탕쪽
public Ctrl_SectionDef(String ctrlId) {
super(ctrlId);
}
public Ctrl_SectionDef(String ctrlId, int size, byte[] buf, int off, int version) {
super(ctrlId);
int offset = off;
// 속성 (표 130참조)
int attr = buf[offset+3]<<24&0xFF000000 | buf[offset+2]<<16&0x00FF0000 | buf[offset+1]<<8&0x0000FF00 | buf[offset]&0x000000FF;
offset += 4;
hideHeader = (attr&0x01)==0x01?true:false;
hideFooter = (attr&0x02)==0x02?true:false;
hideMasterPage = (attr&0x04)==0x04?true:false;
hideBorder = (attr&0x08)==0x08?true:false;
hideFill = (attr&0x10)==0x10?true:false;
hidePageNumPos = (attr&0x20)==0x20?true:false;
showFirstBorder = (attr&0x100)==0x100?true:false;
showFirstFill = (attr&0x200)==0x200?true:false;
textDirection = (byte) (attr>>16&0x07);
hideEmptyLine = (attr&0x20000)==0x20000?true:false;
pageStartOn = (byte) (attr>>20&0x03);
// 동일한 페이지에서 서로 다른 단 사이의 간격. 기본값:1134. 기본설정 11.3pt=4mm=0.158inch
spaceColumns = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
// 세로로 줄맞춤을 할지 여부 (0=off, 1-n=간격을 HWPUNIT 단위로 지정)
lineGrid = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
// 가로로 줄맞춤을 할지 여부 (0=off, 1-n=간격을 HWPUNIT 단위로 지정)
charGrid = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
// 기본 탭 간격 (hwpunit 또는 relative characters) 기본값:8000. 기본설정 40.0pt=14.11mm=0.5556inch
tabStop = buf[offset+3]<<24&0xFF000000 | buf[offset+2]<<16&0x00FF0000 | buf[offset+1]<<8&0x0000FF00 | buf[offset]&0x000000FF;
offset += 4;
// 번호 문단 모양 ID
outlineNumberingID = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
// 쪽 번호 (0=앞 구역에 이어, n=임의의 번호로 시작)
pageNum = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
// 그림,표,수식 번호 (0=앞 구역에 이어, n = 임의의 번호로 시작)
figure = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
table = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
equation = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
if (version>=5015) {
// 대표 language(language값이 없으면(==0), Application에 지정된 language) 5.0.1.5 이상
lang = (short) (buf[offset+1]<<8&0xFF00 | buf[offset]&0x00FF);
offset += 2;
}
log.fine(" " + toString(attr));
if (offset-off < size) {
}
this.size = offset-off;
this.fullfilled = true;
}
public Ctrl_SectionDef(String ctrlId, Node node, int version, IContext context) throws NotImplementedException {
super(ctrlId);
NamedNodeMap attributes = node.getAttributes();
// id값은 처리하지 않는다. List<HwpRecord_CharShape>에 순차적으로 추가한다.
// String id = attributes.getNamedItem("height").getNodeValue();
switch(attributes.getNamedItem("textDirection").getNodeValue()) {
case "HORIZONTAL":
textDirection = 0; break; // 0:가로, 1:세로
case "VERTICAL":
textDirection = 1; break; // 0:가로, 1:세로
default:
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("Ctrl_SectionDef");
}
break;
}
String numStr = attributes.getNamedItem("spaceColumns").getNodeValue();
spaceColumns = (short) Integer.parseInt(numStr);
numStr = attributes.getNamedItem("tabStop").getNodeValue();
tabStop = Integer.parseInt(numStr);
numStr = attributes.getNamedItem("outlineShapeIDRef").getNodeValue();
outlineNumberingID = Integer.parseInt(numStr);
// attributes.getNamedItem("memoShapeIDRef").getNodeValue();
// attributes.getNamedItem("textVerticalWidthHead").getNodeValue();
// attributes.getNamedItem("masterPageCnt").getNodeValue();
NodeList nodeList = node.getChildNodes();
for (int i=0; i<nodeList.getLength(); i++) {
Node child = nodeList.item(i);
switch(child.getNodeName()) {
case "hp:startNum":
{
NamedNodeMap childAttrs = child.getAttributes();
switch(childAttrs.getNamedItem("pageStartsOn").getNodeValue()) {// Both,Even,Odd
case "BOTH":
pageStartOn = 0; break;
case "EVEN":
pageStartOn = 1; break;
case "ODD":
pageStartOn = 2; break;
default:
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("Ctrl_SectionDef");
}
break;
}
numStr = childAttrs.getNamedItem("page").getNodeValue();
pageNum = (short) Integer.parseInt(numStr);
numStr = childAttrs.getNamedItem("pic").getNodeValue();
figure = (short) Integer.parseInt(numStr);
numStr = childAttrs.getNamedItem("tbl").getNodeValue();
table = (short) Integer.parseInt(numStr);
numStr = childAttrs.getNamedItem("equation").getNodeValue();
equation = (short) Integer.parseInt(numStr);
}
break;
case "hp:grid":
{
NamedNodeMap childAttrs = child.getAttributes();
// 세로로 줄맞춤을 할지 여부. 0:off, 1-n:간격을 hwpunit 단위로 지정
switch(childAttrs.getNamedItem("lineGrid").getNodeValue()) {
case "0":
lineGrid = 0; break;
default :
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("lineGrid");
}
break;
}
switch(childAttrs.getNamedItem("charGrid").getNodeValue()) {
case "0":
charGrid = 0; break;
default :
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("charGrid");
}
break;
}
}
break;
case "hp:visibility":
{
NamedNodeMap childAttrs = child.getAttributes();
switch(childAttrs.getNamedItem("hideFirstHeader").getNodeValue()) {
case "0":
hideHeader = false; break;
case "1":
hideHeader = true; break;
}
switch(childAttrs.getNamedItem("hideFirstFooter").getNodeValue()) {
case "0":
hideFooter = false; break;
case "1":
hideFooter = true; break;
}
switch(childAttrs.getNamedItem("hideFirstMasterPage").getNodeValue()) {
case "0":
hideMasterPage = false; break;
case "1":
hideMasterPage = true; break;
}
switch(childAttrs.getNamedItem("border").getNodeValue()) {
case "HIDE_FIRST":
hideBorder = true; showFirstBorder = false; break;
case "SHOW_FIRST":
hideBorder = true; showFirstBorder = false; break;
case "SHOW_ALL":
hideBorder = false; showFirstBorder = false; break;
default:
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("Ctrl_SectionDef");
}
break;
}
switch(childAttrs.getNamedItem("fill").getNodeValue()) {
case "HIDE_FIRST":
hideFill = true; showFirstFill = false; break;
case "SHOW_FIRST":
hideFill = true; showFirstFill = true; break;
case "SHOW_ALL":
hideFill = false; showFirstFill = true; break;
default:
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("Ctrl_SectionDef");
}
break;
}
//childAttrs.getNamedItem("showLineNumber").getNodeValue()
switch(childAttrs.getNamedItem("hideFirstPageNum").getNodeValue()) {
case "0":
hidePageNumPos = false; break;
case "1":
hidePageNumPos = true; break;
}
switch(childAttrs.getNamedItem("hideFirstEmptyLine").getNodeValue()) {
case "0":
hideEmptyLine = false; break;
case "1":
hideEmptyLine = true; break;
}
}
break;
case "hp:pagePr":
{
page = new Page(child);
}
break;
case "hp:footNotePr":
case "hp:endNotePr":
{
if (noteShapes==null) {
noteShapes = new ArrayList<>();
}
NoteShape noteShape = new NoteShape(child, version);
noteShapes.add(noteShape);
}
break;
case "hp:pageBorderFill":
{
if (borderFills==null) {
borderFills = new ArrayList<PageBorderFill>();
}
PageBorderFill borderFill = new PageBorderFill(child);
borderFills.add(borderFill);
}
break;
case "hp:masterPage": // 바탕쪽. hwp에서 읽는 것과 동일한 구조를 갖도록 처리
{
NamedNodeMap childAttrs = child.getAttributes();
String pageName = childAttrs.getNamedItem("idRef").getNodeValue();
try {
HwpxFile hwpx = context.getHwpx();
if (hwpx!=null) {
Document masterDoc = hwpx.getDocument("Contents/" + pageName + ".xml");
if (masterDoc!=null) {
Element element = masterDoc.getDocumentElement();
if (this.paras==null)
this.paras = new ArrayList<HwpParagraph>();
NodeList masterNodeList = element.getChildNodes();
for (int masterNodeNum = 0; masterNodeNum < masterNodeList.getLength(); masterNodeNum++) {
Node masterNode = masterNodeList.item(masterNodeNum);
switch(masterNode.getNodeName()) {
case "hp:subList":
{
// NamedNodeMap masterAttrs = masterNode.getAttributes();
// String attrValue = masterAttrs.getNamedItem("textDirection").getNodeValue();
// attrValue = masterAttrs.getNamedItem("textDirection").getNodeValue();
// attrValue = masterAttrs.getNamedItem("lineWrap").getNodeValue();
// attrValue = masterAttrs.getNamedItem("vertAlign").getNodeValue();
// attrValue = masterAttrs.getNamedItem("linkListIDRef").getNodeValue();
// attrValue = masterAttrs.getNamedItem("textWidth").getNodeValue();
// attrValue = masterAttrs.getNamedItem("textHeight").getNodeValue();
// attrValue = masterAttrs.getNamedItem("hasTextRef").getNodeValue();
// attrValue = masterAttrs.getNamedItem("hasNumRef").getNodeValue();
NodeList subMasterNodeList = masterNode.getChildNodes();
for (int j=0; j<subMasterNodeList.getLength(); j++) {
Node subMasterchild = subMasterNodeList.item(j);
switch(subMasterchild.getNodeName()) {
case "hp:p":
HwpParagraph para = new HwpParagraph(subMasterchild, version, context);
this.paras.add(para);
break;
}
}
}
break;
default:
break;
}
}
}
}
} catch (IOException|DataFormatException|SAXException|ParserConfigurationException e) {
e.printStackTrace();
}
}
break;
case "hp:presentation":
case "hp:parameterset":
case "hp:lineNumberShape":
break;
case "#text":
break;
default:
log.fine("Not implmented:" + child.getNodeName());
if (log.isLoggable(Level.FINE)) {
throw new NotImplementedException("Ctrl_SectionDef");
}
break;
}
}
this.fullfilled = true;
}
public String toString(int attr) {
StringBuffer strb = new StringBuffer();
strb.append("CTRL("+ctrlId+")")
.append("=속성:"+Integer.toBinaryString(attr))
.append(",머리글:"+(hideHeader?"감추기":"보이기"))
.append(",꼬리글:"+(hideFooter?"감추기":"보이기"))
.append(",단사이간격:"+spaceColumns)
.append(",세로줄맞춤:"+lineGrid)
.append(",가로줄맞춤:"+charGrid)
.append(",기본탭간격:"+tabStop)
.append(",개요-번호문단모양ID:"+outlineNumberingID)
.append(",쪽번호:"+page)
.append(",그림번호:"+figure)
.append(",표번호:"+table)
.append(",수식번호:"+equation)
.append(",언어:"+lang);
return strb.toString();
}
public int getSize() {
return size;
}
}
|