Simplify editor events processing

This commit is contained in:
Loic Guegan 2023-01-02 08:10:43 +01:00
parent 31c332da9a
commit f5c83d0609
3 changed files with 17 additions and 9 deletions

View file

@ -71,15 +71,9 @@ private:
Refresh();
}
// Now handle event
bool redraw=false;
// Now handle generated events from last user inputs
Update();
for(const cgeditor::Event &e: status.Events){
HandleEvent(e);
redraw=true;
}
status.Events.clear();
if(redraw){
if(ProcessEvents()){
Refresh();
}
}

View file

@ -92,4 +92,14 @@ void CGEditor::DrawComponent(Component *c) {
}
}
bool CGEditor::ProcessEvents(){
bool processed=false;
for(const cgeditor::Event &e: status.Events){
HandleEvent(e);
processed=true;
}
status.Events.clear();
return processed;
}
} // namespace cgeditor

View file

@ -23,10 +23,14 @@ class CGEditor {
protected:
Status status;
///@brief Draw the Chess Game Editor on the canvas using current status
/// @brief Draw the Chess Game Editor on the canvas using current status
void Draw();
/// @brief Process the events generated during the drawing
bool ProcessEvents();
/// @brief Draw an element on the canvas
virtual void DrawElement(const Element &) = 0;
/// @brief Handle event that occured during editor drawing
virtual void HandleEvent(const Event &) = 0;
public:
CGEditor();