first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#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