mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-06-01 07:48:22 -04:00
- introduce Extract Uncompressed and Uncompressed Hex View actions for compressed items
- remove unused code to support Qt 5.5 and earlier Qt versions - remove unused section parsing code - add a check and description for section alignment quirk (compiled out for now)
This commit is contained in:
parent
cc274319bf
commit
12f40cf289
20 changed files with 165 additions and 224 deletions
|
@ -86,6 +86,10 @@ public:
|
|||
bool hasEmptyParsingData() const { return itemParsingData.isEmpty(); }
|
||||
void setParsingData(const UByteArray & pdata) { itemParsingData = pdata; }
|
||||
|
||||
UByteArray uncompressedData() const { return itemUncompressedData; };
|
||||
bool hasEmptyUncompressedData() const { return itemUncompressedData.isEmpty(); }
|
||||
void setUncompressedData(const UByteArray & ucdata) { itemUncompressedData = ucdata; }
|
||||
|
||||
UINT8 marking() const { return itemMarking; }
|
||||
void setMarking(const UINT8 marking) { itemMarking = marking; }
|
||||
|
||||
|
@ -105,6 +109,7 @@ private:
|
|||
bool itemFixed;
|
||||
bool itemCompressed;
|
||||
UByteArray itemParsingData;
|
||||
UByteArray itemUncompressedData;
|
||||
TreeItem* parentItem;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue