2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2008-12-13 19:00:54 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
2018-06-01 18:19:39 +02:00
|
|
|
* of the License, or (at your option) any later version.
|
2008-12-13 19:00:54 +00:00
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2008-12-13 19:00:54 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup spbuttons
|
2011-02-27 20:29:51 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
|
|
#include "BLI_blenlib.h"
|
2011-01-07 18:36:47 +00:00
|
|
|
#include "BLI_utildefines.h"
|
2008-12-13 19:00:54 +00:00
|
|
|
|
2008-12-18 02:56:48 +00:00
|
|
|
#include "BKE_context.h"
|
2008-12-13 19:00:54 +00:00
|
|
|
#include "BKE_screen.h"
|
|
|
|
|
|
2011-02-14 17:55:27 +00:00
|
|
|
#include "ED_space_api.h"
|
2008-12-13 19:00:54 +00:00
|
|
|
#include "ED_screen.h"
|
|
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
|
#include "WM_types.h"
|
2017-11-13 19:43:34 +11:00
|
|
|
#include "WM_message.h"
|
2008-12-13 19:00:54 +00:00
|
|
|
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
#include "RNA_access.h"
|
2018-05-31 21:45:26 +02:00
|
|
|
#include "RNA_define.h"
|
|
|
|
|
#include "RNA_enum_types.h"
|
|
|
|
|
|
|
|
|
|
#include "UI_resources.h"
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
|
2018-06-08 17:29:29 +02:00
|
|
|
#include "GPU_glew.h"
|
|
|
|
|
|
2012-05-08 15:30:00 +00:00
|
|
|
#include "buttons_intern.h" /* own include */
|
2008-12-13 19:00:54 +00:00
|
|
|
|
|
|
|
|
/* ******************** default callbacks for buttons space ***************** */
|
|
|
|
|
|
2018-04-21 19:30:56 +02:00
|
|
|
static SpaceLink *buttons_new(const ScrArea *UNUSED(area), const Scene *UNUSED(scene))
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
|
|
|
|
ARegion *ar;
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2019-02-16 10:44:15 +11:00
|
|
|
sbuts = MEM_callocN(sizeof(SpaceProperties), "initbuts");
|
|
|
|
|
sbuts->spacetype = SPACE_PROPERTIES;
|
2008-12-13 19:00:54 +00:00
|
|
|
|
2018-05-15 14:40:01 +02:00
|
|
|
sbuts->mainb = sbuts->mainbuser = BCONTEXT_OBJECT;
|
|
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
/* header */
|
2012-05-08 15:30:00 +00:00
|
|
|
ar = MEM_callocN(sizeof(ARegion), "header for buts");
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
BLI_addtail(&sbuts->regionbase, ar);
|
2012-05-08 15:30:00 +00:00
|
|
|
ar->regiontype = RGN_TYPE_HEADER;
|
2018-12-14 09:47:10 +11:00
|
|
|
ar->alignment = (U.uiflag & USER_HEADER_BOTTOM) ? RGN_ALIGN_BOTTOM : RGN_ALIGN_TOP;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
/* navigation bar */
|
|
|
|
|
ar = MEM_callocN(sizeof(ARegion), "navigation bar for buts");
|
|
|
|
|
|
|
|
|
|
BLI_addtail(&sbuts->regionbase, ar);
|
|
|
|
|
ar->regiontype = RGN_TYPE_NAV_BAR;
|
|
|
|
|
ar->alignment = RGN_ALIGN_LEFT;
|
|
|
|
|
|
2009-06-07 13:36:12 +00:00
|
|
|
#if 0
|
2015-11-28 17:14:45 +01:00
|
|
|
/* context region */
|
|
|
|
|
ar = MEM_callocN(sizeof(ARegion), "context region for buts");
|
2009-06-07 13:36:12 +00:00
|
|
|
BLI_addtail(&sbuts->regionbase, ar);
|
2012-05-08 15:30:00 +00:00
|
|
|
ar->regiontype = RGN_TYPE_CHANNELS;
|
|
|
|
|
ar->alignment = RGN_ALIGN_TOP;
|
2009-06-07 13:36:12 +00:00
|
|
|
#endif
|
|
|
|
|
|
2015-11-28 17:14:45 +01:00
|
|
|
/* main region */
|
|
|
|
|
ar = MEM_callocN(sizeof(ARegion), "main region for buts");
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
BLI_addtail(&sbuts->regionbase, ar);
|
2012-05-08 15:30:00 +00:00
|
|
|
ar->regiontype = RGN_TYPE_WINDOW;
|
2013-06-19 19:37:17 +00:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
return (SpaceLink *)sbuts;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* not spacelink itself */
|
|
|
|
|
static void buttons_free(SpaceLink *sl)
|
2018-06-04 09:31:30 +02:00
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = (SpaceProperties *) sl;
|
2008-12-13 19:00:54 +00:00
|
|
|
|
2012-03-24 06:38:07 +00:00
|
|
|
if (sbuts->path)
|
2009-06-03 23:33:56 +00:00
|
|
|
MEM_freeN(sbuts->path);
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2012-03-24 06:38:07 +00:00
|
|
|
if (sbuts->texuser) {
|
2012-05-08 15:30:00 +00:00
|
|
|
ButsContextTexture *ct = sbuts->texuser;
|
2011-11-08 13:07:16 +00:00
|
|
|
BLI_freelistN(&ct->users);
|
|
|
|
|
MEM_freeN(ct);
|
|
|
|
|
}
|
2009-06-03 23:33:56 +00:00
|
|
|
}
|
2008-12-13 19:00:54 +00:00
|
|
|
|
|
|
|
|
/* spacetype; init callback */
|
2018-07-06 13:46:26 +02:00
|
|
|
static void buttons_init(struct wmWindowManager *UNUSED(wm), ScrArea *UNUSED(sa))
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static SpaceLink *buttons_duplicate(SpaceLink *sl)
|
|
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbutsn = MEM_dupallocN(sl);
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
/* clear or remove stuff from old */
|
2012-05-08 15:30:00 +00:00
|
|
|
sbutsn->path = NULL;
|
|
|
|
|
sbutsn->texuser = NULL;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
return (SpaceLink *)sbutsn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
2015-11-28 17:14:45 +01:00
|
|
|
static void buttons_main_region_init(wmWindowManager *wm, ARegion *ar)
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2009-09-17 21:36:02 +00:00
|
|
|
wmKeyMap *keymap;
|
2009-07-23 20:40:51 +00:00
|
|
|
|
2009-05-19 17:13:33 +00:00
|
|
|
ED_region_panels_init(wm, ar);
|
2009-07-23 20:40:51 +00:00
|
|
|
|
2019-02-16 10:44:15 +11:00
|
|
|
keymap = WM_keymap_ensure(wm->defaultconf, "Property Editor", SPACE_PROPERTIES, 0);
|
2009-07-23 20:40:51 +00:00
|
|
|
WM_event_add_keymap_handler(&ar->handlers, keymap);
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
2019-02-16 10:44:15 +11:00
|
|
|
static void buttons_main_region_layout_properties(const bContext *C, SpaceProperties *sbuts, ARegion *ar)
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2009-06-03 23:33:56 +00:00
|
|
|
buttons_context_compute(C, sbuts);
|
|
|
|
|
|
2018-05-31 21:39:48 +02:00
|
|
|
const char *contexts[2] = {NULL, NULL};
|
|
|
|
|
|
|
|
|
|
switch (sbuts->mainb) {
|
|
|
|
|
case BCONTEXT_SCENE:
|
|
|
|
|
contexts[0] = "scene";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_RENDER:
|
|
|
|
|
contexts[0] = "render";
|
|
|
|
|
break;
|
2018-11-02 11:56:41 +11:00
|
|
|
case BCONTEXT_OUTPUT:
|
|
|
|
|
contexts[0] = "output";
|
|
|
|
|
break;
|
2018-05-31 21:39:48 +02:00
|
|
|
case BCONTEXT_VIEW_LAYER:
|
|
|
|
|
contexts[0] = "view_layer";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_WORLD:
|
|
|
|
|
contexts[0] = "world";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_OBJECT:
|
|
|
|
|
contexts[0] = "object";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_DATA:
|
|
|
|
|
contexts[0] = "data";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_MATERIAL:
|
|
|
|
|
contexts[0] = "material";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_TEXTURE:
|
|
|
|
|
contexts[0] = "texture";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_PARTICLE:
|
|
|
|
|
contexts[0] = "particle";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_PHYSICS:
|
|
|
|
|
contexts[0] = "physics";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_BONE:
|
|
|
|
|
contexts[0] = "bone";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_MODIFIER:
|
|
|
|
|
contexts[0] = "modifier";
|
|
|
|
|
break;
|
2018-07-31 10:22:19 +02:00
|
|
|
case BCONTEXT_SHADERFX:
|
|
|
|
|
contexts[0] = "shaderfx";
|
|
|
|
|
break;
|
2018-05-31 21:39:48 +02:00
|
|
|
case BCONTEXT_CONSTRAINT:
|
|
|
|
|
contexts[0] = "constraint";
|
|
|
|
|
break;
|
|
|
|
|
case BCONTEXT_BONE_CONSTRAINT:
|
|
|
|
|
contexts[0] = "bone_constraint";
|
|
|
|
|
break;
|
2018-06-08 16:30:56 +02:00
|
|
|
case BCONTEXT_TOOL:
|
|
|
|
|
contexts[0] = "tool";
|
|
|
|
|
break;
|
2018-05-31 21:39:48 +02:00
|
|
|
}
|
|
|
|
|
|
2018-07-06 13:46:26 +02:00
|
|
|
const bool vertical = true;
|
2018-06-11 19:30:48 +02:00
|
|
|
ED_region_panels_layout_ex(C, ar, contexts, sbuts->mainb, vertical);
|
2018-05-31 21:45:26 +02:00
|
|
|
}
|
|
|
|
|
|
2018-07-06 13:46:26 +02:00
|
|
|
static void buttons_main_region_layout_tool(const bContext *C, ARegion *ar)
|
2018-05-31 21:45:26 +02:00
|
|
|
{
|
|
|
|
|
const WorkSpace *workspace = CTX_wm_workspace(C);
|
2018-07-31 10:22:19 +02:00
|
|
|
const int mode = CTX_data_mode_enum(C);
|
|
|
|
|
|
2018-08-30 13:06:03 +10:00
|
|
|
const char *contexts_base[5] = {NULL};
|
2018-08-30 08:55:34 +10:00
|
|
|
contexts_base[0] = ".active_tool";
|
|
|
|
|
const char **contexts = &contexts_base[1];
|
|
|
|
|
|
2018-05-31 21:45:26 +02:00
|
|
|
if (workspace->tools_space_type == SPACE_VIEW3D) {
|
|
|
|
|
switch (mode) {
|
|
|
|
|
case CTX_MODE_EDIT_MESH:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".mesh_edit");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_EDIT_CURVE:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".curve_edit");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_EDIT_SURFACE:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".curve_edit");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_EDIT_TEXT:
|
2018-07-03 18:41:06 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".text_edit");
|
2018-05-31 21:45:26 +02:00
|
|
|
break;
|
|
|
|
|
case CTX_MODE_EDIT_ARMATURE:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".armature_edit");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_EDIT_METABALL:
|
2018-07-03 18:41:06 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".mball_edit");
|
2018-05-31 21:45:26 +02:00
|
|
|
break;
|
|
|
|
|
case CTX_MODE_EDIT_LATTICE:
|
2018-07-03 18:41:06 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".lattice_edit");
|
2018-05-31 21:45:26 +02:00
|
|
|
break;
|
|
|
|
|
case CTX_MODE_POSE:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".posemode");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_SCULPT:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".paint_common", ".sculpt_mode");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_PAINT_WEIGHT:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".paint_common", ".weightpaint");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_PAINT_VERTEX:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".paint_common", ".vertexpaint");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_PAINT_TEXTURE:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".paint_common", ".imagepaint");
|
|
|
|
|
break;
|
|
|
|
|
case CTX_MODE_PARTICLE:
|
2018-08-02 22:10:38 +10:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".paint_common", ".particlemode");
|
2018-05-31 21:45:26 +02:00
|
|
|
break;
|
|
|
|
|
case CTX_MODE_OBJECT:
|
2018-07-03 18:41:06 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".objectmode");
|
2018-05-31 21:45:26 +02:00
|
|
|
break;
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_PAINT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_paint");
|
|
|
|
|
break;
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_SCULPT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_sculpt");
|
|
|
|
|
break;
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_WEIGHT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_weight");
|
|
|
|
|
break;
|
2018-05-31 21:45:26 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (workspace->tools_space_type == SPACE_IMAGE) {
|
2018-10-25 11:13:22 +11:00
|
|
|
switch (workspace->tools_mode) {
|
|
|
|
|
case SI_MODE_VIEW:
|
|
|
|
|
break;
|
|
|
|
|
case SI_MODE_PAINT:
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".paint_common_2d", ".imagepaint_2d");
|
|
|
|
|
break;
|
|
|
|
|
case SI_MODE_MASK:
|
|
|
|
|
break;
|
|
|
|
|
case SI_MODE_UV:
|
|
|
|
|
if (mode == CTX_MODE_EDIT_MESH) {
|
|
|
|
|
ARRAY_SET_ITEMS(contexts, ".uv_sculpt");
|
|
|
|
|
}
|
|
|
|
|
break;
|
2018-10-05 14:53:18 +10:00
|
|
|
}
|
2018-05-31 21:45:26 +02:00
|
|
|
}
|
2018-06-08 17:29:29 +02:00
|
|
|
|
2018-07-31 10:22:19 +02:00
|
|
|
/* for grease pencil we don't use tool system yet, so we need check outside
|
|
|
|
|
* workspace->tools_space_type because this value is not available
|
|
|
|
|
*/
|
|
|
|
|
switch (mode) {
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_PAINT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_paint");
|
|
|
|
|
break;
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_SCULPT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_sculpt");
|
|
|
|
|
break;
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_WEIGHT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_weight");
|
|
|
|
|
break;
|
2018-12-14 16:45:57 +01:00
|
|
|
case CTX_MODE_EDIT_GPENCIL:
|
2018-07-31 10:22:19 +02:00
|
|
|
ARRAY_SET_ITEMS(contexts, ".greasepencil_edit");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-30 13:06:03 +10:00
|
|
|
int i = 0;
|
|
|
|
|
while (contexts_base[i]) {
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
BLI_assert(i < ARRAY_SIZE(contexts_base));
|
|
|
|
|
contexts_base[i] = ".workspace";
|
|
|
|
|
|
2018-07-06 13:46:26 +02:00
|
|
|
const bool vertical = true;
|
2018-08-30 08:55:34 +10:00
|
|
|
ED_region_panels_layout_ex(C, ar, contexts_base, -1, vertical);
|
2018-05-31 21:45:26 +02:00
|
|
|
}
|
|
|
|
|
|
2018-06-11 18:36:00 +02:00
|
|
|
static void buttons_main_region_layout(const bContext *C, ARegion *ar)
|
2018-05-31 21:45:26 +02:00
|
|
|
{
|
|
|
|
|
/* draw entirely, view changes should be handled here */
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = CTX_wm_space_properties(C);
|
2018-05-31 21:45:26 +02:00
|
|
|
|
2018-06-08 16:30:56 +02:00
|
|
|
if (sbuts->mainb == BCONTEXT_TOOL) {
|
2018-07-06 13:46:26 +02:00
|
|
|
buttons_main_region_layout_tool(C, ar);
|
2018-05-31 21:45:26 +02:00
|
|
|
}
|
2018-06-08 16:30:56 +02:00
|
|
|
else {
|
2018-06-11 18:36:00 +02:00
|
|
|
buttons_main_region_layout_properties(C, sbuts, ar);
|
2018-06-08 16:30:56 +02:00
|
|
|
}
|
2009-04-03 23:30:32 +00:00
|
|
|
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->mainbo = sbuts->mainb;
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
Main Workspace Integration
This commit does the main integration of workspaces, which is a design we agreed on during the 2.8 UI workshop (see https://wiki.blender.org/index.php/Dev:2.8/UI/Workshop_Writeup)
Workspaces should generally be stable, I'm not aware of any remaining bugs (or I've forgotten them :) ). If you find any, let me know!
(Exception: mode switching button might get out of sync with actual mode in some cases, would consider that a limitation/ToDo. Needs to be resolved at some point.)
== Main Changes/Features
* Introduces the new Workspaces as data-blocks.
* Allow storing a number of custom workspaces as part of the user configuration. Needs further work to allow adding and deleting individual workspaces.
* Bundle a default workspace configuration with Blender (current screen-layouts converted to workspaces).
* Pressing button to add a workspace spawns a menu to select between "Duplicate Current" and the workspaces from the user configuration. If no workspaces are stored in the user configuration, the default workspaces are listed instead.
* Store screen-layouts (`bScreen`) per workspace.
* Store an active screen-layout per workspace. Changing the workspace will enable this layout.
* Store active mode in workspace. Changing the workspace will also enter the mode of the new workspace. (Note that we still store the active mode in the object, moving this completely to workspaces is a separate project.)
* Store an active render layer per workspace.
* Moved mode switch from 3D View header to Info Editor header.
* Store active scene in window (not directly workspace related, but overlaps quite a bit).
* Removed 'Use Global Scene' User Preference option.
* Compatibility with old files - a new workspace is created for every screen-layout of old files. Old Blender versions should be able to read files saved with workspace support as well.
* Default .blend only contains one workspace ("General").
* Support appending workspaces.
Opening files without UI and commandline rendering should work fine.
Note that the UI is temporary! We plan to introduce a new global topbar
that contains the workspace options and tabs for switching workspaces.
== Technical Notes
* Workspaces are data-blocks.
* Adding and removing `bScreen`s should be done through `ED_workspace_layout` API now.
* A workspace can be active in multiple windows at the same time.
* The mode menu (which is now in the Info Editor header) doesn't display "Grease Pencil Edit" mode anymore since its availability depends on the active editor. Will be fixed by making Grease Pencil an own object type (as planned).
* The button to change the active workspace object mode may get out of sync with the mode of the active object. Will either be resolved by moving mode out of object data, or we'll disable workspace modes again (there's a `#define USE_WORKSPACE_MODE` for that).
* Screen-layouts (`bScreen`) are IDs and thus stored in a main list-base. Had to add a wrapper `WorkSpaceLayout` so we can store them in a list-base within workspaces, too. On the long run we could completely replace `bScreen` by workspace structs.
* `WorkSpace` types use some special compiler trickery to allow marking structs and struct members as private. BKE_workspace API should be used for accessing those.
* Added scene operators `SCENE_OT_`. Was previously done through screen operators.
== BPY API Changes
* Removed `Screen.scene`, added `Window.scene`
* Removed `UserPreferencesView.use_global_scene`
* Added `Context.workspace`, `Window.workspace` and `BlendData.workspaces`
* Added `bpy.types.WorkSpace` containing `screens`, `object_mode` and `render_layer`
* Added Screen.layout_name for the layout name that'll be displayed in the UI (may differ from internal name)
== What's left?
* There are a few open design questions (T50521). We should find the needed answers and implement them.
* Allow adding and removing individual workspaces from workspace configuration (needs UI design).
* Get the override system ready and support overrides per workspace.
* Support custom UI setups as part of workspaces (hidden panels, hidden buttons, customizable toolbars, etc).
* Allow enabling add-ons per workspace.
* Support custom workspace keymaps.
* Remove special exception for workspaces in linking code (so they're always appended, never linked). Depends on a few things, so best to solve later.
* Get the topbar done.
* Workspaces need a proper icon, current one is just a placeholder :)
Reviewed By: campbellbarton, mont29
Tags: #user_interface, #bf_blender_2.8
Maniphest Tasks: T50521
Differential Revision: https://developer.blender.org/D2451
2017-06-01 19:56:58 +02:00
|
|
|
static void buttons_main_region_listener(
|
2018-07-04 15:14:57 +02:00
|
|
|
wmWindow *UNUSED(win), ScrArea *UNUSED(sa), ARegion *ar, wmNotifier *wmn,
|
Main Workspace Integration
This commit does the main integration of workspaces, which is a design we agreed on during the 2.8 UI workshop (see https://wiki.blender.org/index.php/Dev:2.8/UI/Workshop_Writeup)
Workspaces should generally be stable, I'm not aware of any remaining bugs (or I've forgotten them :) ). If you find any, let me know!
(Exception: mode switching button might get out of sync with actual mode in some cases, would consider that a limitation/ToDo. Needs to be resolved at some point.)
== Main Changes/Features
* Introduces the new Workspaces as data-blocks.
* Allow storing a number of custom workspaces as part of the user configuration. Needs further work to allow adding and deleting individual workspaces.
* Bundle a default workspace configuration with Blender (current screen-layouts converted to workspaces).
* Pressing button to add a workspace spawns a menu to select between "Duplicate Current" and the workspaces from the user configuration. If no workspaces are stored in the user configuration, the default workspaces are listed instead.
* Store screen-layouts (`bScreen`) per workspace.
* Store an active screen-layout per workspace. Changing the workspace will enable this layout.
* Store active mode in workspace. Changing the workspace will also enter the mode of the new workspace. (Note that we still store the active mode in the object, moving this completely to workspaces is a separate project.)
* Store an active render layer per workspace.
* Moved mode switch from 3D View header to Info Editor header.
* Store active scene in window (not directly workspace related, but overlaps quite a bit).
* Removed 'Use Global Scene' User Preference option.
* Compatibility with old files - a new workspace is created for every screen-layout of old files. Old Blender versions should be able to read files saved with workspace support as well.
* Default .blend only contains one workspace ("General").
* Support appending workspaces.
Opening files without UI and commandline rendering should work fine.
Note that the UI is temporary! We plan to introduce a new global topbar
that contains the workspace options and tabs for switching workspaces.
== Technical Notes
* Workspaces are data-blocks.
* Adding and removing `bScreen`s should be done through `ED_workspace_layout` API now.
* A workspace can be active in multiple windows at the same time.
* The mode menu (which is now in the Info Editor header) doesn't display "Grease Pencil Edit" mode anymore since its availability depends on the active editor. Will be fixed by making Grease Pencil an own object type (as planned).
* The button to change the active workspace object mode may get out of sync with the mode of the active object. Will either be resolved by moving mode out of object data, or we'll disable workspace modes again (there's a `#define USE_WORKSPACE_MODE` for that).
* Screen-layouts (`bScreen`) are IDs and thus stored in a main list-base. Had to add a wrapper `WorkSpaceLayout` so we can store them in a list-base within workspaces, too. On the long run we could completely replace `bScreen` by workspace structs.
* `WorkSpace` types use some special compiler trickery to allow marking structs and struct members as private. BKE_workspace API should be used for accessing those.
* Added scene operators `SCENE_OT_`. Was previously done through screen operators.
== BPY API Changes
* Removed `Screen.scene`, added `Window.scene`
* Removed `UserPreferencesView.use_global_scene`
* Added `Context.workspace`, `Window.workspace` and `BlendData.workspaces`
* Added `bpy.types.WorkSpace` containing `screens`, `object_mode` and `render_layer`
* Added Screen.layout_name for the layout name that'll be displayed in the UI (may differ from internal name)
== What's left?
* There are a few open design questions (T50521). We should find the needed answers and implement them.
* Allow adding and removing individual workspaces from workspace configuration (needs UI design).
* Get the override system ready and support overrides per workspace.
* Support custom UI setups as part of workspaces (hidden panels, hidden buttons, customizable toolbars, etc).
* Allow enabling add-ons per workspace.
* Support custom workspace keymaps.
* Remove special exception for workspaces in linking code (so they're always appended, never linked). Depends on a few things, so best to solve later.
* Get the topbar done.
* Workspaces need a proper icon, current one is just a placeholder :)
Reviewed By: campbellbarton, mont29
Tags: #user_interface, #bf_blender_2.8
Maniphest Tasks: T50521
Differential Revision: https://developer.blender.org/D2451
2017-06-01 19:56:58 +02:00
|
|
|
const Scene *UNUSED(scene))
|
|
|
|
|
{
|
|
|
|
|
/* context changes */
|
|
|
|
|
switch (wmn->category) {
|
|
|
|
|
case NC_SCREEN:
|
|
|
|
|
if (ELEM(wmn->data, ND_LAYER)) {
|
|
|
|
|
ED_region_tag_redraw(ar);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-14 17:55:27 +00:00
|
|
|
static void buttons_operatortypes(void)
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2018-06-27 17:07:02 +02:00
|
|
|
WM_operatortype_append(BUTTONS_OT_context_menu);
|
2009-07-28 18:51:06 +00:00
|
|
|
WM_operatortype_append(BUTTONS_OT_file_browse);
|
2011-06-16 15:28:39 +00:00
|
|
|
WM_operatortype_append(BUTTONS_OT_directory_browse);
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-14 17:55:27 +00:00
|
|
|
static void buttons_keymap(struct wmKeyConfig *keyconf)
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
WM_keymap_ensure(keyconf, "Property Editor", SPACE_PROPERTIES, 0);
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
2015-11-28 17:14:45 +01:00
|
|
|
static void buttons_header_region_init(wmWindowManager *UNUSED(wm), ARegion *ar)
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2018-10-29 22:55:54 +01:00
|
|
|
#ifdef USE_HEADER_CONTEXT_PATH
|
|
|
|
|
/* Reinsert context buttons header-type at the end of the list so it's drawn last. */
|
|
|
|
|
HeaderType *context_ht = BLI_findstring(&ar->type->headertypes, "BUTTONS_HT_context", offsetof(HeaderType, idname));
|
|
|
|
|
BLI_remlink(&ar->type->headertypes, context_ht);
|
|
|
|
|
BLI_addtail(&ar->type->headertypes, context_ht);
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-06-19 19:37:17 +00:00
|
|
|
ED_region_header_init(ar);
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
2015-11-28 17:14:45 +01:00
|
|
|
static void buttons_header_region_draw(const bContext *C, ARegion *ar)
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = CTX_wm_space_properties(C);
|
2013-06-19 19:37:17 +00:00
|
|
|
|
2018-06-08 16:30:56 +02:00
|
|
|
/* Needed for RNA to get the good values! */
|
|
|
|
|
buttons_context_compute(C, sbuts);
|
2009-06-21 10:26:39 +00:00
|
|
|
|
2013-06-19 19:37:17 +00:00
|
|
|
ED_region_header(C, ar);
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
2017-12-15 15:46:42 +01:00
|
|
|
static void buttons_header_region_message_subscribe(
|
2017-12-27 17:08:00 +01:00
|
|
|
const bContext *UNUSED(C),
|
|
|
|
|
WorkSpace *UNUSED(workspace), Scene *UNUSED(scene),
|
|
|
|
|
bScreen *UNUSED(screen), ScrArea *sa, ARegion *ar,
|
2017-12-15 15:46:42 +01:00
|
|
|
struct wmMsgBus *mbus)
|
|
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = sa->spacedata.first;
|
2017-12-15 15:46:42 +01:00
|
|
|
wmMsgSubscribeValue msg_sub_value_region_tag_redraw = {
|
|
|
|
|
.owner = ar,
|
|
|
|
|
.user_data = ar,
|
|
|
|
|
.notify = ED_region_do_msg_notify_tag_redraw,
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-16 10:44:15 +11:00
|
|
|
/* Don't check for SpaceProperties.mainb here, we may toggle between view-layers
|
2017-12-15 15:46:42 +01:00
|
|
|
* where one has no active object, so that available contexts changes. */
|
|
|
|
|
WM_msg_subscribe_rna_anon_prop(mbus, Window, view_layer, &msg_sub_value_region_tag_redraw);
|
2017-12-27 17:08:00 +01:00
|
|
|
|
2018-11-02 11:56:41 +11:00
|
|
|
if (!ELEM(sbuts->mainb, BCONTEXT_RENDER, BCONTEXT_OUTPUT, BCONTEXT_SCENE, BCONTEXT_WORLD)) {
|
2017-12-27 17:08:00 +01:00
|
|
|
WM_msg_subscribe_rna_anon_prop(mbus, ViewLayer, name, &msg_sub_value_region_tag_redraw);
|
|
|
|
|
}
|
2018-08-30 08:55:34 +10:00
|
|
|
|
|
|
|
|
if (sbuts->mainb == BCONTEXT_TOOL) {
|
|
|
|
|
WM_msg_subscribe_rna_anon_prop(mbus, WorkSpace, tools, &msg_sub_value_region_tag_redraw);
|
|
|
|
|
}
|
2018-10-29 22:55:54 +01:00
|
|
|
|
|
|
|
|
#ifdef USE_HEADER_CONTEXT_PATH
|
|
|
|
|
WM_msg_subscribe_rna_anon_prop(mbus, SpaceProperties, context, &msg_sub_value_region_tag_redraw);
|
|
|
|
|
#endif
|
2017-12-15 15:46:42 +01:00
|
|
|
}
|
|
|
|
|
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
static void buttons_navigation_bar_region_init(wmWindowManager *wm, ARegion *ar)
|
|
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
wmKeyMap *keymap = WM_keymap_ensure(wm->defaultconf, "Property Editor", SPACE_PROPERTIES, 0);
|
2018-10-29 23:28:08 +01:00
|
|
|
WM_event_add_keymap_handler(&ar->handlers, keymap);
|
|
|
|
|
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
ar->flag |= RGN_FLAG_PREFSIZE_OR_HIDDEN;
|
2018-10-29 23:28:08 +01:00
|
|
|
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
ED_region_panels_init(wm, ar);
|
|
|
|
|
ar->v2d.keepzoom |= V2D_LOCKZOOM_X | V2D_LOCKZOOM_Y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void buttons_navigation_bar_region_draw(const bContext *C, ARegion *ar)
|
|
|
|
|
{
|
|
|
|
|
for (PanelType *pt = ar->type->paneltypes.first; pt; pt = pt->next) {
|
|
|
|
|
pt->flag |= PNL_LAYOUT_VERT_BAR;
|
|
|
|
|
}
|
2018-10-30 23:54:25 +01:00
|
|
|
|
|
|
|
|
ED_region_panels_layout(C, ar);
|
2019-01-15 23:24:20 +11:00
|
|
|
/* ED_region_panels_layout adds vertical scrollbars, we don't want them. */
|
|
|
|
|
ar->v2d.scroll &= ~V2D_SCROLL_VERTICAL;
|
2018-10-30 23:54:25 +01:00
|
|
|
ED_region_panels_draw(C, ar);
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
}
|
|
|
|
|
|
2018-12-07 14:07:05 +11:00
|
|
|
static void buttons_navigation_bar_region_message_subscribe(
|
|
|
|
|
const bContext *UNUSED(C),
|
|
|
|
|
WorkSpace *UNUSED(workspace), Scene *UNUSED(scene),
|
|
|
|
|
bScreen *UNUSED(screen), ScrArea *UNUSED(sa), ARegion *ar,
|
|
|
|
|
struct wmMsgBus *mbus)
|
|
|
|
|
{
|
|
|
|
|
wmMsgSubscribeValue msg_sub_value_region_tag_redraw = {
|
|
|
|
|
.owner = ar,
|
|
|
|
|
.user_data = ar,
|
|
|
|
|
.notify = ED_region_do_msg_notify_tag_redraw,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WM_msg_subscribe_rna_anon_prop(mbus, Window, view_layer, &msg_sub_value_region_tag_redraw);
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-17 06:06:30 +00:00
|
|
|
/* draw a certain button set only if properties area is currently
|
|
|
|
|
* showing that button set, to reduce unnecessary drawing. */
|
|
|
|
|
static void buttons_area_redraw(ScrArea *sa, short buttons)
|
|
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = sa->spacedata.first;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2009-12-17 06:06:30 +00:00
|
|
|
/* if the area's current button set is equal to the one to redraw */
|
2012-03-24 06:38:07 +00:00
|
|
|
if (sbuts->mainb == buttons)
|
2009-12-17 06:06:30 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-27 17:43:05 +00:00
|
|
|
/* reused! */
|
2017-05-02 09:58:01 +10:00
|
|
|
static void buttons_area_listener(
|
2018-07-04 15:14:57 +02:00
|
|
|
wmWindow *UNUSED(win), ScrArea *sa, wmNotifier *wmn, Scene *UNUSED(scene))
|
2008-12-13 19:00:54 +00:00
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = sa->spacedata.first;
|
2009-06-07 11:12:35 +00:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
/* context changes */
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->category) {
|
2008-12-27 17:43:05 +00:00
|
|
|
case NC_SCENE:
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->data) {
|
2009-07-25 13:40:59 +00:00
|
|
|
case ND_RENDER_OPTIONS:
|
2009-12-17 06:06:30 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_RENDER);
|
2017-11-22 10:52:39 -02:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_VIEW_LAYER);
|
2009-06-07 11:12:35 +00:00
|
|
|
break;
|
2014-09-16 14:28:44 +02:00
|
|
|
case ND_WORLD:
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_WORLD);
|
|
|
|
|
sbuts->preview = 1;
|
|
|
|
|
break;
|
2010-01-28 02:08:16 +00:00
|
|
|
case ND_FRAME:
|
2010-11-19 08:17:57 +00:00
|
|
|
/* any buttons area can have animated properties so redraw all */
|
|
|
|
|
ED_area_tag_redraw(sa);
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2010-01-28 02:08:16 +00:00
|
|
|
break;
|
2009-05-04 07:04:48 +00:00
|
|
|
case ND_OB_ACTIVE:
|
2009-06-07 11:12:35 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2008-12-27 17:43:05 +00:00
|
|
|
break;
|
2009-12-17 06:06:30 +00:00
|
|
|
case ND_KEYINGSET:
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_SCENE);
|
|
|
|
|
break;
|
2010-04-15 10:28:32 +00:00
|
|
|
case ND_RENDER_RESULT:
|
|
|
|
|
break;
|
2009-12-17 06:06:30 +00:00
|
|
|
case ND_MODE:
|
|
|
|
|
case ND_LAYER:
|
|
|
|
|
default:
|
|
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
break;
|
2008-12-27 17:43:05 +00:00
|
|
|
}
|
|
|
|
|
break;
|
2009-04-29 04:43:17 +00:00
|
|
|
case NC_OBJECT:
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->data) {
|
2009-04-29 04:43:17 +00:00
|
|
|
case ND_TRANSFORM:
|
2009-12-17 06:06:30 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_OBJECT);
|
2012-05-08 15:30:00 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_DATA); /* autotexpace flag */
|
2009-12-17 06:06:30 +00:00
|
|
|
break;
|
2010-01-25 19:42:33 +00:00
|
|
|
case ND_POSE:
|
2011-08-28 18:54:02 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_DATA);
|
2013-07-25 12:46:20 +00:00
|
|
|
break;
|
2009-04-29 04:43:17 +00:00
|
|
|
case ND_BONE_ACTIVE:
|
|
|
|
|
case ND_BONE_SELECT:
|
2009-12-17 06:06:30 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_BONE);
|
2009-12-17 13:27:52 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_BONE_CONSTRAINT);
|
2012-03-19 21:21:23 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_DATA);
|
2009-12-17 06:06:30 +00:00
|
|
|
break;
|
2009-09-12 12:54:43 +00:00
|
|
|
case ND_MODIFIER:
|
2012-03-24 06:38:07 +00:00
|
|
|
if (wmn->action == NA_RENAME)
|
2009-12-13 23:51:41 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2009-12-17 06:06:30 +00:00
|
|
|
else
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_MODIFIER);
|
2012-05-08 15:30:00 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_PHYSICS);
|
2009-12-13 23:51:41 +00:00
|
|
|
break;
|
2009-07-20 12:42:31 +00:00
|
|
|
case ND_CONSTRAINT:
|
2009-12-17 06:06:30 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_CONSTRAINT);
|
2009-12-29 11:21:51 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_BONE_CONSTRAINT);
|
2009-12-17 06:06:30 +00:00
|
|
|
break;
|
2016-12-28 17:30:58 +01:00
|
|
|
case ND_PARTICLE:
|
|
|
|
|
if (wmn->action == NA_EDITED)
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_PARTICLE);
|
|
|
|
|
sbuts->preview = 1;
|
|
|
|
|
break;
|
2009-12-10 01:30:47 +00:00
|
|
|
case ND_DRAW:
|
2010-03-26 14:16:35 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_OBJECT);
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_DATA);
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_PHYSICS);
|
2013-07-13 14:44:04 +00:00
|
|
|
break;
|
2009-06-24 17:22:22 +00:00
|
|
|
case ND_SHADING:
|
|
|
|
|
case ND_SHADING_DRAW:
|
2012-11-26 08:52:07 +00:00
|
|
|
case ND_SHADING_LINKS:
|
2013-06-24 22:41:33 +00:00
|
|
|
case ND_SHADING_PREVIEW:
|
2009-06-24 17:22:22 +00:00
|
|
|
/* currently works by redraws... if preview is set, it (re)starts job */
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2009-06-24 17:22:22 +00:00
|
|
|
break;
|
2009-12-17 06:06:30 +00:00
|
|
|
default:
|
|
|
|
|
/* Not all object RNA props have a ND_ notifier (yet) */
|
|
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
break;
|
2009-04-29 04:43:17 +00:00
|
|
|
}
|
|
|
|
|
break;
|
2.5
Notifiers
---------
Various fixes for wrong use of notifiers, and some new notifiers
to make things a bit more clear and consistent, with two notable
changes:
* Geometry changes are now done with NC_GEOM, rather than
NC_OBJECT|ND_GEOM_, so an object does need to be available.
* Space data now use NC_SPACE|ND_SPACE_*, instead of data
notifiers or even NC_WINDOW in some cases. Note that NC_SPACE
should only be used for notifying about changes in space data,
we don't want to go back to allqueue(REDRAW..).
Depsgraph
---------
The dependency graph now has a different flush call:
DAG_object_flush_update(scene, ob, flag)
is replaced by:
DAG_id_flush_update(id, flag)
It still works basically the same, one difference is that it now
also accepts object data (e.g. Mesh), again to avoid requiring an
Object to be available. Other ID types will simply do nothing at
the moment.
Docs
----
I made some guidelines for how/when to do which kinds of updates
and notifiers. I can't specify totally exact how to make these
decisions, but these are basically the guidelines I use. So, new
and updated docs are here:
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/NotifiersUpdates
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/DataNotifiers
2009-09-04 20:51:09 +00:00
|
|
|
case NC_GEOM:
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->data) {
|
2.5
Notifiers
---------
Various fixes for wrong use of notifiers, and some new notifiers
to make things a bit more clear and consistent, with two notable
changes:
* Geometry changes are now done with NC_GEOM, rather than
NC_OBJECT|ND_GEOM_, so an object does need to be available.
* Space data now use NC_SPACE|ND_SPACE_*, instead of data
notifiers or even NC_WINDOW in some cases. Note that NC_SPACE
should only be used for notifying about changes in space data,
we don't want to go back to allqueue(REDRAW..).
Depsgraph
---------
The dependency graph now has a different flush call:
DAG_object_flush_update(scene, ob, flag)
is replaced by:
DAG_id_flush_update(id, flag)
It still works basically the same, one difference is that it now
also accepts object data (e.g. Mesh), again to avoid requiring an
Object to be available. Other ID types will simply do nothing at
the moment.
Docs
----
I made some guidelines for how/when to do which kinds of updates
and notifiers. I can't specify totally exact how to make these
decisions, but these are basically the guidelines I use. So, new
and updated docs are here:
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/NotifiersUpdates
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/DataNotifiers
2009-09-04 20:51:09 +00:00
|
|
|
case ND_SELECT:
|
2009-12-11 01:12:22 +00:00
|
|
|
case ND_DATA:
|
2014-02-19 11:29:51 -03:00
|
|
|
case ND_VERTEX_GROUP:
|
2.5
Notifiers
---------
Various fixes for wrong use of notifiers, and some new notifiers
to make things a bit more clear and consistent, with two notable
changes:
* Geometry changes are now done with NC_GEOM, rather than
NC_OBJECT|ND_GEOM_, so an object does need to be available.
* Space data now use NC_SPACE|ND_SPACE_*, instead of data
notifiers or even NC_WINDOW in some cases. Note that NC_SPACE
should only be used for notifying about changes in space data,
we don't want to go back to allqueue(REDRAW..).
Depsgraph
---------
The dependency graph now has a different flush call:
DAG_object_flush_update(scene, ob, flag)
is replaced by:
DAG_id_flush_update(id, flag)
It still works basically the same, one difference is that it now
also accepts object data (e.g. Mesh), again to avoid requiring an
Object to be available. Other ID types will simply do nothing at
the moment.
Docs
----
I made some guidelines for how/when to do which kinds of updates
and notifiers. I can't specify totally exact how to make these
decisions, but these are basically the guidelines I use. So, new
and updated docs are here:
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/NotifiersUpdates
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/DataNotifiers
2009-09-04 20:51:09 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2009-06-07 11:12:35 +00:00
|
|
|
case NC_MATERIAL:
|
|
|
|
|
ED_area_tag_redraw(sa);
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->data) {
|
2009-06-07 11:12:35 +00:00
|
|
|
case ND_SHADING:
|
|
|
|
|
case ND_SHADING_DRAW:
|
2012-11-26 08:52:07 +00:00
|
|
|
case ND_SHADING_LINKS:
|
2013-06-24 22:41:33 +00:00
|
|
|
case ND_SHADING_PREVIEW:
|
2010-01-07 11:09:29 +00:00
|
|
|
case ND_NODES:
|
2009-06-07 11:12:35 +00:00
|
|
|
/* currently works by redraws... if preview is set, it (re)starts job */
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2009-06-07 11:12:35 +00:00
|
|
|
break;
|
2012-10-21 05:46:41 +00:00
|
|
|
}
|
2009-06-07 11:12:35 +00:00
|
|
|
break;
|
|
|
|
|
case NC_WORLD:
|
2009-12-17 06:06:30 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_WORLD);
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2009-12-17 06:06:30 +00:00
|
|
|
break;
|
2009-06-07 12:34:38 +00:00
|
|
|
case NC_LAMP:
|
2009-12-17 06:06:30 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_DATA);
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2009-12-17 06:06:30 +00:00
|
|
|
break;
|
2012-06-18 17:07:26 +00:00
|
|
|
case NC_GROUP:
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_OBJECT);
|
|
|
|
|
break;
|
2010-01-03 08:37:18 +00:00
|
|
|
case NC_BRUSH:
|
|
|
|
|
buttons_area_redraw(sa, BCONTEXT_TEXTURE);
|
2018-10-08 15:40:18 +00:00
|
|
|
buttons_area_redraw(sa, BCONTEXT_TOOL);
|
2013-04-13 08:41:52 +00:00
|
|
|
sbuts->preview = 1;
|
2010-01-03 08:37:18 +00:00
|
|
|
break;
|
2009-06-07 12:34:38 +00:00
|
|
|
case NC_TEXTURE:
|
2010-04-06 16:53:48 +00:00
|
|
|
case NC_IMAGE:
|
2013-05-15 14:37:05 +00:00
|
|
|
if (wmn->action != NA_PAINTING) {
|
|
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
sbuts->preview = 1;
|
|
|
|
|
}
|
2.5
Notifiers
---------
Various fixes for wrong use of notifiers, and some new notifiers
to make things a bit more clear and consistent, with two notable
changes:
* Geometry changes are now done with NC_GEOM, rather than
NC_OBJECT|ND_GEOM_, so an object does need to be available.
* Space data now use NC_SPACE|ND_SPACE_*, instead of data
notifiers or even NC_WINDOW in some cases. Note that NC_SPACE
should only be used for notifying about changes in space data,
we don't want to go back to allqueue(REDRAW..).
Depsgraph
---------
The dependency graph now has a different flush call:
DAG_object_flush_update(scene, ob, flag)
is replaced by:
DAG_id_flush_update(id, flag)
It still works basically the same, one difference is that it now
also accepts object data (e.g. Mesh), again to avoid requiring an
Object to be available. Other ID types will simply do nothing at
the moment.
Docs
----
I made some guidelines for how/when to do which kinds of updates
and notifiers. I can't specify totally exact how to make these
decisions, but these are basically the guidelines I use. So, new
and updated docs are here:
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/NotifiersUpdates
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/DataNotifiers
2009-09-04 20:51:09 +00:00
|
|
|
break;
|
|
|
|
|
case NC_SPACE:
|
2012-03-24 06:38:07 +00:00
|
|
|
if (wmn->data == ND_SPACE_PROPERTIES)
|
2.5
Notifiers
---------
Various fixes for wrong use of notifiers, and some new notifiers
to make things a bit more clear and consistent, with two notable
changes:
* Geometry changes are now done with NC_GEOM, rather than
NC_OBJECT|ND_GEOM_, so an object does need to be available.
* Space data now use NC_SPACE|ND_SPACE_*, instead of data
notifiers or even NC_WINDOW in some cases. Note that NC_SPACE
should only be used for notifying about changes in space data,
we don't want to go back to allqueue(REDRAW..).
Depsgraph
---------
The dependency graph now has a different flush call:
DAG_object_flush_update(scene, ob, flag)
is replaced by:
DAG_id_flush_update(id, flag)
It still works basically the same, one difference is that it now
also accepts object data (e.g. Mesh), again to avoid requiring an
Object to be available. Other ID types will simply do nothing at
the moment.
Docs
----
I made some guidelines for how/when to do which kinds of updates
and notifiers. I can't specify totally exact how to make these
decisions, but these are basically the guidelines I use. So, new
and updated docs are here:
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/NotifiersUpdates
http://wiki.blender.org/index.php/BlenderDev/Blender2.5/DataNotifiers
2009-09-04 20:51:09 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
break;
|
2009-11-25 23:13:47 +00:00
|
|
|
case NC_ID:
|
2012-03-24 06:38:07 +00:00
|
|
|
if (wmn->action == NA_RENAME)
|
2009-11-25 23:13:47 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
break;
|
2010-01-07 10:49:16 +00:00
|
|
|
case NC_ANIMATION:
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->data) {
|
2010-06-18 04:39:32 +00:00
|
|
|
case ND_KEYFRAME:
|
2014-07-20 01:30:29 +10:00
|
|
|
if (ELEM(wmn->action, NA_EDITED, NA_ADDED, NA_REMOVED))
|
2010-06-18 04:39:32 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2010-01-07 10:49:16 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2010-08-23 06:56:08 +00:00
|
|
|
break;
|
2018-07-31 10:22:19 +02:00
|
|
|
case NC_GPENCIL:
|
2018-07-31 20:11:55 +10:00
|
|
|
switch (wmn->data) {
|
2018-07-31 10:22:19 +02:00
|
|
|
case ND_DATA:
|
|
|
|
|
if (ELEM(wmn->action, NA_EDITED, NA_ADDED, NA_REMOVED))
|
|
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2011-01-03 14:36:44 +00:00
|
|
|
case NC_NODE:
|
2012-05-08 15:30:00 +00:00
|
|
|
if (wmn->action == NA_SELECTED) {
|
2011-01-03 14:36:44 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2011-03-19 18:23:21 +00:00
|
|
|
/* new active node, update texture preview */
|
2012-03-24 06:38:07 +00:00
|
|
|
if (sbuts->mainb == BCONTEXT_TEXTURE)
|
2012-05-08 15:30:00 +00:00
|
|
|
sbuts->preview = 1;
|
2011-03-19 18:23:21 +00:00
|
|
|
}
|
2011-01-03 14:36:44 +00:00
|
|
|
break;
|
2010-08-22 17:51:58 +00:00
|
|
|
/* Listener for preview render, when doing an global undo. */
|
2015-07-21 11:24:29 +02:00
|
|
|
case NC_WM:
|
|
|
|
|
if (wmn->data == ND_UNDO) {
|
|
|
|
|
ED_area_tag_redraw(sa);
|
|
|
|
|
sbuts->preview = 1;
|
|
|
|
|
}
|
2010-08-23 06:56:08 +00:00
|
|
|
break;
|
2012-12-20 07:57:26 +00:00
|
|
|
#ifdef WITH_FREESTYLE
|
2012-02-16 21:52:05 +00:00
|
|
|
case NC_LINESTYLE:
|
|
|
|
|
ED_area_tag_redraw(sa);
|
2012-12-11 22:00:22 +00:00
|
|
|
sbuts->preview = 1;
|
2012-02-16 21:52:05 +00:00
|
|
|
break;
|
2012-12-20 07:57:26 +00:00
|
|
|
#endif
|
2008-12-27 17:43:05 +00:00
|
|
|
}
|
2009-07-12 02:06:15 +00:00
|
|
|
|
2012-03-24 06:38:07 +00:00
|
|
|
if (wmn->data == ND_KEYS)
|
2009-07-12 02:06:15 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2008-12-13 19:00:54 +00:00
|
|
|
}
|
|
|
|
|
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
static void buttons_id_remap(ScrArea *UNUSED(sa), SpaceLink *slink, ID *old_id, ID *new_id)
|
|
|
|
|
{
|
2019-02-16 10:44:15 +11:00
|
|
|
SpaceProperties *sbuts = (SpaceProperties *)slink;
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
|
|
|
|
|
if (sbuts->pinid == old_id) {
|
|
|
|
|
sbuts->pinid = new_id;
|
|
|
|
|
if (new_id == NULL) {
|
|
|
|
|
sbuts->flag &= ~SB_PIN_CONTEXT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sbuts->path) {
|
|
|
|
|
ButsContextPath *path = sbuts->path;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < path->len; i++) {
|
|
|
|
|
if (path->ptr[i].id.data == old_id) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (i == path->len) {
|
|
|
|
|
/* pass */
|
|
|
|
|
}
|
|
|
|
|
else if (new_id == NULL) {
|
|
|
|
|
if (i == 0) {
|
|
|
|
|
MEM_SAFE_FREE(sbuts->path);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
memset(&path->ptr[i], 0, sizeof(path->ptr[i]) * (path->len - i));
|
|
|
|
|
path->len = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
RNA_id_pointer_create(new_id, &path->ptr[i]);
|
|
|
|
|
/* There is no easy way to check/make path downwards valid, just nullify it.
|
|
|
|
|
* Next redraw will rebuild this anyway. */
|
|
|
|
|
i++;
|
|
|
|
|
memset(&path->ptr[i], 0, sizeof(path->ptr[i]) * (path->len - i));
|
|
|
|
|
path->len = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sbuts->texuser) {
|
|
|
|
|
ButsContextTexture *ct = sbuts->texuser;
|
|
|
|
|
if ((ID *)ct->texture == old_id) {
|
|
|
|
|
ct->texture = (Tex *)new_id;
|
|
|
|
|
}
|
|
|
|
|
BLI_freelistN(&ct->users);
|
|
|
|
|
ct->user = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
/* only called once, from space/spacetypes.c */
|
|
|
|
|
void ED_spacetype_buttons(void)
|
|
|
|
|
{
|
2012-05-08 15:30:00 +00:00
|
|
|
SpaceType *st = MEM_callocN(sizeof(SpaceType), "spacetype buttons");
|
2008-12-13 19:00:54 +00:00
|
|
|
ARegionType *art;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2019-02-16 10:44:15 +11:00
|
|
|
st->spaceid = SPACE_PROPERTIES;
|
2009-12-19 22:37:51 +00:00
|
|
|
strncpy(st->name, "Buttons", BKE_ST_MAXNAME);
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2012-05-08 15:30:00 +00:00
|
|
|
st->new = buttons_new;
|
|
|
|
|
st->free = buttons_free;
|
|
|
|
|
st->init = buttons_init;
|
|
|
|
|
st->duplicate = buttons_duplicate;
|
|
|
|
|
st->operatortypes = buttons_operatortypes;
|
|
|
|
|
st->keymap = buttons_keymap;
|
|
|
|
|
st->listener = buttons_area_listener;
|
|
|
|
|
st->context = buttons_context;
|
ID-Remap - Step one: core work (cleanup and rework of generic ID datablock handling).
This commit changes a lot of how IDs are handled internally, especially the unlinking/freeing
processes. So far, this was very fuzy, to summarize cleanly deleting or replacing a datablock
was pretty much impossible, except for a few special cases.
Also, unlinking was handled by each datatype, in a rather messy and prone-to-errors way (quite
a few ID usages were missed or wrongly handled that way).
One of the main goal of id-remap branch was to cleanup this, and fatorize ID links handling
by using library_query utils to allow generic handling of those, which is now the case
(now, generic ID links handling is only "knwon" from readfile.c and library_query.c).
This commit also adds backends to allow live replacement and deletion of datablocks in Blender
(so-called 'remapping' process, where we replace all usages of a given ID pointer by a new one,
or NULL one in case of unlinking).
This will allow nice new features, like ability to easily reload or relocate libraries, real immediate
deletion of datablocks in blender, replacement of one datablock by another, etc.
Some of those are for next commits.
A word of warning: this commit is highly risky, because it affects potentially a lot in Blender core.
Though it was tested rather deeply, being totally impossible to check all possible ID usage cases,
it's likely there are some remaining issues and bugs in new code... Please report them! ;)
Review task: D2027 (https://developer.blender.org/D2027).
Reviewed by campbellbarton, thanks a bunch.
2016-06-22 17:29:38 +02:00
|
|
|
st->id_remap = buttons_id_remap;
|
|
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
/* regions: main window */
|
2012-05-08 15:30:00 +00:00
|
|
|
art = MEM_callocN(sizeof(ARegionType), "spacetype buttons region");
|
2008-12-13 19:00:54 +00:00
|
|
|
art->regionid = RGN_TYPE_WINDOW;
|
2015-11-28 17:14:45 +01:00
|
|
|
art->init = buttons_main_region_init;
|
2018-06-11 18:36:00 +02:00
|
|
|
art->layout = buttons_main_region_layout;
|
|
|
|
|
art->draw = ED_region_panels_draw;
|
Main Workspace Integration
This commit does the main integration of workspaces, which is a design we agreed on during the 2.8 UI workshop (see https://wiki.blender.org/index.php/Dev:2.8/UI/Workshop_Writeup)
Workspaces should generally be stable, I'm not aware of any remaining bugs (or I've forgotten them :) ). If you find any, let me know!
(Exception: mode switching button might get out of sync with actual mode in some cases, would consider that a limitation/ToDo. Needs to be resolved at some point.)
== Main Changes/Features
* Introduces the new Workspaces as data-blocks.
* Allow storing a number of custom workspaces as part of the user configuration. Needs further work to allow adding and deleting individual workspaces.
* Bundle a default workspace configuration with Blender (current screen-layouts converted to workspaces).
* Pressing button to add a workspace spawns a menu to select between "Duplicate Current" and the workspaces from the user configuration. If no workspaces are stored in the user configuration, the default workspaces are listed instead.
* Store screen-layouts (`bScreen`) per workspace.
* Store an active screen-layout per workspace. Changing the workspace will enable this layout.
* Store active mode in workspace. Changing the workspace will also enter the mode of the new workspace. (Note that we still store the active mode in the object, moving this completely to workspaces is a separate project.)
* Store an active render layer per workspace.
* Moved mode switch from 3D View header to Info Editor header.
* Store active scene in window (not directly workspace related, but overlaps quite a bit).
* Removed 'Use Global Scene' User Preference option.
* Compatibility with old files - a new workspace is created for every screen-layout of old files. Old Blender versions should be able to read files saved with workspace support as well.
* Default .blend only contains one workspace ("General").
* Support appending workspaces.
Opening files without UI and commandline rendering should work fine.
Note that the UI is temporary! We plan to introduce a new global topbar
that contains the workspace options and tabs for switching workspaces.
== Technical Notes
* Workspaces are data-blocks.
* Adding and removing `bScreen`s should be done through `ED_workspace_layout` API now.
* A workspace can be active in multiple windows at the same time.
* The mode menu (which is now in the Info Editor header) doesn't display "Grease Pencil Edit" mode anymore since its availability depends on the active editor. Will be fixed by making Grease Pencil an own object type (as planned).
* The button to change the active workspace object mode may get out of sync with the mode of the active object. Will either be resolved by moving mode out of object data, or we'll disable workspace modes again (there's a `#define USE_WORKSPACE_MODE` for that).
* Screen-layouts (`bScreen`) are IDs and thus stored in a main list-base. Had to add a wrapper `WorkSpaceLayout` so we can store them in a list-base within workspaces, too. On the long run we could completely replace `bScreen` by workspace structs.
* `WorkSpace` types use some special compiler trickery to allow marking structs and struct members as private. BKE_workspace API should be used for accessing those.
* Added scene operators `SCENE_OT_`. Was previously done through screen operators.
== BPY API Changes
* Removed `Screen.scene`, added `Window.scene`
* Removed `UserPreferencesView.use_global_scene`
* Added `Context.workspace`, `Window.workspace` and `BlendData.workspaces`
* Added `bpy.types.WorkSpace` containing `screens`, `object_mode` and `render_layer`
* Added Screen.layout_name for the layout name that'll be displayed in the UI (may differ from internal name)
== What's left?
* There are a few open design questions (T50521). We should find the needed answers and implement them.
* Allow adding and removing individual workspaces from workspace configuration (needs UI design).
* Get the override system ready and support overrides per workspace.
* Support custom UI setups as part of workspaces (hidden panels, hidden buttons, customizable toolbars, etc).
* Allow enabling add-ons per workspace.
* Support custom workspace keymaps.
* Remove special exception for workspaces in linking code (so they're always appended, never linked). Depends on a few things, so best to solve later.
* Get the topbar done.
* Workspaces need a proper icon, current one is just a placeholder :)
Reviewed By: campbellbarton, mont29
Tags: #user_interface, #bf_blender_2.8
Maniphest Tasks: T50521
Differential Revision: https://developer.blender.org/D2451
2017-06-01 19:56:58 +02:00
|
|
|
art->listener = buttons_main_region_listener;
|
2012-05-08 15:30:00 +00:00
|
|
|
art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_FRAMES;
|
2018-10-29 22:55:54 +01:00
|
|
|
#ifndef USE_HEADER_CONTEXT_PATH
|
2009-06-03 23:33:56 +00:00
|
|
|
buttons_context_register(art);
|
2018-10-29 22:55:54 +01:00
|
|
|
#endif
|
|
|
|
|
BLI_addhead(&st->regiontypes, art);
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
/* regions: header */
|
2012-05-08 15:30:00 +00:00
|
|
|
art = MEM_callocN(sizeof(ARegionType), "spacetype buttons region");
|
2008-12-13 19:00:54 +00:00
|
|
|
art->regionid = RGN_TYPE_HEADER;
|
2012-05-08 15:30:00 +00:00
|
|
|
art->prefsizey = HEADERY;
|
|
|
|
|
art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_VIEW2D | ED_KEYMAP_FRAMES | ED_KEYMAP_HEADER;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2015-11-28 17:14:45 +01:00
|
|
|
art->init = buttons_header_region_init;
|
|
|
|
|
art->draw = buttons_header_region_draw;
|
2017-12-15 15:46:42 +01:00
|
|
|
art->message_subscribe = buttons_header_region_message_subscribe;
|
2018-10-29 22:55:54 +01:00
|
|
|
#ifdef USE_HEADER_CONTEXT_PATH
|
|
|
|
|
buttons_context_register(art);
|
|
|
|
|
#endif
|
2008-12-13 19:00:54 +00:00
|
|
|
BLI_addhead(&st->regiontypes, art);
|
2009-06-07 13:36:12 +00:00
|
|
|
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
/* regions: navigation bar */
|
|
|
|
|
art = MEM_callocN(sizeof(ARegionType), "spacetype nav buttons region");
|
|
|
|
|
art->regionid = RGN_TYPE_NAV_BAR;
|
2019-01-15 23:24:20 +11:00
|
|
|
art->prefsizex = AREAMINX - 3; /* XXX Works and looks best,
|
|
|
|
|
* should we update AREAMINX accordingly? */
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_FRAMES;
|
|
|
|
|
art->init = buttons_navigation_bar_region_init;
|
|
|
|
|
art->draw = buttons_navigation_bar_region_draw;
|
2018-12-07 14:07:05 +11:00
|
|
|
art->message_subscribe = buttons_navigation_bar_region_message_subscribe;
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
BLI_addhead(&st->regiontypes, art);
|
|
|
|
|
|
2008-12-13 19:00:54 +00:00
|
|
|
BKE_spacetype_register(st);
|
|
|
|
|
}
|