/****************************************************************************** * QSkinny - Copyright (C) 2016 Uwe Rathmann * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #pragma once #include #include class ButtonBox : public QskLinearBox { public: ButtonBox( QQuickItem* parent = nullptr ); void addButton( const QString& text, std::function< void() > func, bool autoRepeat = false ); };