mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
UEFITool 0.18.7
- EFI11/Tiano compression code reverted back to 0.17.x implementation because of higher compression ratio - delete and backspace work properly for GUID search field
This commit is contained in:
parent
41448ea49f
commit
754f9c5b13
File diff suppressed because it is too large
Load Diff
61
guidlineedit.cpp
Normal file
61
guidlineedit.cpp
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/* guidlineedit.cpp
|
||||||
|
|
||||||
|
Copyright (c) 2014, Nikolaj Schlej. All rights reserved.
|
||||||
|
This program and the accompanying materials
|
||||||
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "guidlineedit.h"
|
||||||
|
|
||||||
|
GuidLineEdit::GuidLineEdit(QWidget * parent)
|
||||||
|
:QLineEdit(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
GuidLineEdit::GuidLineEdit(const QString & contents, QWidget * parent)
|
||||||
|
:QLineEdit(contents, parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
GuidLineEdit::~GuidLineEdit()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void GuidLineEdit::keyPressEvent(QKeyEvent * event)
|
||||||
|
{
|
||||||
|
if (event == QKeySequence::Delete || event->key() == Qt::Key_Backspace)
|
||||||
|
{
|
||||||
|
int pos = cursorPosition();
|
||||||
|
if (event->key() == Qt::Key_Backspace && pos > 0) {
|
||||||
|
cursorBackward(false);
|
||||||
|
pos = cursorPosition();
|
||||||
|
}
|
||||||
|
|
||||||
|
QString txt = text();
|
||||||
|
QString selected = selectedText();
|
||||||
|
|
||||||
|
if (!selected.isEmpty()) {
|
||||||
|
pos = QLineEdit::selectionStart();
|
||||||
|
for (int i = pos; i < pos + selected.count(); i++)
|
||||||
|
if (txt[i] != QChar('-'))
|
||||||
|
txt[i] = QChar('.');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
txt[pos] = QChar('.');
|
||||||
|
|
||||||
|
setCursorPosition(0);
|
||||||
|
insert(txt);
|
||||||
|
setCursorPosition(pos);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Call original event handler
|
||||||
|
QLineEdit::keyPressEvent(event);
|
||||||
|
}
|
36
guidlineedit.h
Normal file
36
guidlineedit.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/* guidlineedit.h
|
||||||
|
|
||||||
|
Copyright (c) 2014, Nikolaj Schlej. All rights reserved.
|
||||||
|
This program and the accompanying materials
|
||||||
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
http://opensource.org/licenses/bsd-license.php
|
||||||
|
|
||||||
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GUIDLINEEDIT_H__
|
||||||
|
#define __GUIDLINEEDIT_H__
|
||||||
|
|
||||||
|
#include <QLineEdit>
|
||||||
|
#include <QKeyEvent>
|
||||||
|
#include <QKeySequence>
|
||||||
|
#include <QString>
|
||||||
|
|
||||||
|
#include "basetypes.h"
|
||||||
|
|
||||||
|
class GuidLineEdit : public QLineEdit
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
GuidLineEdit(QWidget * parent = 0);
|
||||||
|
GuidLineEdit(const QString & contents, QWidget * parent = 0);
|
||||||
|
~GuidLineEdit();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void keyPressEvent(QKeyEvent * event);
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -101,7 +101,7 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="0" column="1">
|
<item row="0" column="1">
|
||||||
<widget class="QLineEdit" name="guidEdit">
|
<widget class="GuidLineEdit" name="guidEdit">
|
||||||
<property name="font">
|
<property name="font">
|
||||||
<font>
|
<font>
|
||||||
<family>Consolas</family>
|
<family>Consolas</family>
|
||||||
@ -217,6 +217,13 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
<customwidgets>
|
||||||
|
<customwidget>
|
||||||
|
<class>GuidLineEdit</class>
|
||||||
|
<extends>QLineEdit</extends>
|
||||||
|
<header>guidlineedit.h</header>
|
||||||
|
</customwidget>
|
||||||
|
</customwidgets>
|
||||||
<tabstops>
|
<tabstops>
|
||||||
<tabstop>tabWidget</tabstop>
|
<tabstop>tabWidget</tabstop>
|
||||||
<tabstop>hexEdit</tabstop>
|
<tabstop>hexEdit</tabstop>
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
UEFITool::UEFITool(QWidget *parent) :
|
UEFITool::UEFITool(QWidget *parent) :
|
||||||
QMainWindow(parent),
|
QMainWindow(parent),
|
||||||
ui(new Ui::UEFITool),
|
ui(new Ui::UEFITool),
|
||||||
version(tr("0.18.6"))
|
version(tr("0.18.7"))
|
||||||
{
|
{
|
||||||
clipboard = QApplication::clipboard();
|
clipboard = QApplication::clipboard();
|
||||||
|
|
||||||
|
@ -14,6 +14,7 @@ SOURCES += uefitool_main.cpp \
|
|||||||
treeitem.cpp \
|
treeitem.cpp \
|
||||||
treemodel.cpp \
|
treemodel.cpp \
|
||||||
messagelistitem.cpp \
|
messagelistitem.cpp \
|
||||||
|
guidlineedit.cpp \
|
||||||
LZMA/LzmaCompress.c \
|
LZMA/LzmaCompress.c \
|
||||||
LZMA/LzmaDecompress.c \
|
LZMA/LzmaDecompress.c \
|
||||||
LZMA/SDK/C/LzFind.c \
|
LZMA/SDK/C/LzFind.c \
|
||||||
@ -35,6 +36,7 @@ HEADERS += uefitool.h \
|
|||||||
treeitem.h \
|
treeitem.h \
|
||||||
treemodel.h \
|
treemodel.h \
|
||||||
messagelistitem.h \
|
messagelistitem.h \
|
||||||
|
guidlineedit.h \
|
||||||
LZMA/LzmaCompress.h \
|
LZMA/LzmaCompress.h \
|
||||||
LZMA/LzmaDecompress.h \
|
LZMA/LzmaDecompress.h \
|
||||||
Tiano/EfiTianoDecompress.h \
|
Tiano/EfiTianoDecompress.h \
|
||||||
|
@ -497,7 +497,7 @@
|
|||||||
</action>
|
</action>
|
||||||
<action name="actionMessagesCopyAll">
|
<action name="actionMessagesCopyAll">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>C&opy All</string>
|
<string>C&opy all</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="shortcut">
|
<property name="shortcut">
|
||||||
<string>Ctrl+Alt+C</string>
|
<string>Ctrl+Alt+C</string>
|
||||||
|
Loading…
Reference in New Issue
Block a user