Show CSceneGraphView.h syntax highlighted
#ifndef __CSCENEGRAPHVIEW_H__
#define __CSCENEGRAPHVIEW_H__ 1
#include <osgIntrospectionToolKit/signalslib.hpp>
#include <QtCore/QtCore>
#include <QtGui/QtGui>
#include <osgDesigner/core/CValueView.h>
namespace osgDesigner
{
class CSceneGraphEditMenu;
class CSceneGraphView: public CValueView
{
Q_OBJECT
public:
CSceneGraphView();
virtual ~CSceneGraphView();
void contextMenuEvent(QContextMenuEvent *event);
CSceneGraphEditMenu * getEditMenu();
void createEditMenu();
public slots :
void updatePropertyViewWithItem(const QModelIndex& index);
void explore(const QModelIndex& index);
private:
CSceneGraphEditMenu * _editMenu;
};
}
#endif // ** __CSCENEGRAPHVIEW_H__ ** //
See more files for this project here