mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
831603dbc9
- major refactoring round done - added replace actions for volumes - added better Intel signature handling - added support for unsigned Aptio capsules - more GUIDs added to known-GUIDs database - more information about PE and TE sections - shown information about item full size - hexadecimal numbers format changed from 0xAB to ABh - AppleCRC renamed to ZVCRC because it seems not Apple-specific feature after all
75 lines
2.7 KiB
C++
75 lines
2.7 KiB
C++
/* treemodel.h
|
|
|
|
Copyright (c) 2015, 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 __TREEMODEL_H__
|
|
#define __TREEMODEL_H__
|
|
|
|
#include <QAbstractItemModel>
|
|
#include <QModelIndex>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
#include "basetypes.h"
|
|
#include "types.h"
|
|
|
|
class TreeItem;
|
|
|
|
class TreeModel : public QAbstractItemModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TreeModel(QObject *parent = 0);
|
|
~TreeModel();
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
int role = Qt::DisplayRole) const;
|
|
QModelIndex index(int row, int column,
|
|
const QModelIndex &parent = QModelIndex()) const;
|
|
QModelIndex parent(const QModelIndex &index) const;
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
void setAction(const QModelIndex &index, const UINT8 action);
|
|
void setType(const QModelIndex &index, const UINT8 type);
|
|
void setAttributes(const QModelIndex &index, const UINT32 attributes);
|
|
void setName(const QModelIndex &index, const QString &name);
|
|
void setText(const QModelIndex &index, const QString &text);
|
|
|
|
QString name(const QModelIndex &index) const;
|
|
QString text(const QModelIndex &index) const;
|
|
QString info(const QModelIndex &index) const;
|
|
UINT8 type(const QModelIndex &index) const;
|
|
UINT32 attributes(const QModelIndex &index) const;
|
|
QByteArray header(const QModelIndex &index) const;
|
|
bool hasEmptyHeader(const QModelIndex &index) const;
|
|
QByteArray body(const QModelIndex &index) const;
|
|
bool hasEmptyBody(const QModelIndex &index) const;
|
|
UINT8 action(const QModelIndex &index) const;
|
|
UINT8 compression(const QModelIndex &index) const;
|
|
|
|
QModelIndex addItem(const UINT8 type, const UINT32 attributes = 0, const UINT8 compression = COMPRESSION_ALGORITHM_NONE,
|
|
const QString & name = QString(), const QString & text = QString(), const QString & info = QString(),
|
|
const QByteArray & header = QByteArray(), const QByteArray & body = QByteArray(),
|
|
const QModelIndex & parent = QModelIndex(), const UINT8 mode = CREATE_MODE_APPEND);
|
|
|
|
QModelIndex findParentOfType(const QModelIndex & index, UINT8 type) const;
|
|
|
|
private:
|
|
TreeItem *rootItem;
|
|
};
|
|
|
|
#endif
|