You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61850gui/dialog_filetran.h

47 lines
1.1 KiB
C

2 years ago
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: dialog_filetran.h
* Author: shjd
*
* Created on 2018110, 10:32
*/
#ifndef _DIALOG_FILETRAN_H
#define _DIALOG_FILETRAN_H
#include <QWidget>
#include <QtCore>
#include "ui_dialog_filetran.h"
#include "glbtypes.h"
#include "ai_objid.h"
#include <QStandardItem>
#include <QStandardItemModel>
#include "ac_file.h"
#include <QFileDialog>
#include <QDebug>
class dialog_filetran : public QDialog {
Q_OBJECT
public:
dialog_filetran();
QStandardItemModel *tbmodel;
void OnGetFileListParse(AC_GETFAV_REQ_CTRL *getfav);
void OnFreshfiledirectory();
virtual ~dialog_filetran();
private:
Ui::dialog_filetran widget;
private slots:
void on_pB_filedel_clicked();
void on_pB_fileupload_clicked();
void on_pB_getfilelist_clicked();
void on_pB_filebrowser_clicked();
void on_pB_filedown_clicked();
};
#endif /* _DIALOG_FILETRAN_H */