mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-06-01 15:58:21 -04:00
Apply hex cleaning to search dialog paste operations
- Permits pasting to 'GUID' search directly from cpp representation - Provides hex cleaning (e.g. auto-remove 0x) in 'Hex pattern' search as well
This commit is contained in:
parent
71a7336730
commit
1d560bd0be
5 changed files with 70 additions and 22 deletions
|
@ -35,7 +35,10 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLineEdit" name="hexEdit">
|
||||
<widget class="HexLineEdit" name="hexEdit">
|
||||
<property name="editAsGuid">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="inputMask">
|
||||
<string/>
|
||||
</property>
|
||||
|
@ -89,7 +92,10 @@
|
|||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="GuidLineEdit" name="guidEdit">
|
||||
<widget class="HexLineEdit" name="guidEdit">
|
||||
<property name="editAsGuid">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="inputMask">
|
||||
<string>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</string>
|
||||
</property>
|
||||
|
@ -241,9 +247,9 @@
|
|||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>GuidLineEdit</class>
|
||||
<class>HexLineEdit</class>
|
||||
<extends>QLineEdit</extends>
|
||||
<header>guidlineedit.h</header>
|
||||
<header>hexlineedit.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<tabstops>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue