2014-02-10 16:47:31 +00:00

107 lines
3.7 KiB
C++

/****************************************************************************
* MeshLab o o *
* A versatile mesh processing toolbox o o *
* _ O _ *
* Copyright(C) 2005 \/)\/ *
* 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. *
* *
****************************************************************************/
#ifndef EDITREFERENCINGPLUGIN_H
#define EDITREFERENCINGPLUGIN_H
#include <QObject>
#include <common/interfaces.h>
#include "edit_referencingDialog.h"
// function to calculate rototranslaton and rototranslaton+scale matrices from series of points
#include <vcg/space/point_matching.h>
class EditReferencingPlugin : public QObject, public MeshEditInterface
{
Q_OBJECT
Q_INTERFACES(MeshEditInterface)
public:
EditReferencingPlugin();
virtual ~EditReferencingPlugin() {}
static const QString Info();
bool StartEdit(MeshModel &/*m*/, GLArea * /*parent*/);
void EndEdit(MeshModel &/*m*/, GLArea * /*parent*/);
void Decorate(MeshModel &/*m*/, GLArea * /*parent*/, QPainter *p);
void Decorate (MeshModel &/*m*/, GLArea * ){};
void mousePressEvent(QMouseEvent *, MeshModel &, GLArea * ) {};
void mouseMoveEvent(QMouseEvent *, MeshModel &, GLArea * ) {};
void mouseReleaseEvent(QMouseEvent *event, MeshModel &/*m*/, GLArea * );
QPoint cur;
QFont qFont;
// the dialog
edit_referencingDialog *referencingDialog;
// used to draw over the rendering
GLArea *glArea;
//referencing data
std::vector<bool> usePoint;
std::vector<QString> pointID;
std::vector<vcg::Point3d> pickedPoints;
std::vector<vcg::Point3d> refPoints;
std::vector<double> pointError;
vcg::Matrix44d transfMatrix;
int lastname;
bool validMatrix;
bool isMatrixRigid;
// status text or log
QString status_line1;
QString status_line2;
QString status_line3;
QString status_error;
// string to hold referencing result (for exporting documentation)
QString referencingResults;
public slots:
void addNewPoint();
void deleteCurrentPoint();
void pickCurrentPoint();
void pickCurrentRefPoint();
void receivedSurfacePoint(QString name,vcg::Point3f pPoint);
void loadFromFile();
void saveToFile();
void calculateMatrix();
void applyMatrix();
signals:
void askSurfacePos(QString);
};
#endif