mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-24 15:26:46 -06:00
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2017, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// WebViewWindow.cpp - Implementation of the custom web view widget
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "pgAdmin4.h"
|
|
|
|
// App headers
|
|
#include "WebViewWindow.h"
|
|
|
|
// Override QWebEnginePage to handle link delegation
|
|
#ifdef PGADMIN4_USE_WEBENGINE
|
|
bool WebEnginePage::acceptNavigationRequest(const QUrl & url, NavigationType type, bool isMainFrame)
|
|
{
|
|
Q_UNUSED(type);
|
|
Q_UNUSED(url);
|
|
Q_UNUSED(isMainFrame);
|
|
|
|
return true;
|
|
}
|
|
|
|
QWebEnginePage *WebEnginePage::createWindow(QWebEnginePage::WebWindowType type)
|
|
{
|
|
if (type == QWebEnginePage::WebBrowserTab)
|
|
{
|
|
QWebEnginePage *_page = NULL;
|
|
emit createTabWindow(_page);
|
|
return _page;
|
|
}
|
|
return NULL;
|
|
}
|
|
#endif
|
|
|
|
WebViewWindow::WebViewWindow(QWidget *parent) :
|
|
#ifdef PGADMIN4_USE_WEBENGINE
|
|
QWebEngineView(parent)
|
|
#else
|
|
QWebView(parent)
|
|
#endif
|
|
{
|
|
m_url = QString("");
|
|
m_tabIndex = 0;
|
|
}
|
|
|
|
void WebViewWindow::setFirstLoadURL(const QString &url)
|
|
{
|
|
m_url = url;
|
|
}
|
|
|
|
QString WebViewWindow::getFirstLoadURL() const
|
|
{
|
|
return m_url;
|
|
}
|
|
|
|
void WebViewWindow::setTabIndex(const int &tabIndex)
|
|
{
|
|
m_tabIndex = tabIndex;
|
|
}
|
|
|
|
int WebViewWindow::getTabIndex() const
|
|
{
|
|
return m_tabIndex;
|
|
}
|