https://github.com/ialhashim/topo-blend
Revision 21d531f8716af7a35c83b7da9d9e23dc2034684c authored by ennetws on 05 December 2013, 10:18:06 UTC, committed by ennetws on 05 December 2013, 10:18:06 UTC
1 parent 72ceb06
Raw File
Tip revision: 21d531f8716af7a35c83b7da9d9e23dc2034684c authored by ennetws on 05 December 2013, 10:18:06 UTC
[nurbs_plugin] now able to retrieve graph in case of crashing when fitting.
Tip revision: 21d531f
Session.h
#pragma once

#include "DemoGlobal.h"
#include "Scene.h"
#include "ShapesGallery.h"
#include "Controls.h"
#include "Matcher.h"
#include "Blender.h"

class Session : public QObject
{
    Q_OBJECT
public:
    explicit Session(Scene * scene, ShapesGallery * gallery, Controls * control,
                     Matcher * matcher, Blender * blender, QObject *parent = 0);
    Scene * s;
    ShapesGallery * g;
    Controls * c;
    Matcher * m;
    Blender * b;

signals:
    void update();

public slots:
    void shapeChanged(int,QGraphicsItem*);

    void hideAll();
    void showSelect();
    void showMatch();
    void showCreate();
};
back to top