Improve access to C++ symbols.

For events, fonts, and callback reasons
This commit is contained in:
Matthias Melcher
2025-11-29 21:01:48 +01:00
parent 6aa95584e0
commit 70527b3bf0
2 changed files with 42 additions and 0 deletions
+1
View File
@@ -219,6 +219,7 @@ public:
: Fl_Widget(x, y, w, h, l), CanvasInterface(this) { }
~CanvasWidget() override { }
int handle(int event) override {
// puts(fl_eventname_str(event).c_str());
auto ret = cv_handle(event);
return ret ? ret : Fl_Widget::handle(event);
}