processEvents
Parameters
- self:*TextLayoutWidget
- *TextLayoutWidget
Source
Implementation
pub fn processEvents(self: *TextLayoutWidget) void {
const evts = dvui.events();
for (evts) |*e| {
if (!self.matchEvent(e))
continue;
self.processEvent(e);
}
}