mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 16:08:23 +08:00
f6c429f00c
- added FIT messages widget and related messages - corrected small text issues
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
/* fitparser.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,
|
|
WITHWARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
*/
|
|
|
|
#ifndef __FITPARSER_H__
|
|
#define __FITPARSER_H__
|
|
|
|
#include <QObject>
|
|
#include <QModelIndex>
|
|
#include <QByteArray>
|
|
#include <QStringList>
|
|
#include <QVector>
|
|
|
|
#include "basetypes.h"
|
|
#include "treemodel.h"
|
|
#include "utility.h"
|
|
#include "parsingdata.h"
|
|
#include "fit.h"
|
|
|
|
class TreeModel;
|
|
|
|
class FitParser : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
// Default constructor and destructor
|
|
FitParser(TreeModel* treeModel, QObject *parent = 0);
|
|
~FitParser();
|
|
|
|
// Returns messages
|
|
QVector<QPair<QString, QModelIndex> > getMessages() const;
|
|
// Clears messages
|
|
void clearMessages();
|
|
|
|
STATUS parse(const QModelIndex & index, const QModelIndex & lastVtf);
|
|
QVector<QVector<QString> > getFitTable() const { return fitTable; }
|
|
|
|
private:
|
|
TreeModel *model;
|
|
QVector<QPair<QString, QModelIndex> > messagesVector;
|
|
QModelIndex lastVtf;
|
|
QVector<QVector<QString> > fitTable;
|
|
|
|
STATUS findFitRecursive(const QModelIndex & index, QModelIndex & found, UINT32 & fitOffset);
|
|
QString fitEntryTypeToQString(UINT8 type);
|
|
|
|
// Message helper
|
|
void msg(const QString & message, const QModelIndex &index = QModelIndex());
|
|
};
|
|
|
|
#endif
|