mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 22:54:47 -04:00
Version 0.11.0
- UI reworked once again - Hex pattern and text string search implemented - Code slightly refactored
This commit is contained in:
parent
7d8b5fbc20
commit
bb6f58f509
26 changed files with 4697 additions and 4327 deletions
10
ffsengine.h
10
ffsengine.h
|
@ -38,7 +38,10 @@ public:
|
|||
TreeModel* model() const;
|
||||
|
||||
// Returns message items queue
|
||||
QQueue<MessageListItem> message();
|
||||
QQueue<MessageListItem> messages();
|
||||
|
||||
// Clears message items queue
|
||||
void clearMessages();
|
||||
|
||||
// Firmware image parsing
|
||||
UINT8 parseInputFile(const QByteArray & buffer);
|
||||
|
@ -74,6 +77,11 @@ public:
|
|||
UINT8 rebuild(const QModelIndex & index);
|
||||
UINT8 changeCompression(const QModelIndex & index, const UINT8 algorithm);
|
||||
|
||||
// Search routines
|
||||
UINT8 findHexPattern(const QByteArray & pattern, const bool bodyOnly);
|
||||
UINT8 findHexPatternIn(const QModelIndex & index, const QByteArray & pattern, const bool bodyOnly);
|
||||
UINT8 findTextPattern(const QString & pattern, const bool unicode, const Qt::CaseSensitivity caseSensitive);
|
||||
UINT8 findTextPatternIn(const QModelIndex & index, const QString & pattern, const bool unicode, const Qt::CaseSensitivity caseSensitive);
|
||||
private:
|
||||
TreeItem *rootItem;
|
||||
TreeModel *treeModel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue