mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
cda0018a29
- more refactoring to go, because new NVRAM code was written in a hurry and needs to be cleaned up
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
/* fssops.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 FFSOPS_H
|
|
#define FFSOPS_H
|
|
|
|
#include <vector>
|
|
|
|
#include <QObject>
|
|
#include <QByteArray>
|
|
#include <QString>
|
|
#include <QModelIndex>
|
|
|
|
#include "basetypes.h"
|
|
#include "treemodel.h"
|
|
#include "ffs.h"
|
|
#include "utility.h"
|
|
|
|
class FfsOperations
|
|
{
|
|
public:
|
|
|
|
FfsOperations(TreeModel * treeModel) : model(treeModel) {}
|
|
~FfsOperations() {};
|
|
|
|
std::vector<std::pair<QString, QModelIndex> > getMessages() const { return messagesVector; }
|
|
void clearMessages() { messagesVector.clear(); }
|
|
|
|
STATUS extract(const QModelIndex & index, QString & name, QByteArray & extracted, const UINT8 mode);
|
|
STATUS replace(const QModelIndex & index, const QString & data, const UINT8 mode);
|
|
|
|
STATUS remove(const QModelIndex & index);
|
|
STATUS rebuild(const QModelIndex & index);
|
|
|
|
private:
|
|
TreeModel* model;
|
|
std::vector<std::pair<QString, QModelIndex> > messagesVector;
|
|
|
|
void msg(const QString & message, const QModelIndex &index = QModelIndex()) {
|
|
messagesVector.push_back(std::pair<QString, QModelIndex>(message, index));
|
|
}
|
|
};
|
|
|
|
#endif // FFSOPS_H
|