/****************************************************************************** * QSkinny - Copyright (C) 2016 Uwe Rathmann * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #include "Window.h" #include #include #include #include int main( int argc, char* argv[] ) { #ifdef ITEM_STATISTICS QskObjectCounter counter( true ); #endif QGuiApplication app( argc, argv ); SkinnyShortcut::enable( SkinnyShortcut::AllShortcuts ); Window window( Qt::Horizontal ); window.resize( 600, 400 ); QskFocusIndicator* focusIndicator = new QskFocusIndicator(); focusIndicator->setObjectName( "FocusIndicator" ); window.addItem( focusIndicator ); window.show(); return app.exec(); }