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