Show CPropertiesWidget.h syntax highlighted
#ifndef __CPROPERTIESWIDGET_H__
#define __CPROPERTIESWIDGET_H__ 1
#include <osgIntrospectionToolKit/signalslib.hpp>
#include <QtGui/QtGui>
#include <QtCore/QtCore>
#include <osgDesigner/core/CPropertiesModel.h>
#include <osgDesigner/core/CPropertiesView.h>
namespace osgDesigner
{
class CPropertiesWidget: public QWidget
{
Q_OBJECT
public:
CPropertiesWidget();
virtual ~CPropertiesWidget();
public:
CPropertiesView& view()
{ return (_view); }
const CPropertiesView& view() const
{ return (_view); }
CPropertiesModel* model()
{ return (_model); }
const CPropertiesModel* model() const
{ return (_model); }
private:
CPropertiesView _view;
CPropertiesModel* _model;
};
}
#endif // ** __CPROPERTIESWIDGET_H__ ** //
See more files for this project here