2017-12-22 14:52:41 +01:00
|
|
|
#ifndef BUTTON_BAR_H
|
|
|
|
#define BUTTON_BAR_H
|
2017-07-26 17:54:25 +02:00
|
|
|
|
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
|
|
|
class ButtonBar : public QskLinearBox
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QSK_SUBCONTROLS( Indicator )
|
|
|
|
|
|
|
|
ButtonBar( QQuickItem* = nullptr );
|
|
|
|
void addIndicator( const char* name );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual QSizeF contentsSizeHint() const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|