2013-10-08 15:07:03 +08:00
|
|
|
/* treeitem.h
|
|
|
|
|
|
|
|
Copyright (c) 2013, 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 __TREEITEM_H__
|
|
|
|
#define __TREEITEM_H__
|
|
|
|
|
|
|
|
#include <QByteArray>
|
|
|
|
#include <QList>
|
|
|
|
#include <QString>
|
2013-11-07 21:46:28 +08:00
|
|
|
#include <QVariant>
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
#include "basetypes.h"
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
extern QString itemTypeToQString(const UINT8 type);
|
|
|
|
extern QString itemSubtypeToQString(const UINT8 type, const UINT8 subtype);
|
|
|
|
extern QString compressionTypeToQString(UINT8 algorithm);
|
|
|
|
|
2013-10-08 15:07:03 +08:00
|
|
|
class TreeItem
|
|
|
|
{
|
|
|
|
public:
|
2013-11-07 21:46:28 +08:00
|
|
|
// Action types
|
|
|
|
enum ActionTypes {
|
2013-11-17 17:01:11 +08:00
|
|
|
NoAction = 50,
|
2013-12-12 19:28:39 +08:00
|
|
|
Create,
|
|
|
|
Insert,
|
|
|
|
Replace,
|
2013-11-17 17:01:11 +08:00
|
|
|
Remove,
|
2013-11-18 23:23:59 +08:00
|
|
|
Rebuild
|
2013-11-07 21:46:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Item types
|
|
|
|
enum ItemTypes {
|
2013-11-17 17:01:11 +08:00
|
|
|
Root = 60,
|
|
|
|
Capsule,
|
|
|
|
Image,
|
|
|
|
Region,
|
|
|
|
Padding,
|
|
|
|
Volume,
|
|
|
|
File,
|
|
|
|
Section
|
|
|
|
};
|
|
|
|
|
|
|
|
// Image subtypes
|
|
|
|
enum ImageSubtypes{
|
|
|
|
IntelImage = 70,
|
|
|
|
BiosImage
|
2013-11-07 21:46:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Capsule subtypes
|
|
|
|
enum CapsuleSubtypes {
|
2013-11-17 17:01:11 +08:00
|
|
|
AptioCapsule = 80,
|
2013-11-07 21:46:28 +08:00
|
|
|
UefiCapsule
|
|
|
|
};
|
|
|
|
|
|
|
|
// Region subtypes
|
|
|
|
enum RegionSubtypes {
|
2013-11-17 17:01:11 +08:00
|
|
|
DescriptorRegion = 90,
|
2013-11-07 21:46:28 +08:00
|
|
|
GbeRegion,
|
|
|
|
MeRegion,
|
|
|
|
BiosRegion,
|
|
|
|
PdrRegion
|
|
|
|
};
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
TreeItem(const UINT8 type, const UINT8 subtype = 0, const UINT8 compression = COMPRESSION_ALGORITHM_NONE,
|
|
|
|
const QString &name = QString(), const QString &text = QString(), const QString &info = QString(),
|
2013-11-17 17:01:11 +08:00
|
|
|
const QByteArray & header = QByteArray(), const QByteArray & body = QByteArray(), const QByteArray & tail = QByteArray(),
|
|
|
|
TreeItem *parent = 0);
|
2013-11-07 21:46:28 +08:00
|
|
|
// Destructor
|
2013-10-08 15:07:03 +08:00
|
|
|
~TreeItem();
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
// Operations with items
|
2013-10-08 15:07:03 +08:00
|
|
|
void appendChild(TreeItem *item);
|
2013-11-07 21:46:28 +08:00
|
|
|
void prependChild(TreeItem *item);
|
|
|
|
UINT8 insertChildBefore(TreeItem *item, TreeItem *newItem);
|
|
|
|
UINT8 insertChildAfter(TreeItem *item, TreeItem *newItem);
|
|
|
|
|
|
|
|
// Model support operations
|
2013-10-08 15:07:03 +08:00
|
|
|
TreeItem *child(int row);
|
|
|
|
int childCount() const;
|
|
|
|
int columnCount() const;
|
2013-11-07 21:46:28 +08:00
|
|
|
QVariant data(int column) const;
|
2013-10-08 15:07:03 +08:00
|
|
|
int row() const;
|
|
|
|
TreeItem *parent();
|
|
|
|
|
2013-11-07 21:46:28 +08:00
|
|
|
// Reading operations for item parameters
|
|
|
|
UINT8 type() const;
|
|
|
|
UINT8 subtype() const;
|
|
|
|
QByteArray header() const;
|
|
|
|
bool hasEmptyHeader() const;
|
|
|
|
QByteArray body() const;
|
|
|
|
bool hasEmptyBody() const;
|
2013-11-17 17:01:11 +08:00
|
|
|
QByteArray tail() const;
|
|
|
|
bool hasEmptyTail() const;
|
2013-11-07 21:46:28 +08:00
|
|
|
QString info() const;
|
2013-11-18 23:23:59 +08:00
|
|
|
UINT8 action() const;
|
2013-11-07 21:46:28 +08:00
|
|
|
UINT8 compression() const;
|
2013-10-08 15:07:03 +08:00
|
|
|
|
2013-12-12 19:28:39 +08:00
|
|
|
// Some values can be changed after item construction
|
|
|
|
void setAction(const UINT8 action);
|
|
|
|
void setTypeName(const QString &text);
|
2013-10-08 15:07:03 +08:00
|
|
|
void setSubtypeName(const QString &text);
|
2013-11-07 21:46:28 +08:00
|
|
|
void setName(const QString &text);
|
|
|
|
void setText(const QString &text);
|
2013-10-08 15:07:03 +08:00
|
|
|
|
|
|
|
private:
|
2013-11-07 21:46:28 +08:00
|
|
|
// Set default names after construction
|
|
|
|
// They can later be changed by set* methods
|
|
|
|
void setDefaultNames();
|
|
|
|
|
2013-10-08 15:07:03 +08:00
|
|
|
QList<TreeItem*> childItems;
|
2013-11-07 21:46:28 +08:00
|
|
|
UINT8 itemAction;
|
2013-10-08 15:07:03 +08:00
|
|
|
UINT8 itemType;
|
|
|
|
UINT8 itemSubtype;
|
2013-11-07 21:46:28 +08:00
|
|
|
UINT8 itemCompression;
|
2013-10-08 15:07:03 +08:00
|
|
|
QByteArray itemHeader;
|
|
|
|
QByteArray itemBody;
|
2013-11-17 17:01:11 +08:00
|
|
|
QByteArray itemTail;
|
2013-12-12 19:28:39 +08:00
|
|
|
QString itemName;
|
|
|
|
QString itemTypeName;
|
2013-10-08 15:07:03 +08:00
|
|
|
QString itemSubtypeName;
|
|
|
|
QString itemText;
|
|
|
|
QString itemInfo;
|
|
|
|
TreeItem *parentItem;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|