mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-28 14:04:47 -04:00
UEFITool 0.18.3
- added pattern-based search for hex patterns, '.' (dot) means "any hex digit" - added pattern-based search for GUIDs - added copy action for messages - focus is now setting properly for all search window tabs
This commit is contained in:
parent
fd578a8c70
commit
6e1f226aa0
8 changed files with 274 additions and 64 deletions
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include <QMainWindow>
|
||||
#include <QByteArray>
|
||||
#include <QClipboard>
|
||||
#include <QDragEnterEvent>
|
||||
#include <QDropEvent>
|
||||
#include <QFile>
|
||||
|
@ -54,7 +55,6 @@ public:
|
|||
private slots:
|
||||
void init();
|
||||
void populateUi(const QModelIndex ¤t);
|
||||
//void resizeTreeViewColumns();
|
||||
void scrollTreeView(QListWidgetItem* item);
|
||||
|
||||
void openImageFile();
|
||||
|
@ -78,8 +78,10 @@ private slots:
|
|||
|
||||
void remove();
|
||||
|
||||
void copyMessage();
|
||||
void enableMessagesCopyAction(QListWidgetItem* item);
|
||||
void clearMessages();
|
||||
|
||||
|
||||
void about();
|
||||
void aboutQt();
|
||||
|
||||
|
@ -90,8 +92,9 @@ private:
|
|||
Ui::UEFITool* ui;
|
||||
FfsEngine* ffsEngine;
|
||||
SearchDialog* searchDialog;
|
||||
|
||||
QClipboard* clipboard;
|
||||
QQueue<MessageListItem> messageItems;
|
||||
|
||||
void showMessages();
|
||||
|
||||
void dragEnterEvent(QDragEnterEvent* event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue