mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-13 08:09:39 +00:00
67 lines
2.4 KiB
C++
67 lines
2.4 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 QUALITYCHECKER_H_
|
|
#define QUALITYCHECKER_H_
|
|
|
|
#include <vector>
|
|
|
|
#include <vcg/math/base.h>
|
|
#include <GL/glew.h>
|
|
#include <QHash>
|
|
#include <QUndoStack>
|
|
#include <QUndoGroup>
|
|
#include "ui_qualitychecker.h"
|
|
|
|
|
|
|
|
/**
|
|
* This class manages the user interface and is concerned
|
|
* with emitting appropriate signals. It should not be
|
|
* concerned with the application logic in any way.
|
|
*/
|
|
class QualityChecker : public QDockWidget, private Ui::QualityChecker
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
public:
|
|
QualityChecker(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
|
|
|
|
|
signals:
|
|
|
|
void createImageSpaceClicked();
|
|
void compareClicked();
|
|
void layerChosenChanged();
|
|
|
|
public slots :
|
|
void on_compare();
|
|
void on_createImageSpace();
|
|
void on_layerChosen();
|
|
};
|
|
|
|
|
|
#endif
|