mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-02 14:24:13 +01:00
327 lines
10 KiB
C++
327 lines
10 KiB
C++
/*
|
|
* LCD Image Converter. Converts images and fonts for embedded applications.
|
|
* Copyright (C) 2013 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/
|
|
*/
|
|
|
|
#include "imagedocument.h"
|
|
//-----------------------------------------------------------------------------
|
|
#include <QDomDocument>
|
|
#include <QDomProcessingInstruction>
|
|
#include <QBuffer>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <QFileDialog>
|
|
|
|
#include "datacontainer.h"
|
|
#include "parser.h"
|
|
#include "tags.h"
|
|
#include "statusdata.h"
|
|
//-----------------------------------------------------------------------------
|
|
const QString ImageDocument::DefaultKey = QString("default");
|
|
//-----------------------------------------------------------------------------
|
|
ImageDocument::ImageDocument(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
this->mContainer = new DataContainer(this);
|
|
this->connect(this->mContainer, SIGNAL(imagesChanged()), SLOT(mon_container_imagesChanged()));
|
|
|
|
QImage *image = new QImage(":/images/template");
|
|
this->mContainer->setImage(ImageDocument::DefaultKey, image);
|
|
delete image;
|
|
|
|
this->setDocumentName(tr("Image", "new image name"));
|
|
this->setDocumentFilename("");
|
|
this->setOutputFilename("");
|
|
this->setChanged(true);
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
ImageDocument::~ImageDocument()
|
|
{
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
bool ImageDocument::load(const QString &fileName)
|
|
{
|
|
bool result = false;
|
|
QFile file(fileName);
|
|
if (file.open(QIODevice::ReadOnly))
|
|
{
|
|
QDomDocument doc;
|
|
QString errorMsg;
|
|
QString converted;
|
|
int errorColumn, errorLine;
|
|
|
|
this->mContainer->blockSignals(true);
|
|
|
|
if (doc.setContent(&file, &errorMsg, &errorLine, &errorColumn))
|
|
{
|
|
QDomElement root = doc.documentElement();
|
|
if (root.tagName() == "data")
|
|
{
|
|
this->setDocumentName(root.attribute("name", fileName));
|
|
QDomNode n = root.firstChild();
|
|
while (!n.isNull())
|
|
{
|
|
QDomElement e = n.toElement();
|
|
if (!e.isNull())
|
|
{
|
|
if (e.tagName() == "picture")
|
|
{
|
|
QString str = e.text();
|
|
QByteArray ba = QByteArray::fromBase64(str.toLatin1());
|
|
QBuffer buffer(&ba);
|
|
QImage image;
|
|
image.load(&buffer, "PNG");
|
|
this->mContainer->setImage(DefaultKey, &image);
|
|
result = true;
|
|
}
|
|
else if (e.tagName() == "converted")
|
|
{
|
|
converted = e.text();
|
|
}
|
|
}
|
|
|
|
n = n.nextSibling();
|
|
}
|
|
}
|
|
}
|
|
file.close();
|
|
|
|
this->mContainer->blockSignals(false);
|
|
|
|
this->setDocumentFilename(fileName);
|
|
this->setOutputFilename(converted);
|
|
this->setChanged(false);
|
|
}
|
|
return result;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
bool ImageDocument::save(const QString &fileName)
|
|
{
|
|
bool result = false;
|
|
QDomDocument doc;
|
|
QDomProcessingInstruction procInstruction = doc.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"utf-8\"");
|
|
doc.appendChild(procInstruction);
|
|
|
|
QDomElement nodeRoot = doc.createElement("data");
|
|
doc.appendChild(nodeRoot);
|
|
|
|
nodeRoot.setAttribute("type", "image");
|
|
nodeRoot.setAttribute("name", this->documentName());
|
|
|
|
// image data
|
|
QDomElement nodePicture = doc.createElement("picture");
|
|
nodeRoot.appendChild(nodePicture);
|
|
|
|
nodePicture.setAttribute("format", "png");
|
|
|
|
QByteArray ba;
|
|
QBuffer buffer(&ba);
|
|
buffer.open(QIODevice::WriteOnly);
|
|
this->mContainer->image(DefaultKey)->save(&buffer, "PNG");
|
|
QString data = ba.toBase64();
|
|
|
|
QDomText nodeData = doc.createTextNode(data);
|
|
nodePicture.appendChild(nodeData);
|
|
|
|
// converted file name
|
|
QDomElement nodeConverted = doc.createElement("converted");
|
|
nodeRoot.appendChild(nodeConverted);
|
|
nodeConverted.appendChild(doc.createTextNode(this->outputFilename()));
|
|
|
|
QFile file(fileName);
|
|
if (file.open(QIODevice::WriteOnly))
|
|
{
|
|
QTextStream stream(&file);
|
|
doc.save(stream, 4);
|
|
|
|
this->setDocumentFilename(fileName);
|
|
file.close();
|
|
result = true;
|
|
this->setChanged(false);
|
|
}
|
|
return result;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
bool ImageDocument::changed() const
|
|
{
|
|
bool result = this->mContainer->changed();
|
|
return result;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
QString ImageDocument::documentFilename() const
|
|
{
|
|
QVariant result = this->mContainer->info("filename");
|
|
return result.toString();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
QString ImageDocument::documentName() const
|
|
{
|
|
QVariant result = this->mContainer->info("document name");
|
|
return result.toString();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::setDocumentName(const QString &value)
|
|
{
|
|
if (this->documentName() != value)
|
|
{
|
|
this->mContainer->setInfo("document name", value);
|
|
this->setChanged(true);
|
|
}
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
DataContainer *ImageDocument::dataContainer()
|
|
{
|
|
return this->mContainer;
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::convert(bool request)
|
|
{
|
|
Tags tags;
|
|
|
|
if (!this->documentFilename().isEmpty())
|
|
tags.setTagValue(Tags::DocumentFilename, this->documentFilename());
|
|
else
|
|
tags.setTagValue(Tags::DocumentFilename, "unsaved");
|
|
|
|
tags.setTagValue(Tags::DocumentName, this->documentName());
|
|
tags.setTagValue(Tags::DocumentNameWithoutSpaces, this->documentName().remove(QRegExp("\\W", Qt::CaseInsensitive)));
|
|
|
|
tags.setTagValue(Tags::DocumentDataType, "image");
|
|
|
|
Parser parser(this, Parser::TypeImage);
|
|
QString result = parser.convert(this, tags);
|
|
|
|
// converter output file name
|
|
QString outputFileName = this->outputFilename();
|
|
|
|
// if file name not specified, show dialog
|
|
if (outputFileName.isEmpty())
|
|
request = true;
|
|
|
|
// show dialog
|
|
if (request)
|
|
{
|
|
QFileDialog dialog;//(this)
|
|
dialog.setAcceptMode(QFileDialog::AcceptSave);
|
|
dialog.selectFile(outputFileName);
|
|
dialog.setFileMode(QFileDialog::AnyFile);
|
|
dialog.setNameFilter(tr("C Files (*.c);;All Files (*.*)"));
|
|
dialog.setDefaultSuffix(QString("c"));
|
|
dialog.setWindowTitle(tr("Save result file as"));
|
|
if (dialog.exec() == QDialog::Accepted)
|
|
{
|
|
outputFileName = dialog.selectedFiles().at(0);
|
|
}
|
|
else
|
|
{
|
|
outputFileName = "";
|
|
}
|
|
}
|
|
|
|
// if file name specified, save result
|
|
if (!outputFileName.isEmpty())
|
|
{
|
|
QFile file(outputFileName);
|
|
if (file.open(QFile::WriteOnly))
|
|
{
|
|
file.write(result.toUtf8());
|
|
file.close();
|
|
|
|
if (this->outputFilename() != outputFileName)
|
|
{
|
|
this->beginChanges();
|
|
|
|
this->setOutputFilename(outputFileName);
|
|
emit this->setChanged(true);
|
|
|
|
this->endChanges();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::beginChanges()
|
|
{
|
|
if (!this->mContainer->historyInitialized())
|
|
{
|
|
this->mContainer->historyInit();
|
|
}
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::endChanges()
|
|
{
|
|
this->mContainer->stateSave();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
bool ImageDocument::canUndo()
|
|
{
|
|
return this->mContainer->canUndo();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
bool ImageDocument::canRedo()
|
|
{
|
|
return this->mContainer->canRedo();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::undo()
|
|
{
|
|
this->mContainer->stateUndo();
|
|
|
|
emit this->documentChanged();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::redo()
|
|
{
|
|
this->mContainer->stateRedo();
|
|
|
|
emit this->documentChanged();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::setDocumentFilename(const QString &value)
|
|
{
|
|
if (this->documentFilename() != value)
|
|
{
|
|
this->mContainer->setInfo("filename", QVariant(value));
|
|
}
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
QString ImageDocument::outputFilename() const
|
|
{
|
|
QVariant result = this->mContainer->info("converted filename");
|
|
return result.toString();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::setOutputFilename(const QString &value)
|
|
{
|
|
if (this->outputFilename() != value)
|
|
{
|
|
this->mContainer->setInfo("converted filename", QVariant(value));
|
|
}
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::setChanged(bool value)
|
|
{
|
|
this->mContainer->setChanged(value);
|
|
emit this->documentChanged();
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
void ImageDocument::mon_container_imagesChanged()
|
|
{
|
|
emit this->documentChanged();
|
|
}
|
|
//-----------------------------------------------------------------------------
|