2018-08-03 08:15:28 +02:00

19 lines
308 B
C++

#ifndef BUTTON_BAR_H
#define BUTTON_BAR_H
#include <QskLinearBox.h>
class ButtonBar : public QskLinearBox
{
public:
QSK_SUBCONTROLS( Indicator )
ButtonBar( QQuickItem* = nullptr );
void addIndicator( const char* name );
protected:
QSizeF contentsSizeHint() const override;
};
#endif