Mercurial > clickerconvert
diff src/converter.h @ 23:927794e3cc52
Add HTML output and some pdf support
PDF does not look well as the CSS used for HTML is not supported.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Mon, 11 Apr 2016 11:00:40 +0200 |
parents | a10425e7ef98 |
children | e5c5ebfa4205 |
line wrap: on
line diff
--- a/src/converter.h Mon Apr 11 10:59:08 2016 +0200 +++ b/src/converter.h Mon Apr 11 11:00:40 2016 +0200 @@ -27,7 +27,9 @@ /*! XLSX (default). */ Format_XLSX, /*! PDF */ - Format_PDF + Format_PDF, + /*! HTML */ + Format_HTML, }; /** @brief Base class of Convert operations. @@ -74,6 +76,13 @@ mFreeTextFmt, mChoiceTextFmt, mChoiceVotesFmt; + QString mTitleStyle, + mQuestionStyle, + mAnswerChoiceStyle, + mAnswerTextStyle, + mFreeTextStyle, + mChoiceTextStyle, + mChoiceVotesStyle; }; #endif // CONVERTER_H