You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
631 B
C++
29 lines
631 B
C++
#ifndef CSV_RENDER_EDITMODE_H
|
|
#define CSV_RENDER_EDITMODE_H
|
|
|
|
#include "../widget/modebutton.hpp"
|
|
|
|
namespace CSVRender
|
|
{
|
|
class WorldspaceWidget;
|
|
|
|
class EditMode : public CSVWidget::ModeButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
WorldspaceWidget *mWorldspaceWidget;
|
|
unsigned int mMask;
|
|
|
|
public:
|
|
|
|
EditMode (WorldspaceWidget *worldspaceWidget, const QIcon& icon, unsigned int mask,
|
|
const QString& tooltip = "", QWidget *parent = 0);
|
|
|
|
unsigned int getInteractionMask() const;
|
|
|
|
virtual void activate (CSVWidget::SceneToolbar *toolbar);
|
|
};
|
|
}
|
|
|
|
#endif
|