58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#include <SkinnyShortcut.h>
|
|
|
|
#include <QskWindow.h>
|
|
#include <QskObjectCounter.h>
|
|
|
|
#include <QGuiApplication>
|
|
#include <QUrl>
|
|
|
|
#include <private/qquickwebengineview_p.h>
|
|
|
|
class WebView : public QQuickWebEngineView
|
|
{
|
|
using Inherited = QQuickWebEngineView;
|
|
|
|
public:
|
|
WebView( const char* url, QQuickItem* parent = nullptr )
|
|
: WebView( parent )
|
|
{
|
|
setUrl( QUrl( url ) );
|
|
}
|
|
|
|
WebView( QQuickItem* parent = nullptr )
|
|
: QQuickWebEngineView( parent )
|
|
{
|
|
componentComplete();
|
|
}
|
|
};
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
#ifdef ITEM_STATISTICS
|
|
QskObjectCounter counter( true );
|
|
#endif
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
|
|
// namespace QtWebEngine doesn't exist in Qt6: https://doc.qt.io/qt-5/qtwebengine.html
|
|
QtWebEngine::initialize();
|
|
#endif
|
|
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
QGuiApplication app( argc, argv );
|
|
|
|
SkinnyShortcut::enable( SkinnyShortcut::Quit | SkinnyShortcut::DebugShortcuts );
|
|
|
|
QskWindow window;
|
|
|
|
window.addItem( new WebView( "https://github.com/uwerat/qskinny" ) );
|
|
window.resize( 800, 600 );
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|