/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_HWPFILTER_SOURCE_HWPLIB_H #define INCLUDED_HWPFILTER_SOURCE_HWPLIB_H #include "precompile.h" #include /* hwp96부터 hunit가 4byte가 되었다. */ /** * size of hunit is 4 since hwp96 version */ #ifndef _HCHAR_ #define _HCHAR_ typedef unsigned short hchar; typedef int hunit; typedef unsigned char kchar; typedef unsigned char echar; #endif // _HCHAR_ #if !defined(WIN32) #if !defined(_BOOL_T_) && !defined(OS2) typedef unsigned short BOOL; #endif /* _BOOL_T_ */ typedef unsigned short WORD; typedef int SIZE; typedef unsigned long DWORD; typedef long LONG; #endif /* WIN32 */ #ifndef _UTYPE_ #define _UTYPE_ typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; #endif /* _UTYPE_ */ typedef ::std::basic_string hchar_string; #ifndef _ZZRECT_ #define _ZZRECT_ /** * @short Point */ typedef struct { int x, y; } ZZPoint; inline void allocPoint(ZZPoint &target, ZZPoint &src) { target.x = src.x; target.y = src.y; } /** * @short Size */ typedef struct { int w, h; } ZZSize; /** * @short Rectangle */ typedef struct { int x, y; int w, h; } ZZRect; /** * @short Parall */ typedef struct { ZZPoint pt[3]; } ZZParall; /** * @short Scale */ typedef struct { int mulX, divX; int mulY, divY; } ZZScaleXY; #endif /* _ZZRECT_ */ #if !defined(_WIN32) && !defined(MAX_PATH) # define MAX_PATH 260 #endif /* MAX_PATH */ #ifndef TRUE # define TRUE 1 # define FALSE 0 #endif // HWP unit information /** * HWP unit information */ #define ONE_POINT 25 #define ONE_ENG_CH_WIDTH (ONE_POINT*(10/2)) #define ONE_MILI (71) #define ONE_DOT (19) /* HWP 3.0 문서 정보 */ #define NLanguage 7 /* 제어 문자 */ /** * Control character */ #define CH_ALIGNSPACE 0 #define CH_FIELD 5 #define CH_BOOKMARK 6 #define CH_DATE_FORM 7 #define CH_DATE_CODE 8 #define CH_TAB 9 #define CH_TEXT_BOX 10 #define CH_PICTURE 11 #define CH_END_PARA 13 #define CH_LINE 14 #define CH_HIDDEN 15 #define CH_HEADER_FOOTER 16 #define CH_FOOTNOTE 17 #define CH_AUTO_NUM 18 /* pgnum, footnote/endnote, picture num */ #define CH_NEW_NUM 19 /* pgnum, footnote/endnote, picture num */ #define CH_SHOW_PAGE_NUM 20 #define CH_PAGE_NUM_CTRL 21 /* new chapter, hide pagenum */ #define CH_MAIL_MERGE 22 #define CH_COMPOSE 23 #define CH_HYPHEN 24 #define CH_TOC_MARK 25 /* CONT_MARK, TBL_MARK, PIC_MARK */ #define CH_INDEX_MARK 26 #define CH_COL_DEF 27 #define CH_OUTLINE 28 #define CH_CROSSREF 29 #define CH_KEEP_SPACE 30 #define CH_FIXED_SPACE 31 #define CH_SPACE 32 #define HAVE_SUBPARA_MASK ((1< #include #include #ifdef _WIN32 # include # include # define access _access # define stat _stat # define mkdir(x,y) _mkdir(x) # define rmdir _rmdir # define open _open # define write _write # define close _close # define unlink _unlink # define DIRSEP '\\' #else # include # define DIRSEP '/' #endif #endif // INCLUDED_HWPFILTER_SOURCE_HWPLIB_H /* vim:set shiftwidth=4 softtabstop=4 expandtab: */