mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-06 00:04:13 +01:00
66 lines
1.9 KiB
C++
66 lines
1.9 KiB
C++
/*
|
|
* LCD Image Converter. Converts images and fonts for embedded applications.
|
|
* Copyright (C) 2012 riuson
|
|
* mailto: riuson@gmail.com
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/
|
|
*/
|
|
|
|
#ifndef HISTORYKEEPER_H
|
|
#define HISTORYKEEPER_H
|
|
|
|
#include <QImage>
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QVariant>
|
|
|
|
namespace Data
|
|
{
|
|
namespace History
|
|
{
|
|
|
|
class HistoryRecord;
|
|
|
|
class HistoryKeeper : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit HistoryKeeper(QObject* parent = 0);
|
|
virtual ~HistoryKeeper();
|
|
|
|
void init(const QStringList* keys, const QMap<QString, QImage*>* images, const QMap<QString, QVariant>* info);
|
|
void store(const QStringList* keys, const QMap<QString, QImage*>* images, const QMap<QString, QVariant>* info);
|
|
void restorePrevious(QStringList* keys, QMap<QString, QImage*>* images, QMap<QString, QVariant>* info);
|
|
void restoreNext(QStringList* keys, QMap<QString, QImage*>* images, QMap<QString, QVariant>* info);
|
|
|
|
bool initialized() const;
|
|
bool canRestorePrevious() const;
|
|
bool canRestoreNext() const;
|
|
|
|
private:
|
|
QList<HistoryRecord*>* mHistory;
|
|
int mCurrentIndex;
|
|
|
|
void removeAfter(int index);
|
|
void restoreAt(int index, QStringList* keys, QMap<QString, QImage*>* images, QMap<QString, QVariant>* info);
|
|
};
|
|
|
|
} // namespace History
|
|
} // namespace Data
|
|
|
|
#endif // HISTORYKEEPER_H
|