Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <eiseljulian@gmail.com>2018-05-23 23:38:25 +0300
committerJulian Eisel <eiseljulian@gmail.com>2018-05-23 23:38:25 +0300
commit6f20fcd5984a47baee9ff440e9e59584fccd1e59 (patch)
tree5b81aad5b91eb0893a4e0b9276ae2819e66cb631 /source/blender/editors/screen/workspace_layout_edit.c
parent7b58073dc09c7241dfa08071323dfb7af3646e80 (diff)
UI: Global "Status-bar" Area (WIP)
* Add horizontal bar at bottom of all non-temp windows, similar to the Top-bar. * Status-bar is hidden in UI-less fullscreen mode * Current contents are preliminary and based on T54861: ** Left: Current file-path if needed. "(Modified)" note if file was changed. ** Center: Scene statistics (like in 2.7 Info Editor). ** Right: Progress-bars and reports * Internally managed as own "STATUSBAR" editor-type (hidden in UI). * Like with the Top-bar, Status-bar data and SDNA writing is disabled. * Most changes in low-level screen/area code are to support layout bounds that differ from window bounds. Design task: T54861 Main changes approved by @brecht.
Diffstat (limited to 'source/blender/editors/screen/workspace_layout_edit.c')
-rw-r--r--source/blender/editors/screen/workspace_layout_edit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/screen/workspace_layout_edit.c b/source/blender/editors/screen/workspace_layout_edit.c
index a6f991d4bbe..6285f031836 100644
--- a/source/blender/editors/screen/workspace_layout_edit.c
+++ b/source/blender/editors/screen/workspace_layout_edit.c
@@ -50,13 +50,13 @@ WorkSpaceLayout *ED_workspace_layout_add(
wmWindow *win,
const char *name)
{
- const int screen_size_x = WM_window_screen_pixels_x(win);
- const int screen_size_y = WM_window_screen_pixels_y(win);
+ bScreen *screen;
+ rcti screen_rect;
- bScreen *screen = screen_add(name, screen_size_x, screen_size_y);
- WorkSpaceLayout *layout = BKE_workspace_layout_add(workspace, screen, name);
+ WM_window_screen_rect_calc(win, &screen_rect);
+ screen = screen_add(name, &screen_rect);
- return layout;
+ return BKE_workspace_layout_add(workspace, screen, name);
}
WorkSpaceLayout *ED_workspace_layout_duplicate(