Enhanced edit mechanism, with "element picking" possibility

This commit is contained in:
Hombre
2016-03-03 00:25:10 +01:00
parent 98dd99103d
commit 06c26ff1b3
11 changed files with 706 additions and 288 deletions

View File

@@ -51,11 +51,11 @@ public:
void setEditProvider (EditDataProvider* provider);
// EditSubscriber interface
CursorShape getCursor(int objectID);
bool mouseOver(int modifierKey);
bool button1Pressed(int modifierKey);
CursorShape getCursor(const int objectID);
bool mouseOver(const int modifierKey);
bool button1Pressed(const int modifierKey);
bool button1Released();
bool drag1(int modifierKey);
bool drag1(const int modifierKey);
void switchOffEditMode ();
};