mirror of https://github.com/CGAL/cgal
292 lines
6.8 KiB
C++
292 lines
6.8 KiB
C++
#include <fstream>
|
|
|
|
// CGAL headers
|
|
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
|
|
#include <CGAL/Snap_rounding_traits_2.h>
|
|
#include <CGAL/Snap_rounding_2.h>
|
|
#include <CGAL/Snap_rounding_traits_2.h>
|
|
|
|
// Qt headers
|
|
#include <QtGui>
|
|
#include <QString>
|
|
#include <QActionGroup>
|
|
#include <QFileDialog>
|
|
#include <QInputDialog>
|
|
|
|
// GraphicsView items and event filters (input classes)
|
|
#include <CGAL/Qt/RegularGridGraphicsItem.h>
|
|
#include <CGAL/Qt/SegmentsGraphicsItem.h>
|
|
#include <CGAL/Qt/PolylinesGraphicsItem.h>
|
|
#include <CGAL/Qt/GraphicsViewPolylineInput.h>
|
|
|
|
// for viewportsBbox
|
|
#include <CGAL/Qt/utility.h>
|
|
|
|
// the two base classes
|
|
#include "ui_Snap_rounding_2.h"
|
|
#include <CGAL/Qt/DemosMainWindow.h>
|
|
|
|
typedef CGAL::Exact_predicates_exact_constructions_kernel K;
|
|
typedef CGAL::Snap_rounding_traits_2<K> Traits;
|
|
|
|
typedef K::Point_2 Point_2;
|
|
typedef K::Segment_2 Segment_2;
|
|
typedef K::Iso_rectangle_2 Iso_rectangle_2;
|
|
|
|
|
|
|
|
class MainWindow :
|
|
public CGAL::Qt::DemosMainWindow,
|
|
public Ui::Snap_rounding_2
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
QGraphicsScene scene;
|
|
|
|
CGAL::Qt::RegularGridGraphicsItem<K> * rgi;
|
|
|
|
CGAL::Qt::GraphicsViewPolylineInput<K> * pi;
|
|
|
|
std::list<Segment_2> input;
|
|
std::list<std::list<Point_2> > output;
|
|
|
|
typedef CGAL::Qt::SegmentsGraphicsItem<std::list<Segment_2> > InputSegmentsGraphicsItem;
|
|
typedef CGAL::Qt::PolylinesGraphicsItem<std::list<std::list<Point_2> > > OutputPolylinesGraphicsItem;
|
|
InputSegmentsGraphicsItem * isgi;
|
|
OutputPolylinesGraphicsItem *plgi;
|
|
double delta;
|
|
|
|
public:
|
|
MainWindow();
|
|
|
|
public slots:
|
|
|
|
void processInput(CGAL::Object o);
|
|
|
|
void on_actionLoadPoints_triggered();
|
|
|
|
void on_actionClear_triggered();
|
|
|
|
void on_actionSavePoints_triggered();
|
|
|
|
void on_actionGenerate_triggered();
|
|
|
|
void on_actionRecenter_triggered();
|
|
|
|
virtual void open(QString fileName);
|
|
|
|
signals:
|
|
void changed();
|
|
};
|
|
|
|
|
|
MainWindow::MainWindow()
|
|
: DemosMainWindow(), delta(1.0)
|
|
{
|
|
setupUi(this);
|
|
|
|
this->graphicsView->setAcceptDrops(false);
|
|
|
|
isgi = new InputSegmentsGraphicsItem(&input);
|
|
scene.addItem(isgi);
|
|
|
|
plgi = new OutputPolylinesGraphicsItem(&output);
|
|
scene.addItem(plgi);
|
|
|
|
// inputs polylines with 2 points
|
|
pi = new CGAL::Qt::GraphicsViewPolylineInput<K>(this, &scene, 2, false);
|
|
QObject::connect(pi, SIGNAL(generate(CGAL::Object)),
|
|
this, SLOT(processInput(CGAL::Object)));
|
|
|
|
scene.installEventFilter(pi);
|
|
|
|
// Manual handling of actions
|
|
//
|
|
|
|
QObject::connect(this->actionQuit, SIGNAL(triggered()),
|
|
this, SLOT(close()));
|
|
|
|
//
|
|
// Setup the scene and the view
|
|
//
|
|
scene.setItemIndexMethod(QGraphicsScene::NoIndex);
|
|
scene.setSceneRect(-50, -50, 50, 50);
|
|
this->graphicsView->setScene(&scene);
|
|
|
|
// Turn the vertical axis upside down
|
|
this->graphicsView->matrix().scale(1, -1);
|
|
this->graphicsView->setMouseTracking(true);
|
|
|
|
rgi = new CGAL::Qt::RegularGridGraphicsItem<K>(delta, delta);
|
|
|
|
QObject::connect(this, SIGNAL(changed()),
|
|
rgi, SLOT(modelChanged()));
|
|
|
|
QObject::connect(this, SIGNAL(changed()),
|
|
isgi, SLOT(modelChanged()));
|
|
|
|
QObject::connect(this, SIGNAL(changed()),
|
|
plgi, SLOT(modelChanged()));
|
|
|
|
|
|
rgi->setVerticesPen(QPen(Qt::red, 3, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
|
|
rgi->setEdgesPen(QPen(Qt::gray, 0, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
|
|
scene.addItem(rgi);
|
|
|
|
plgi->setEdgesPen(QPen(Qt::blue, 0, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
|
|
scene.addItem(plgi);
|
|
|
|
|
|
// The navigation adds zooming and translation functionality to the
|
|
// QGraphicsView
|
|
this->addNavigation(this->graphicsView);
|
|
|
|
this->setupStatusBar();
|
|
this->setupOptionsMenu();
|
|
this->addAboutDemo(":/cgal/help/about_Snap_rounding_2.html");
|
|
this->addAboutCGAL();
|
|
|
|
this->addRecentFiles(this->menuFile, this->actionQuit);
|
|
connect(this, SIGNAL(openRecentFile(QString)),
|
|
this, SLOT(open(QString)));
|
|
}
|
|
|
|
|
|
|
|
void
|
|
MainWindow::processInput(CGAL::Object o)
|
|
{
|
|
|
|
std::list<Point_2> points;
|
|
if(CGAL::assign(points, o)){
|
|
if(points.size() == 2) {
|
|
input.push_back(Segment_2(points.front(), points.back()));
|
|
output.clear();
|
|
CGAL::snap_rounding_2<Traits,std::list<Segment_2>::const_iterator,std::list<std::list<Point_2> > >(input.begin(), input.end(), output, delta, true, false);
|
|
}
|
|
else {
|
|
std::cerr << points.size() << std::endl;
|
|
}
|
|
}
|
|
emit(changed());
|
|
}
|
|
|
|
/*
|
|
* Qt Automatic Connections
|
|
* http://doc.trolltech.com/4.4/designer-using-a-component.html#automatic-connections
|
|
*
|
|
* setupUi(this) generates connections to the slots named
|
|
* "on_<action_name>_<signal_name>"
|
|
*/
|
|
|
|
|
|
void
|
|
MainWindow::on_actionClear_triggered()
|
|
{
|
|
emit(changed());
|
|
}
|
|
|
|
|
|
void
|
|
MainWindow::on_actionGenerate_triggered()
|
|
{
|
|
on_actionRecenter_triggered();
|
|
emit(changed());
|
|
}
|
|
|
|
|
|
|
|
void
|
|
MainWindow::on_actionLoadPoints_triggered()
|
|
{
|
|
QString fileName = QFileDialog::getOpenFileName(this,
|
|
tr("Open grid file"),
|
|
".");
|
|
if(! fileName.isEmpty()){
|
|
open(fileName);
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
MainWindow::open(QString fileName)
|
|
{
|
|
#if 0
|
|
// wait cursor
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
|
std::ifstream ifs(qPrintable(fileName));
|
|
|
|
runge_kutta_integrator = new Runge_kutta_integrator(integrating);
|
|
double iXSize, iYSize;
|
|
iXSize = iYSize = 512;
|
|
unsigned int x_samples, y_samples;
|
|
ifs >> x_samples;
|
|
ifs >> y_samples;
|
|
regular_grid = new Regular_grid(x_samples, y_samples, iXSize, iYSize);
|
|
/*fill the grid with the appropreate values*/
|
|
for (unsigned int i=0;i<x_samples;i++)
|
|
for (unsigned int j=0;j<y_samples;j++)
|
|
{
|
|
double xval, yval;
|
|
ifs >> xval;
|
|
ifs >> yval;
|
|
regular_grid->set_field(i, j, Vector(xval, yval));
|
|
}
|
|
ifs.close();
|
|
// default cursor
|
|
QApplication::restoreOverrideCursor();
|
|
this->addToRecentFiles(fileName);
|
|
// actionRecenter->trigger();
|
|
on_actionGenerate_triggered();
|
|
emit(changed());
|
|
|
|
#endif
|
|
}
|
|
|
|
void
|
|
MainWindow::on_actionSavePoints_triggered()
|
|
{
|
|
/*
|
|
QString fileName = QFileDialog::getSaveFileName(this,
|
|
tr("Save points"),
|
|
".");
|
|
if(! fileName.isEmpty()){
|
|
std::ofstream ofs(qPrintable(fileName));
|
|
|
|
}
|
|
*/
|
|
}
|
|
|
|
|
|
void
|
|
MainWindow::on_actionRecenter_triggered()
|
|
{
|
|
this->graphicsView->setSceneRect(isgi->boundingRect());
|
|
this->graphicsView->fitInView(isgi->boundingRect(), Qt::KeepAspectRatio);
|
|
}
|
|
|
|
|
|
#include "Snap_rounding_2.moc"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
app.setOrganizationDomain("geometryfactory.com");
|
|
app.setOrganizationName("GeometryFactory");
|
|
app.setApplicationName("Snap_rounding_2 demo");
|
|
|
|
// Import resources from libCGALQt4.
|
|
// See http://doc.trolltech.com/4.4/qdir.html#Q_INIT_RESOURCE
|
|
Q_INIT_RESOURCE(File);
|
|
Q_INIT_RESOURCE(Snap_rounding_2);
|
|
Q_INIT_RESOURCE(Input);
|
|
Q_INIT_RESOURCE(CGAL);
|
|
|
|
MainWindow mainWindow;
|
|
mainWindow.show();
|
|
return app.exec();
|
|
}
|