# -*- coding: utf-8 -*- # # pyhwp : hwp file format parser in python # Copyright (C) 2010-2023 mete0r # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero 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 Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # from __future__ import absolute_import from __future__ import print_function from __future__ import unicode_literals from hwp5.binmodel.controls.bookmark_control import BookmarkControl from hwp5.binmodel.controls.columns_def import ColumnsDef from hwp5.binmodel.controls.common_controls import CommonControl from hwp5.binmodel.controls.dutmal import Dutmal from hwp5.binmodel.controls.field import Field from hwp5.binmodel.controls.field import FieldUnknown from hwp5.binmodel.controls.field import FieldDate from hwp5.binmodel.controls.field import FieldDocDate from hwp5.binmodel.controls.field import FieldPath from hwp5.binmodel.controls.field import FieldBookmark from hwp5.binmodel.controls.field import FieldMailMerge from hwp5.binmodel.controls.field import FieldCrossRef from hwp5.binmodel.controls.field import FieldFormula from hwp5.binmodel.controls.field import FieldClickHere from hwp5.binmodel.controls.field import FieldClickHereData from hwp5.binmodel.controls.field import FieldSummary from hwp5.binmodel.controls.field import FieldUserInfo from hwp5.binmodel.controls.field import FieldHyperLink from hwp5.binmodel.controls.field import FieldMemo from hwp5.binmodel.controls.field import FieldPrivateInfoSecurity from hwp5.binmodel.controls.gshape_object_control import GShapeObjectControl from hwp5.binmodel.controls.header_footer import HeaderFooter from hwp5.binmodel.controls.hidden_comment import HiddenComment from hwp5.binmodel.controls.index_marker import IndexMarker from hwp5.binmodel.controls.note import Note from hwp5.binmodel.controls.note import FootNote from hwp5.binmodel.controls.note import EndNote from hwp5.binmodel.controls.numbering import AutoNumbering from hwp5.binmodel.controls.numbering import NewNumbering from hwp5.binmodel.controls.page_hide import PageHide from hwp5.binmodel.controls.page_number_position import PageNumberPosition from hwp5.binmodel.controls.page_odd_even import PageOddEven from hwp5.binmodel.controls.section_def import SectionDef from hwp5.binmodel.controls.table_control import TableControl from hwp5.binmodel.controls.tcps_control import TCPSControl # suppress pyflake8 warning 'imported but not used' BookmarkControl ColumnsDef CommonControl Dutmal Field FieldUnknown FieldDate FieldDocDate FieldPath FieldBookmark FieldMailMerge FieldCrossRef FieldFormula FieldClickHere FieldClickHereData FieldSummary FieldUserInfo FieldHyperLink FieldMemo FieldPrivateInfoSecurity GShapeObjectControl HeaderFooter HiddenComment IndexMarker Note FootNote EndNote AutoNumbering NewNumbering PageHide PageNumberPosition PageOddEven SectionDef TableControl TCPSControl