33 lines
857 B
C++
33 lines
857 B
C++
/******************************************************************************
|
|
* QSkinny - Copyright (C) The authors
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*****************************************************************************/
|
|
|
|
#include <SkinnyShapeProvider.h>
|
|
#include <SkinnyShortcut.h>
|
|
|
|
#include <QskQml.h>
|
|
#include <QskObjectCounter.h>
|
|
|
|
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
|
|
int main( int argc, char* argv[] )
|
|
{
|
|
#ifdef ITEM_STATISTICS
|
|
QskObjectCounter counter( true );
|
|
#endif
|
|
|
|
QskQml::registerTypes();
|
|
Qsk::addGraphicProvider( "shapes", new SkinnyShapeProvider() );
|
|
|
|
QGuiApplication app( argc, argv );
|
|
|
|
SkinnyShortcut::enable( SkinnyShortcut::Quit |
|
|
SkinnyShortcut::DebugShortcuts );
|
|
|
|
QQmlApplicationEngine engine( QUrl( "qrc:/qml/glabels.qml" ) );
|
|
|
|
return app.exec();
|
|
}
|