123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- // Copyright 2010, 2012 wkhtmltopdf authors
- //
- // This file is part of wkhtmltopdf.
- //
- // wkhtmltopdf is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Lesser General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // wkhtmltopdf 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 General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public License
- // along with wkhtmltopdf. If not, see <http://www.gnu.org/licenses/>.
- #ifndef __LOADSETTINGS_HH__
- #define __LOADSETTINGS_HH__
- #include <QNetworkProxy>
- #include <QString>
- #include <wkhtmltox/dllbegin.inc>
- namespace wkhtmltopdf {
- namespace settings {
- /*! \brief Settings considering proxy */
- struct DLL_PUBLIC Proxy {
- Proxy();
- //! Type of proxy to use
- QNetworkProxy::ProxyType type;
- //! The port of the proxy to use
- int port;
- //! The host name of the proxy to use or NULL
- QString host;
- //! Username for the said proxy or NULL
- QString user;
- //! Password for the said proxy or NULL
- QString password;
- };
- struct DLL_PUBLIC PostItem {
- QString name;
- QString value;
- bool file;
- };
- struct DLL_PUBLIC LoadGlobal {
- LoadGlobal();
- //! Path of the cookie jar file
- QString cookieJar;
- };
- struct DLL_PUBLIC LoadPage {
- LoadPage();
- enum LoadErrorHandling {
- abort,
- skip,
- ignore
- };
- //! Username used for http auth login
- QString username;
- //! Password used for http auth login
- QString password;
- //! How many milliseconds should we wait for a Javascript redirect
- int jsdelay;
- //! What window.status value should we wait for
- QString windowStatus;
- //! What zoom factor should we apply when printing
- // TODO MOVE
- float zoomFactor;
- //! Map of custom header variables
- QList< QPair<QString, QString> > customHeaders;
- //! Set if the custom header should be repeated for each resource request
- bool repeatCustomHeaders;
- //! Map of cookies
- QList< QPair<QString, QString> > cookies;
- QList< PostItem > post;
- //! Block access to local files for the given page
- bool blockLocalFileAccess;
- //! If access to local files is not allowed in general, allow it for these files
- QList< QString > allowed;
- //! Stop Javascript from running too long
- bool stopSlowScripts;
- //! Output Javascript debug messages
- bool debugJavascript;
- //! What should we do about load errors
- LoadErrorHandling loadErrorHandling;
- LoadErrorHandling mediaLoadErrorHandling;
- //! Proxy related settings
- Proxy proxy;
- //! Additional javascript to run on a page once it has loaded
- QList< QString > runScript;
- QString checkboxSvg;
- QString checkboxCheckedSvg;
- QString radiobuttonSvg;
- QString radiobuttonCheckedSvg;
- QString cacheDir;
- static QList<QString> mediaFilesExtensions;
- // Hosts to bypass
- QList< QString > bypassProxyForHosts;
- };
- DLL_PUBLIC LoadPage::LoadErrorHandling strToLoadErrorHandling(const char * s, bool * ok=0);
- DLL_PUBLIC QString loadErrorHandlingToStr(LoadPage::LoadErrorHandling leh);
- DLL_PUBLIC Proxy strToProxy(const char * s, bool * ok=0);
- DLL_PUBLIC QString proxyToStr(const Proxy & proxy);
- }
- }
- #include <wkhtmltox/dllend.inc>
- #endif //__LOADSETTINGS_HH__
|