comparison src/main.cpp @ 41:f6c53e896008 0.9

Merge
author Andre Heinecke <andre.heinecke@intevation.de>
date Fri, 15 Apr 2016 15:34:51 +0200
parents 5354cbda7188
children 36ee5dd46fd3
comparison
equal deleted inserted replaced
40:7458f113314c 41:f6c53e896008
127 const QStringList args = parser.positionalArguments(); 127 const QStringList args = parser.positionalArguments();
128 if (args.size() > 1) { 128 if (args.size() > 1) {
129 parser.showHelp(1); 129 parser.showHelp(1);
130 } 130 }
131 131
132 ConvertFormat fmt = Format_XLSX;
133 /* Initialize the converter. */
134 const QString format = parser.value("format").toLower();
135 if (format == "xlsx" || format.isEmpty()) {
136 fmt = Format_XLSX;
137 } else if (format == "html") {
138 fmt = Format_HTML;
139 } else if (format == "pdf") {
140 fmt = Format_PDF;
141 } else {
142 qCritical() << "Format: " << parser.value("format") << "not supported";
143 exit(1);
144 }
145 QString infile; 132 QString infile;
146 if (args.size()) { 133 if (args.size()) {
147 infile = args.first(); 134 infile = args.first();
148 } 135 }
149 Converter conv(infile, parser.value("output"), fmt, 136 Converter conv(infile, parser.values("output"),
150 parser.value("title")); 137 parser.value("title"));
151 138
152 conv.start(); 139 conv.start();
153 conv.wait(); 140 conv.wait();
154 141
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)