include/reflex/ruby/view.h in reflexion-0.1.34 vs include/reflex/ruby/view.h in reflexion-0.1.35
- old
+ new
@@ -111,9 +111,18 @@
this->value.call(on_resize, Rucy::value(e));
else
Super::on_resize(e);
}
+ virtual void on_zoom (FrameEvent* e)
+ {
+ RUCY_SYM(on_zoom);
+ if (this->is_overridable())
+ this->value.call(on_zoom, Rucy::value(e));
+ else
+ Super::on_zoom(e);
+ }
+
virtual void on_rotate (FrameEvent* e)
{
RUCY_SYM(on_rotate);
if (this->is_overridable())
this->value.call(on_rotate, Rucy::value(e));