first commit
This commit is contained in:
35
project/fm_viewer/ui/rm_popup_select_model.h
Normal file
35
project/fm_viewer/ui/rm_popup_select_model.h
Normal file
@@ -0,0 +1,35 @@
|
||||
#ifndef RM_POPUP_SELECT_MODEL_H
|
||||
#define RM_POPUP_SELECT_MODEL_H
|
||||
#if (MULTI_MODEL_VIEWER)
|
||||
|
||||
#include "../rm_include.h"
|
||||
#include "rm_popup.h"
|
||||
|
||||
class RMButton;
|
||||
class RMPopupCreateModel : public RMPopup
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
RMPopupCreateModel(QWidget *parent = 0);
|
||||
QString selectedModel;
|
||||
RMButton* okButton;
|
||||
public slots:
|
||||
void onModelChanged(QString disk);
|
||||
};
|
||||
|
||||
|
||||
class RMPopupSelectModel : public RMPopup
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
RMPopupSelectModel(QList<QPair<QString,QString>> models, QWidget *parent = 0);
|
||||
//QString selectedModel;
|
||||
RMButton* okButton;
|
||||
int modelIndex;
|
||||
public slots:
|
||||
void onModelChanged(int model);
|
||||
};
|
||||
|
||||
|
||||
#endif // MULTI_MODEL_VIEWER
|
||||
#endif // RM_POPUP_SELECT_MODEL_H
|
||||
Reference in New Issue
Block a user