syncthingtray/widgets/webview/webviewincludes.h
Martchus 49ff5a7b65 Move widgets from tray app to separate lib
So settings pages, web view and other widgets
can be used in other components such as the
Dolphin plugin and Plasmoid, too.
2017-04-23 18:31:18 +02:00

21 lines
602 B
C

// Created via CMake from template webviewincludes.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef SYNCTHINGWIDGETS_WEB_VIEW_INCLUDES
#define SYNCTHINGWIDGETS_WEB_VIEW_INCLUDES
#include <QtGlobal>
#if defined(SYNCTHINGWIDGETS_USE_WEBENGINE)
# include <QWebEngineView>
# include <QWebEnginePage>
#elif defined(SYNCTHINGWIDGETS_USE_WEBKIT)
# include <QWebView>
# include <QWebPage>
# include <QWebFrame>
#elif !defined(SYNCTHINGWIDGETS_NO_WEBVIEW)
# error "No definition for web view provider present."
#endif
#endif // SYNCTHINGWIDGETS_WEB_VIEW_INCLUDES