first commit
This commit is contained in:
36
project/fm_viewer/ui/rm_popup_info.h
Normal file
36
project/fm_viewer/ui/rm_popup_info.h
Normal 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
|
||||
Reference in New Issue
Block a user