MuseScore/mscore/accessibletoolbutton.h

17 lines
387 B
C
Raw Normal View History

namespace Ms {
/*
* This class inherits QToolButton and allows tabbing through the tool bar's buttons
*/
class AccessibleToolButton : public QToolButton{
Q_OBJECT
public:
AccessibleToolButton(QWidget* parent, QAction* defaultQAction );
void focusInEvent(QFocusEvent* e);
void focusOutEvent(QFocusEvent* e);
void keyPressEvent(QKeyEvent *e);
};
}