8 #ifndef __VRV_EDITOR_TOOLKIT_CMN_H__
9 #define __VRV_EDITOR_TOOLKIT_CMN_H__
18 #include "editortoolkit.h"
36 bool ParseEditorAction(
const std::string &json_editorAction,
bool commitOnly =
false);
43 bool Chain(jsonxx::Array actions);
45 bool ParseDeleteAction(jsonxx::Object param, std::string &elementId);
46 bool ParseDragAction(jsonxx::Object param, std::string &elementId,
int &x,
int &y);
47 bool ParseKeyDownAction(jsonxx::Object param, std::string &elementid,
int &key,
bool &shiftKey,
bool &ctrlKey);
48 bool ParseInsertAction(jsonxx::Object param, std::string &elementType, std::string &startid, std::string &endid);
49 bool ParseSetAction(jsonxx::Object param, std::string &elementId, std::string &attribute, std::string &value);
55 bool Delete(std::string &elementId);
57 bool Drag(std::string &elementId,
int x,
int y);
58 bool KeyDown(std::string &elementId,
int key,
bool shiftKey,
bool ctrlKey);
59 bool Insert(std::string &elementType, std::string
const &startid, std::string
const &endid);
60 bool Insert(std::string &elementType, std::string
const &startid);
61 bool Set(std::string &elementId, std::string
const &attribute, std::string
const &value);
64 bool InsertNote(
Object *
object);
66 bool DeleteNote(
Note *note);
68 Object *GetElement(std::string &elementId);
73 std::string m_chainedId;