26 lines
488 B
C++
26 lines
488 B
C++
#ifndef RM_POPUP_CAPTURE_H
|
|
#define RM_POPUP_CAPTURE_H
|
|
|
|
#include "../rm_include.h"
|
|
#include "rm_popup.h"
|
|
#include <QLineEdit>
|
|
|
|
class RMPopupCapture : public RMPopup
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RMPopupCapture(QWidget *parent = 0,QList<QString>* files = NULL);
|
|
QList<QString>* _files;
|
|
void saveFiles();
|
|
private:
|
|
QLineEdit* fileEdit;
|
|
QLineEdit* folderEdit;
|
|
|
|
bool _isFileExist();
|
|
public slots:
|
|
void onChangeFolder();
|
|
void onOK();
|
|
};
|
|
|
|
#endif // RM_POPUP_CAPTURE_H
|