mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
17 lines
261 B
C++
17 lines
261 B
C++
#pragma once
|
|
#include "filter-combo-box.hpp"
|
|
|
|
namespace advss {
|
|
|
|
class WindowSelectionWidget : public FilterComboBox {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WindowSelectionWidget(QWidget *parent);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *event) override;
|
|
};
|
|
|
|
} // namespace advss
|