qskinny/examples/layouts/ButtonBox.h
2024-01-17 14:31:45 +01:00

19 lines
521 B
C++

/******************************************************************************
* QSkinny - Copyright (C) The authors
* 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 );
};