obs-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

#pragma once
#include <QListWidget>
class FocusList : public QListWidget {
Q_OBJECT
public:
FocusList(QWidget *parent);
protected:
void focusInEvent(QFocusEvent *event) override;
signals:
void GotFocus();
};