mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
Simplify editor events processing
This commit is contained in:
parent
31c332da9a
commit
f5c83d0609
3 changed files with 17 additions and 9 deletions
|
@ -71,15 +71,9 @@ private:
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now handle event
|
// Now handle generated events from last user inputs
|
||||||
bool redraw=false;
|
|
||||||
Update();
|
Update();
|
||||||
for(const cgeditor::Event &e: status.Events){
|
if(ProcessEvents()){
|
||||||
HandleEvent(e);
|
|
||||||
redraw=true;
|
|
||||||
}
|
|
||||||
status.Events.clear();
|
|
||||||
if(redraw){
|
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
} // namespace cgeditor
|
|
@ -23,10 +23,14 @@ class CGEditor {
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
Status status;
|
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();
|
void Draw();
|
||||||
|
/// @brief Process the events generated during the drawing
|
||||||
|
bool ProcessEvents();
|
||||||
/// @brief Draw an element on the canvas
|
/// @brief Draw an element on the canvas
|
||||||
virtual void DrawElement(const Element &) = 0;
|
virtual void DrawElement(const Element &) = 0;
|
||||||
|
/// @brief Handle event that occured during editor drawing
|
||||||
|
virtual void HandleEvent(const Event &) = 0;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CGEditor();
|
CGEditor();
|
||||||
|
|
Loading…
Add table
Reference in a new issue