first commit
This commit is contained in:
25
project/fm_viewer/ui/rm_popup_capture.h
Normal file
25
project/fm_viewer/ui/rm_popup_capture.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user