qskinny/examples/automotive/ButtonBar.h

19 lines
304 B
C
Raw Normal View History

2017-12-22 13:52:41 +00:00
#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:
2018-07-31 15:32:25 +00:00
QSizeF contentsSizeHint() const override;
};
#endif