mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-24 20:14:39 -04: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
7 changed files with 1863 additions and 1377 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue