mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
22 lines
386 B
C++
22 lines
386 B
C++
#pragma once
|
|
#include "filter-combo-box.hpp"
|
|
|
|
#include <string>
|
|
|
|
namespace advss {
|
|
|
|
void PopulateProfileSelection(QComboBox *list);
|
|
std::string GetPathInProfileDir(const char *filePath);
|
|
|
|
class ProfileSelectionWidget : public FilterComboBox {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ProfileSelectionWidget(QWidget *parent);
|
|
|
|
protected:
|
|
void showEvent(QShowEvent *event) override;
|
|
};
|
|
|
|
} // namespace advss
|