mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-14 16:44:37 +00:00
119 lines
4.2 KiB
C++
119 lines
4.2 KiB
C++
/****************************************************************************
|
|
* MeshLab o o *
|
|
* An extendible mesh processor o o *
|
|
* _ O _ *
|
|
* Copyright(C) 2005, 2009 \/)\/ *
|
|
* Visual Computing Lab /\/| *
|
|
* ISTI - Italian National Research Council | *
|
|
* \ *
|
|
* All rights reserved. *
|
|
* *
|
|
* 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 2 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 (http://www.gnu.org/licenses/gpl.txt) *
|
|
* for more details. *
|
|
* *
|
|
****************************************************************************/
|
|
|
|
/* A class representing a set of point names that is used
|
|
* as a template a user can fill out to create a PickedPoints
|
|
*
|
|
*
|
|
* @author Oscar Barney
|
|
*/
|
|
|
|
|
|
#include "pickPointsTemplate.h"
|
|
|
|
#include <QtGui>
|
|
//xml stuff
|
|
#include <QtXml/QDomDocument>
|
|
#include <QtXml/QDomElement>
|
|
#include <QtXml/QDomNode>
|
|
|
|
|
|
//Define Constants
|
|
const QString PickPointsTemplate::fileExtension = ".pptpl";
|
|
const QString PickPointsTemplate::rootName = "PickPointsTemplate";
|
|
const QString PickPointsTemplate::pointElementName = "point";
|
|
const QString PickPointsTemplate::pointName = "name";
|
|
|
|
|
|
bool PickPointsTemplate::save(QString filename,
|
|
std::vector<QString> *pointNameVector){
|
|
QDomDocument doc(rootName);
|
|
QDomElement root = doc.createElement(rootName);
|
|
doc.appendChild(root);
|
|
|
|
//create an element for each point
|
|
for (int i = 0; i < pointNameVector->size(); ++i) {
|
|
QString name = pointNameVector->at(i);
|
|
|
|
QDomElement tag = doc.createElement(pointElementName);
|
|
tag.setAttribute(pointName, name);
|
|
|
|
//append the element to the root
|
|
root.appendChild(tag);
|
|
}
|
|
|
|
//create a file and write the data
|
|
QFile file(filename);
|
|
file.open(QIODevice::WriteOnly);
|
|
QTextStream qstream(&file);
|
|
doc.save(qstream,1);
|
|
file.close();
|
|
return true;
|
|
}
|
|
|
|
bool PickPointsTemplate::load(QString filename,
|
|
std::vector<QString> *pointNameVector){
|
|
|
|
QDomDocument doc;
|
|
pointNameVector->clear();
|
|
|
|
QFile file(filename);
|
|
|
|
QString errorMessage;
|
|
if (file.open(QIODevice::ReadOnly) && doc.setContent(&file, &errorMessage))
|
|
{
|
|
file.close();
|
|
QDomElement root = doc.documentElement();
|
|
if (root.nodeName() == rootName)
|
|
{
|
|
qDebug() << "About to read a " << rootName << " xml document";
|
|
|
|
for(QDomElement element = root.firstChildElement(pointElementName);
|
|
!element.isNull();
|
|
element = element.nextSiblingElement(pointElementName))
|
|
{
|
|
QString name = element.attribute(pointName);
|
|
qDebug() << "Reading point with name " << name;
|
|
|
|
pointNameVector->push_back(name);
|
|
|
|
}
|
|
} else {
|
|
//file is of unknown type
|
|
qDebug() << "Failed, tried to read a " << rootName << " xml document";
|
|
return false;
|
|
}
|
|
|
|
} else {
|
|
// problem opening the file
|
|
qDebug() << "problem reading from the file, setContent error: " << errorMessage;
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
QString PickPointsTemplate::getDefaultTemplateFileName()
|
|
{
|
|
return QDir::homePath() + "/.pickPointsTemplate" + fileExtension;
|
|
}
|