35 lines
689 B
C++
35 lines
689 B
C++
#ifndef RM_DIALOG_BBVIEWER_H
|
|
#define RM_DIALOG_BBVIEWER_H
|
|
#include "rm_popup.h"
|
|
|
|
#if !(LIVE_LANGUAGE2)
|
|
|
|
class RMButton;
|
|
class RMDialogBBViewer : public RMPopup
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit RMDialogBBViewer(QWidget *parent = nullptr,QString title = QString(""));
|
|
|
|
void createLanguageLayout();
|
|
void createInfoLayout();
|
|
void createOpenLayout();
|
|
static int languageIndex;
|
|
|
|
static QString selectedDisk;
|
|
|
|
private:
|
|
RMButton* _cancelButton;
|
|
RMButton* _okButton;
|
|
signals:
|
|
|
|
public slots:
|
|
void onLanguageSelected(int index);
|
|
void onSelectOther();
|
|
void onDiskSelected(QString disk);
|
|
};
|
|
|
|
#endif // #if !(LIVE_LANGUAGE2)
|
|
|
|
#endif // RM_DIALOG_BBVIEWER_H
|