yolobs-studio/UI/focus-list.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
217 B
C++
Raw Normal View History

2016-02-23 23:16:51 +00:00
#pragma once
#include <QListWidget>
2019-09-22 21:19:10 +00:00
class FocusList : public QListWidget {
2016-02-23 23:16:51 +00:00
Q_OBJECT
public:
FocusList(QWidget *parent);
protected:
void focusInEvent(QFocusEvent *event) override;
signals:
void GotFocus();
};