Lines Matching refs:Event
250 Event event; in WndProc()
251 event.type = Event::EVENT_CLOSED; in WndProc()
266 Event event; in WndProc()
267 event.type = Event::EVENT_MOVED; in WndProc()
290 Event event; in WndProc()
291 event.type = Event::EVENT_RESIZED; in WndProc()
301 Event event; in WndProc()
302 event.type = Event::EVENT_GAINED_FOCUS; in WndProc()
309 Event event; in WndProc()
310 event.type = Event::EVENT_LOST_FOCUS; in WndProc()
322 Event event; in WndProc()
323 event.type = down ? Event::EVENT_KEY_PRESSED : Event::EVENT_KEY_RELEASED; in WndProc()
337 Event event; in WndProc()
338 event.type = Event::EVENT_MOUSE_WHEEL_MOVED; in WndProc()
347 Event event; in WndProc()
348 event.type = Event::EVENT_MOUSE_BUTTON_PRESSED; in WndProc()
358 Event event; in WndProc()
359 event.type = Event::EVENT_MOUSE_BUTTON_RELEASED; in WndProc()
370 Event event; in WndProc()
371 event.type = Event::EVENT_MOUSE_BUTTON_PRESSED; in WndProc()
382 Event event; in WndProc()
383 event.type = Event::EVENT_MOUSE_BUTTON_RELEASED; in WndProc()
395 Event event; in WndProc()
396 event.type = Event::EVENT_MOUSE_BUTTON_PRESSED; in WndProc()
407 Event event; in WndProc()
408 event.type = Event::EVENT_MOUSE_BUTTON_RELEASED; in WndProc()
420 Event event; in WndProc()
421 event.type = Event::EVENT_MOUSE_BUTTON_PRESSED; in WndProc()
433 Event event; in WndProc()
434 event.type = Event::EVENT_MOUSE_BUTTON_RELEASED; in WndProc()
448 Event event; in WndProc()
449 event.type = Event::EVENT_MOUSE_ENTERED; in WndProc()
456 Event event; in WndProc()
457 event.type = Event::EVENT_MOUSE_MOVED; in WndProc()
466 Event event; in WndProc()
467 event.type = Event::EVENT_MOUSE_LEFT; in WndProc()
475 Event testEvent; in WndProc()
476 testEvent.type = Event::EVENT_TEST; in WndProc()
819 void Win32Window::pushEvent(Event event) in pushEvent()
825 case Event::EVENT_RESIZED: in pushEvent()