Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_event_system.cc
| Show First 20 Lines • Show All 626 Lines • ▼ Show 20 Lines | LISTBASE_FOREACH (wmWindow *, win, &wm->windows) { | ||||
| CTX_wm_window_set(C, win); | CTX_wm_window_set(C, win); | ||||
| # if 0 | # if 0 | ||||
| printf("notifier win %d screen %s cat %x\n", | printf("notifier win %d screen %s cat %x\n", | ||||
| win->winid, | win->winid, | ||||
| win->screen->id.name + 2, | win->screen->id.name + 2, | ||||
| note->category); | note->category); | ||||
| # endif | # endif | ||||
| ED_workspace_do_listen(C, note); | |||||
| ED_screen_do_listen(C, note); | ED_screen_do_listen(C, note); | ||||
| LISTBASE_FOREACH (ARegion *, region, &screen->regionbase) { | LISTBASE_FOREACH (ARegion *, region, &screen->regionbase) { | ||||
| wmRegionListenerParams region_params{}; | wmRegionListenerParams region_params{}; | ||||
| region_params.window = win; | region_params.window = win; | ||||
| region_params.area = nullptr; | region_params.area = nullptr; | ||||
| region_params.region = region; | region_params.region = region; | ||||
| region_params.scene = scene; | region_params.scene = scene; | ||||
| ▲ Show 20 Lines • Show All 5,477 Lines • Show Last 20 Lines | |||||