Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/wm_window.h
| Show All 40 Lines | |||||
| /* *************** internal api ************** */ | /* *************** internal api ************** */ | ||||
| void wm_ghost_init (bContext *C); | void wm_ghost_init (bContext *C); | ||||
| void wm_ghost_exit(void); | void wm_ghost_exit(void); | ||||
| void wm_get_screensize(int *r_width, int *r_height); | void wm_get_screensize(int *r_width, int *r_height); | ||||
| void wm_get_desktopsize(int *r_width, int *r_height); | void wm_get_desktopsize(int *r_width, int *r_height); | ||||
| wmWindow *wm_window_new (bContext *C); | wmWindow *wm_window_new (bContext *C); | ||||
| wmWindow *wm_window_copy (bContext *C, wmWindow *win_src); | wmWindow *wm_window_copy (bContext *C, wmWindow *win_src, const bool duplicate_layout); | ||||
| wmWindow *wm_window_copy_test (bContext *C, wmWindow *win_src); | wmWindow *wm_window_copy_test (bContext *C, wmWindow *win_src, const bool duplicate_layout); | ||||
| void wm_window_free (bContext *C, wmWindowManager *wm, wmWindow *win); | void wm_window_free (bContext *C, wmWindowManager *wm, wmWindow *win); | ||||
| void wm_window_close (bContext *C, wmWindowManager *wm, wmWindow *win); | void wm_window_close (bContext *C, wmWindowManager *wm, wmWindow *win); | ||||
| void wm_window_title (wmWindowManager *wm, wmWindow *win); | void wm_window_title (wmWindowManager *wm, wmWindow *win); | ||||
| void wm_window_ghostwindows_ensure(wmWindowManager *wm); | void wm_window_ghostwindows_ensure(wmWindowManager *wm); | ||||
| void wm_window_ghostwindows_remove_invalid(bContext *C, wmWindowManager *wm); | void wm_window_ghostwindows_remove_invalid(bContext *C, wmWindowManager *wm); | ||||
| void wm_window_process_events (const bContext *C); | void wm_window_process_events (const bContext *C); | ||||
| void wm_window_process_events_nosleep(void); | void wm_window_process_events_nosleep(void); | ||||
| Show All 39 Lines | |||||