Blender Git Loki
Git Commits -> Revision 4e22285
Revision 4e22285 by Brecht Van Lommel (master) July 4, 2018, 16:40 (GMT) |
Workspaces: add main and child windows. * Main windows show a topbar and statusbar, and select a workspace and scene. They are created with Window > New Main Window. * Child windows do not show a topbar or statusbar. These follow the workspace and scene of their parent main window. Created with Window > New Window or View > Duplicate Area into New Window. * The purpose of this change is to support multi monitor setups where you just want to put more editors on the other monitors. Without multiple topbars and statusbars, working within a single workspace and scene. Creating multiple main windows is intended to be a concious choice to do different tasks in different workspaces and scenes. * Note these changes do not currently affect how the operating system treats the windows. * When changing the workspace, the layout in all child windows changes. This makes sense if we consider child windows to be just a way to extend the main window across more monitors. In some case it may be useful to keep the same layout though, we can add an option for this depending on user feedback. |
Commit Details:
Full Hash: 4e2228525fc9bbcff58e315c5e3bbc193cd63a0b
Parent Commit: 2bef8ca
Lines Changed: +207, -135
21 Modified Paths:
/release/scripts/startup/bl_ui/space_topbar.py (+4, -0) (Diff)
/source/blender/blenkernel/intern/scene.c (+1, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+3, -1) (Diff)
/source/blender/editors/include/ED_scene.h (+1, -4) (Diff)
/source/blender/editors/include/ED_screen.h (+1, -4) (Diff)
/source/blender/editors/scene/scene_edit.c (+7, -33) (Diff)
/source/blender/editors/screen/screen_edit.c (+42, -7) (Diff)
/source/blender/editors/screen/screen_ops.c (+1, -1) (Diff)
/source/blender/editors/screen/workspace_edit.c (+2, -2) (Diff)
/source/blender/editors/space_outliner/outliner_select.c (+3, -3) (Diff)
/source/blender/editors/space_outliner/outliner_tools.c (+3, -3) (Diff)
/source/blender/makesdna/DNA_windowmanager_types.h (+4, -2) (Diff)
/source/blender/makesrna/intern/rna_main_api.c (+1, -1) (Diff)
/source/blender/makesrna/intern/rna_wm.c (+4, -1) (Diff)
/source/blender/windowmanager/intern/wm.c (+5, -4) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+1, -1) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+13, -2) (Diff)
/source/blender/windowmanager/intern/wm_stereo.c (+2, -2) (Diff)
/source/blender/windowmanager/intern/wm_window.c (+103, -58) (Diff)
/source/blender/windowmanager/WM_api.h (+2, -2) (Diff)
/source/blender/windowmanager/wm_window.h (+4, -3) (Diff)
/source/blender/blenkernel/intern/scene.c (+1, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+3, -1) (Diff)
/source/blender/editors/include/ED_scene.h (+1, -4) (Diff)
/source/blender/editors/include/ED_screen.h (+1, -4) (Diff)
/source/blender/editors/scene/scene_edit.c (+7, -33) (Diff)
/source/blender/editors/screen/screen_edit.c (+42, -7) (Diff)
/source/blender/editors/screen/screen_ops.c (+1, -1) (Diff)
/source/blender/editors/screen/workspace_edit.c (+2, -2) (Diff)
/source/blender/editors/space_outliner/outliner_select.c (+3, -3) (Diff)
/source/blender/editors/space_outliner/outliner_tools.c (+3, -3) (Diff)
/source/blender/makesdna/DNA_windowmanager_types.h (+4, -2) (Diff)
/source/blender/makesrna/intern/rna_main_api.c (+1, -1) (Diff)
/source/blender/makesrna/intern/rna_wm.c (+4, -1) (Diff)
/source/blender/windowmanager/intern/wm.c (+5, -4) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+1, -1) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+13, -2) (Diff)
/source/blender/windowmanager/intern/wm_stereo.c (+2, -2) (Diff)
/source/blender/windowmanager/intern/wm_window.c (+103, -58) (Diff)
/source/blender/windowmanager/WM_api.h (+2, -2) (Diff)
/source/blender/windowmanager/wm_window.h (+4, -3) (Diff)