mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
29 lines
552 B
C++
29 lines
552 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QObject>
|
|
|
|
#include <array>
|
|
#include <string>
|
|
|
|
class microphone_creator : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
microphone_creator();
|
|
QString get_none();
|
|
std::string set_device(u32 num, const QString& text);
|
|
void parse_devices(const std::string& list);
|
|
void refresh_list();
|
|
QStringList get_microphone_list() const;
|
|
std::array<std::string, 4> get_selection_list() const;
|
|
|
|
private:
|
|
QStringList m_microphone_list;
|
|
std::array<std::string, 4> m_sel_list;
|
|
};
|