mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-05 17:46:28 +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();
|
||||
}
|
||||
|
||||
// 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();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue