diff options
| author | Matthias Melcher <github@matthiasm.com> | 2022-11-01 20:45:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-01 20:45:31 +0100 |
| commit | 33f01ecb836f9bd70447fcd7ab0f7eda27d224db (patch) | |
| tree | 4f0c640c3199e34aa47962569d5eeafb930de051 /FL/Fl_Group.H | |
| parent | c570bd8f96902a2f290f7623b8cf3074ac8f97ca (diff) | |
Added Fl_Group::on_insert/on_remove/on_move (#527)
Diffstat (limited to 'FL/Fl_Group.H')
| -rw-r--r-- | FL/Fl_Group.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_Group.H b/FL/Fl_Group.H index 1f6240070..6441b6149 100644 --- a/FL/Fl_Group.H +++ b/FL/Fl_Group.H @@ -74,6 +74,9 @@ protected: void update_child(Fl_Widget& widget) const; Fl_Rect *bounds(); int *sizes(); // FLTK 1.3 compatibility + virtual int on_insert(Fl_Widget*, int); + virtual int on_move(int, int); + virtual void on_remove(int); public: |
