mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-24 20:14:39 -04:00
NE_alpha7
- ported cumulative changes from 0.20.8 - added "Extract body uncompressed" action for compressed and GUID-defined sections
This commit is contained in:
parent
41f46631a7
commit
8283ee9f29
11 changed files with 201 additions and 11 deletions
|
@ -27,6 +27,7 @@
|
|||
#include <QMessageBox>
|
||||
#include <QMimeData>
|
||||
#include <QPlainTextEdit>
|
||||
#include <QProcess>
|
||||
#include <QSettings>
|
||||
#include <QSplitter>
|
||||
#include <QString>
|
||||
|
@ -56,6 +57,7 @@ public:
|
|||
~UEFITool();
|
||||
|
||||
void openImageFile(QString path);
|
||||
void setProgramPath(QString path);
|
||||
|
||||
private slots:
|
||||
void init();
|
||||
|
@ -63,12 +65,14 @@ private slots:
|
|||
void scrollTreeView(QListWidgetItem* item);
|
||||
|
||||
void openImageFile();
|
||||
void openImageFileInNewWindow();
|
||||
void saveImageFile();
|
||||
void search();
|
||||
|
||||
void extract(const UINT8 mode);
|
||||
void extractAsIs();
|
||||
void extractBody();
|
||||
void extractBodyUncompressed();
|
||||
|
||||
void insert(const UINT8 mode);
|
||||
void insertInto();
|
||||
|
@ -104,8 +108,11 @@ private:
|
|||
SearchDialog* searchDialog;
|
||||
QClipboard* clipboard;
|
||||
QString currentDir;
|
||||
QString currentProgramPath;
|
||||
const QString version;
|
||||
|
||||
bool enableExtractBodyUncompressed(const QModelIndex ¤t);
|
||||
|
||||
void dragEnterEvent(QDragEnterEvent* event);
|
||||
void dropEvent(QDropEvent* event);
|
||||
void contextMenuEvent(QContextMenuEvent* event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue