Verovio
Source code documentation
editortoolkit_cmn.h
1 // Name: editortoolkit_cmn.h
3 // Author: Juliette Regimbal
4 // Created: 04/06/2019
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_EDITOR_TOOLKIT_CMN_H__
9 #define __VRV_EDITOR_TOOLKIT_CMN_H__
10 
11 #include <cmath>
12 #include <string>
13 #include <utility>
14 
15 //--------------------------------------------------------------------------------
16 
17 #include "doc.h"
18 #include "editortoolkit.h"
19 #include "view.h"
20 
21 #include "jsonxx.h"
22 
23 namespace vrv {
24 
25 //--------------------------------------------------------------------------------
26 // EditorToolkitCMN
27 //--------------------------------------------------------------------------------
28 
30 public:
31  EditorToolkitCMN(Doc *doc, View *view) : EditorToolkit(doc, view) {}
32  bool ParseEditorAction(const std::string &json_editorAction) override
33  {
34  return ParseEditorAction(json_editorAction, false);
35  }
36  bool ParseEditorAction(const std::string &json_editorAction, bool commitOnly = false);
37  std::string EditInfo() override;
38 
39 protected:
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);
51 
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);
63 
64  bool InsertNote(Object *object);
65 
66  bool DeleteNote(Note *note);
67 
68  Object *GetElement(std::string &elementId);
69 
70 public:
71  //
72 protected:
73  std::string m_chainedId;
74 };
75 } // namespace vrv
76 
77 #endif
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::EditorToolkitCMN
Definition: editortoolkit_cmn.h:29
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::EditorToolkitCMN::Delete
bool Delete(std::string &elementId)
Experimental editor functions.
vrv::Note
This class models the MEI <note> element.
Definition: note.h:47
vrv::EditorToolkitCMN::EditInfo
std::string EditInfo() override
Get information on the last editor function used.
vrv::View
This class is a drawing context and corresponds to the view of a MVC design pattern.
Definition: view.h:105
vrv::EditorToolkitCMN::ParseEditorAction
bool ParseEditorAction(const std::string &json_editorAction) override
In child classes, this parses the provided editor action and then performs the correct action.
Definition: editortoolkit_cmn.h:32
vrv::EditorToolkitCMN::Chain
bool Chain(jsonxx::Array actions)
Parse JSON instructions for experimental editor functions.
vrv::EditorToolkit
Definition: editortoolkit.h:28