37 lines
763 B
C++
37 lines
763 B
C++
#ifndef RM_POPUP_INFO_H
|
|
#define RM_POPUP_INFO_H
|
|
#if !(PLAYER_ONLY_LIBRARY_MODE)
|
|
#include "../rm_include.h"
|
|
#include "rm_popup.h"
|
|
|
|
class QComboBox;
|
|
class RMPopupInfo : public RMPopup
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
#if (SELECT_AUDIO_BACKEND)
|
|
QList<QPair<QString,int>> deviceList;
|
|
QComboBox* soundCombo;
|
|
void updateSoundCombo();
|
|
#endif
|
|
|
|
public:
|
|
RMPopupInfo(QWidget *parent = 0, QString fw = "", QString gps = "");
|
|
#if (HWACCEL_SETTING)
|
|
static void restart();
|
|
public slots:
|
|
void onHWAccelClicked();
|
|
#endif
|
|
#if (SELECT_AUDIO_BACKEND)
|
|
//void onDirectXSoundClicked();
|
|
void onSelectSoundDevice(int index);
|
|
#endif
|
|
|
|
#if (SYSTEM_INFO_DIALOG)
|
|
void onSystemInfo();
|
|
#endif
|
|
};
|
|
|
|
#endif // #if !(PLAYER_ONLY_LIBRARY_MODE)
|
|
#endif // RM_POPUP_INFO_H
|