00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #pragma once
00014 #include <string>
00015
00016
00017
00018
00019 struct CommonOption {
00020
00021
00022
00023 enum AddingStrPlacePattern {
00024
00025
00026
00027 Head,
00028
00029
00030
00031 Tail
00032 };
00033
00034
00035
00036
00037 enum CellStrOverflowRule {
00038
00039
00040
00041 Normal,
00042
00043
00044
00045 FontSizeChange,
00046
00047
00048
00049 CutExcess,
00050
00051
00052
00053 Padding
00054 };
00055
00056
00057
00058
00059 enum DataType {
00060 CSV,
00061 JSON
00062 };
00063
00064
00065
00066
00067 enum DataFileEncoding {
00068
00069
00070
00071 SJIS,
00072
00073
00074
00075 UTF8
00076 };
00077 };
00078
00079
00080
00081
00082 struct SimpleTypeOption {
00083
00084
00085
00086 enum OutputMode {
00087
00088
00089
00090 Single,
00091
00092
00093
00094 PerData
00095 };
00096 };
00097
00098
00099
00100
00101 struct CompoundTypeOption {
00102
00103
00104
00105 enum RepeatingRowsPattern {
00106
00107
00108
00109 Fixed,
00110
00111
00112
00113 Variable
00114 };
00115
00116
00117
00118
00119 enum MultiplePagesStyle {
00120
00121
00122
00123 RepeatTemplate,
00124
00125
00126
00127 RepeatDetail
00128 };
00129
00130
00131
00132
00133 enum DeletingFooterRule {
00134
00135
00136
00137 LeaveAll,
00138
00139
00140
00141 DeleteAll,
00142
00143
00144
00145 LeaveFld
00146 };
00147 };
00148
00149
00150
00151
00152 struct NestedTableTypeOption {
00153
00154
00155
00156 enum DetailTableType {
00157
00158
00159
00160 FixedMinimum,
00161
00162
00163
00164 DividedPct,
00165
00166
00167
00168 DividedDxa
00169 };
00170 };
00171
00172
00173
00174
00175 struct InputParam {
00176
00177
00178
00179 std::string m_input_file_path;
00180
00181
00182
00183 std::string m_input_image_dir = "";
00184
00185
00186
00187
00188 CommonOption::CellStrOverflowRule m_cell_str_overflow_rule = CommonOption::CellStrOverflowRule::Normal;
00189
00190
00191
00192 std::string m_padding_string = "#";
00193
00194
00195
00196
00197 std::string m_executor = "";
00198 };
00199
00200
00201
00202
00203 struct OutputParam {
00204
00205
00206
00207 std::string m_output_file_path;
00208
00209
00210
00211
00212 CommonOption::AddingStrPlacePattern m_adding_str_place_pattern = CommonOption::AddingStrPlacePattern::Head;
00213
00214
00215
00216
00217 std::string m_file_add_column;
00218 };