Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > 82ac505190c212a37e5a9f824939c992 > files > 194

vtk-examples-6.0.0-8.mga5.i586.rpm


#ifndef OpenGLScene_hpp
#define OpenGLScene_hpp

#include <QGraphicsScene>
#include <QtOpenGL/QGLContext>
#include <QStateMachine>
#include "vtkSmartPointer.h"
class vtkGenericOpenGLRenderWindow;
class vtkRenderer;
class QVTKInteractor;
class QVTKInteractorAdapter;
class vtkEventQtSlotConnect;

class OpenGLScene : public QGraphicsScene
{
  Q_OBJECT
  public:
    OpenGLScene(QGLContext* ctx, QObject* p=0);
    ~OpenGLScene();

  Q_SIGNALS:
    void enterState1();
    void enterState2();
    void enterState3();
    void enterState4();

  protected:
    QGLContext* mContext;
    QStateMachine machine;
    QGraphicsWidget* mGraphLayoutView;
    QGraphicsWidget* mTreeRingView;
    QGraphicsWidget* mWebView;
    int CurrentState;

    void mousePressEvent(QGraphicsSceneMouseEvent* e);

};

#endif