qskinny/examples/layouts/ButtonBox.h
2023-04-06 09:23:37 +02:00

19 lines
527 B
C++

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