diff options
Diffstat (limited to 'src/extension/internal/pdfinput/enums.h')
-rw-r--r-- | src/extension/internal/pdfinput/enums.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/extension/internal/pdfinput/enums.h b/src/extension/internal/pdfinput/enums.h new file mode 100644 index 0000000..b68f038 --- /dev/null +++ b/src/extension/internal/pdfinput/enums.h @@ -0,0 +1,34 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** @file + * PDF Parsing utility functions and classes. + *//* + * + * Copyright (C) 2022 Authors + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + +#ifndef PDF_ENUMS_H +#define PDF_ENUMS_H + +#include <map> + +enum class FontStrategy : unsigned char +{ + RENDER_MISSING, + RENDER_ALL, + SUBSTITUTE_MISSING, + KEEP_MISSING, + DELETE_MISSING, + DELETE_ALL +}; +enum class FontFallback : unsigned char +{ + DELETE_TEXT = 0, + AS_SHAPES, + AS_TEXT, + AS_SUB, +}; +typedef std::map<int, FontFallback> FontStrategies; + +#endif /* PDF_ENUMS_H */ |