2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2007-12-24 18:27:28 +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.
|
2007-12-24 18:27:28 +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.
|
2007-12-24 18:27:28 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2007 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup wm
|
2014-01-19 23:14:24 +11:00
|
|
|
*
|
|
|
|
|
* Internal functions for managing UI registrable types (operator, UI and menu types)
|
|
|
|
|
*
|
|
|
|
|
* Also Blenders main event loop (WM_main)
|
2011-02-25 14:04:21 +00:00
|
|
|
*/
|
|
|
|
|
|
2010-08-13 06:30:04 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <stddef.h>
|
2009-10-08 19:06:32 +00:00
|
|
|
|
2013-05-28 19:35:26 +00:00
|
|
|
#include "BLI_sys_types.h"
|
2010-08-31 11:31:21 +00:00
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
#include "DNA_windowmanager_types.h"
|
|
|
|
|
|
2011-08-11 06:06:17 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
2007-12-24 18:27:28 +00:00
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
|
|
2008-12-18 02:56:48 +00:00
|
|
|
#include "BKE_context.h"
|
2018-11-07 18:00:24 +01:00
|
|
|
#include "BKE_global.h"
|
2008-12-29 13:38:08 +00:00
|
|
|
#include "BKE_idprop.h"
|
2007-12-24 18:27:28 +00:00
|
|
|
#include "BKE_library.h"
|
|
|
|
|
#include "BKE_main.h"
|
2008-12-29 13:38:08 +00:00
|
|
|
#include "BKE_report.h"
|
2017-11-09 05:37:09 +01:00
|
|
|
#include "BKE_workspace.h"
|
2007-12-24 18:27:28 +00:00
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
|
#include "WM_types.h"
|
2017-11-13 19:43:34 +11:00
|
|
|
#include "WM_message.h"
|
2007-12-24 18:27:28 +00:00
|
|
|
#include "wm_window.h"
|
|
|
|
|
#include "wm_event_system.h"
|
2.5: WM Compositing
* Triple Buffer is now more complete:
- Proper handling of window resize, duplicate, etc.
- It now uses 3x3 textures (or less) if the power of two sizes
do not match well. That still has a worst case wast of 23.4%,
but better than 300%.
- It can also use the ARB/NV/EXT_texture_rectangle extension
now, which may be supported on hardware that does not support
ARB_texture_non_power_of_two.
- Gesture, menu and brushe redraws now require no redraws at all
from the area regions. So even on a high poly scene just moving
the paint cursor or opening a menu should be fast.
* Testing can be done by setting the "Window Draw Method" in the
User Preferences in the outliner. "Overlap" is still default,
since "Triple Buffer" has not been tested on computers other than
mine, would like to avoid crashing Blender on startup in case
there is a common bug, but it's ready for testing now.
- For reference "Full" draws the full window each time.
- "Triple Buffer" should work for both swap copy and swap exchange
systems, the latter still need the -E command line option for
"Overlap".
- Resizing and going fullscreen still gives flicker here but no
more than "Full" drawing.
* Partial Redraw was added. ED_region_tag_redraw_partial takes a
rect in window coordinates to define a subarea of the region.
On region draw it will then set glScissor to a smaller area, and
ar->drawrct will always be set to either the partial or full
window rect. The latter can then be used for clipping in the 3D
view or clipping interface drawing. Neither is implemented yet.
2009-01-23 03:52:52 +00:00
|
|
|
#include "wm_draw.h"
|
2008-10-03 18:03:30 +00:00
|
|
|
#include "wm.h"
|
2007-12-24 18:27:28 +00:00
|
|
|
|
2008-01-07 18:03:41 +00:00
|
|
|
#include "ED_screen.h"
|
2018-03-19 14:17:59 +01:00
|
|
|
#include "BKE_undo_system.h"
|
2008-01-07 18:03:41 +00:00
|
|
|
|
2010-10-31 04:11:39 +00:00
|
|
|
#ifdef WITH_PYTHON
|
2019-04-17 06:17:24 +02:00
|
|
|
# include "BPY_extern.h"
|
2010-09-12 12:09:31 +00:00
|
|
|
#endif
|
2009-01-01 20:44:40 +00:00
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
/* ****************************************************** */
|
2.5 Branch
==========
* Changed wmOperatorType, removing init/exit callbacks and adding cancel
callback, removed default storage in favor of properties. Defined return
values for exec/invoke/modal/cancel.
* Don't allocate operator on the stack, and removed operator copy for
handlers. Now it frees based on return values from callbacks, and just
keeps a wmOperator on the heap. Also it now registers after the operator
is fully finished, to get the correct final properties.
* Changed OP_get_* functions to return 1 if the property is found and 0
otherwise, gives more readable code in my opinion. Added OP_verify_*
functions to quickly check if the property is available and set if it's
not, that's common for exec/invoke.
* Removed WM_operatortypelist_append in favor of WM_operatortype_append
which takes a function pointer instead of a list, avoids macro's and
duplicating code.
* Fix a crash where the handler would still be used while it was freed by
the operator.
* Spacetypes now have operatortypes() and keymap() callbacks to abstract
them a bit more.
* Renamed C->curarea to C->area for consistency. Removed View3D/View2D/
SpaceIpo from bContext, seems bad to keep these.
* Set context variables like window/screen/area/region to NULL again when
leaving that context, instead of leaving the pointers there.
* Added if(G.f & G_DEBUG) for many of the prints, makes output a bit
cleaner and easier to debug.
* Fixed priority of the editors/interface module in scons, would otherwise
give link errors.
* Added start of generic view2d api.
* Added space_time with some basic drawing and a single operator to change
the frame.
2008-06-11 10:10:31 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
#define MAX_OP_REGISTERED 32
|
2007-12-24 18:27:28 +00:00
|
|
|
|
2008-12-24 14:52:17 +00:00
|
|
|
void WM_operator_free(wmOperator *op)
|
2.5 Branch
==========
* Changed wmOperatorType, removing init/exit callbacks and adding cancel
callback, removed default storage in favor of properties. Defined return
values for exec/invoke/modal/cancel.
* Don't allocate operator on the stack, and removed operator copy for
handlers. Now it frees based on return values from callbacks, and just
keeps a wmOperator on the heap. Also it now registers after the operator
is fully finished, to get the correct final properties.
* Changed OP_get_* functions to return 1 if the property is found and 0
otherwise, gives more readable code in my opinion. Added OP_verify_*
functions to quickly check if the property is available and set if it's
not, that's common for exec/invoke.
* Removed WM_operatortypelist_append in favor of WM_operatortype_append
which takes a function pointer instead of a list, avoids macro's and
duplicating code.
* Fix a crash where the handler would still be used while it was freed by
the operator.
* Spacetypes now have operatortypes() and keymap() callbacks to abstract
them a bit more.
* Renamed C->curarea to C->area for consistency. Removed View3D/View2D/
SpaceIpo from bContext, seems bad to keep these.
* Set context variables like window/screen/area/region to NULL again when
leaving that context, instead of leaving the pointers there.
* Added if(G.f & G_DEBUG) for many of the prints, makes output a bit
cleaner and easier to debug.
* Fixed priority of the editors/interface module in scons, would otherwise
give link errors.
* Added start of generic view2d api.
* Added space_time with some basic drawing and a single operator to change
the frame.
2008-06-11 10:10:31 +00:00
|
|
|
{
|
2010-03-23 21:37:02 +00:00
|
|
|
|
2010-10-31 04:11:39 +00:00
|
|
|
#ifdef WITH_PYTHON
|
2019-04-17 06:17:24 +02:00
|
|
|
if (op->py_instance) {
|
|
|
|
|
/* do this first in case there are any __del__ functions or
|
|
|
|
|
* similar that use properties */
|
|
|
|
|
BPY_DECREF_RNA_INVALIDATE(op->py_instance);
|
|
|
|
|
}
|
2010-03-23 21:37:02 +00:00
|
|
|
#endif
|
2010-02-27 14:44:46 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (op->ptr) {
|
|
|
|
|
op->properties = op->ptr->data;
|
|
|
|
|
MEM_freeN(op->ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (op->properties) {
|
|
|
|
|
IDP_FreeProperty(op->properties);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (op->reports && (op->reports->flag & RPT_FREE)) {
|
|
|
|
|
BKE_reports_clear(op->reports);
|
|
|
|
|
MEM_freeN(op->reports);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (op->macro.first) {
|
|
|
|
|
wmOperator *opm, *opmnext;
|
|
|
|
|
for (opm = op->macro.first; opm; opm = opmnext) {
|
|
|
|
|
opmnext = opm->next;
|
|
|
|
|
WM_operator_free(opm);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MEM_freeN(op);
|
2.5 Branch
==========
* Changed wmOperatorType, removing init/exit callbacks and adding cancel
callback, removed default storage in favor of properties. Defined return
values for exec/invoke/modal/cancel.
* Don't allocate operator on the stack, and removed operator copy for
handlers. Now it frees based on return values from callbacks, and just
keeps a wmOperator on the heap. Also it now registers after the operator
is fully finished, to get the correct final properties.
* Changed OP_get_* functions to return 1 if the property is found and 0
otherwise, gives more readable code in my opinion. Added OP_verify_*
functions to quickly check if the property is available and set if it's
not, that's common for exec/invoke.
* Removed WM_operatortypelist_append in favor of WM_operatortype_append
which takes a function pointer instead of a list, avoids macro's and
duplicating code.
* Fix a crash where the handler would still be used while it was freed by
the operator.
* Spacetypes now have operatortypes() and keymap() callbacks to abstract
them a bit more.
* Renamed C->curarea to C->area for consistency. Removed View3D/View2D/
SpaceIpo from bContext, seems bad to keep these.
* Set context variables like window/screen/area/region to NULL again when
leaving that context, instead of leaving the pointers there.
* Added if(G.f & G_DEBUG) for many of the prints, makes output a bit
cleaner and easier to debug.
* Fixed priority of the editors/interface module in scons, would otherwise
give link errors.
* Added start of generic view2d api.
* Added space_time with some basic drawing and a single operator to change
the frame.
2008-06-11 10:10:31 +00:00
|
|
|
}
|
|
|
|
|
|
2017-03-15 05:16:07 +11:00
|
|
|
void WM_operator_free_all_after(wmWindowManager *wm, struct wmOperator *op)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
op = op->next;
|
|
|
|
|
while (op != NULL) {
|
|
|
|
|
wmOperator *op_next = op->next;
|
|
|
|
|
BLI_remlink(&wm->operators, op);
|
|
|
|
|
WM_operator_free(op);
|
|
|
|
|
op = op_next;
|
|
|
|
|
}
|
2017-03-15 05:16:07 +11:00
|
|
|
}
|
|
|
|
|
|
2013-04-30 03:44:03 +00:00
|
|
|
/**
|
|
|
|
|
* Use with extreme care!,
|
|
|
|
|
* properties, customdata etc - must be compatible.
|
|
|
|
|
*
|
2018-12-12 12:50:58 +11:00
|
|
|
* \param op: Operator to assign the type to.
|
|
|
|
|
* \param ot: OperatorType to assign.
|
2013-04-30 03:44:03 +00:00
|
|
|
*/
|
|
|
|
|
void WM_operator_type_set(wmOperator *op, wmOperatorType *ot)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
/* not supported for Python */
|
|
|
|
|
BLI_assert(op->py_instance == NULL);
|
2013-04-30 03:44:03 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
op->type = ot;
|
|
|
|
|
op->ptr->type = ot->srna;
|
2013-12-13 00:28:35 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
/* ensure compatible properties */
|
|
|
|
|
if (op->properties) {
|
|
|
|
|
PointerRNA ptr;
|
2013-12-13 00:28:35 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
WM_operator_properties_create_ptr(&ptr, ot);
|
2013-12-13 00:28:35 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
WM_operator_properties_default(&ptr, false);
|
2013-12-13 00:28:35 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (ptr.data) {
|
|
|
|
|
IDP_SyncGroupTypes(op->properties, ptr.data, true);
|
|
|
|
|
}
|
2013-12-13 00:28:35 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
WM_operator_properties_free(&ptr);
|
|
|
|
|
}
|
2013-04-30 03:44:03 +00:00
|
|
|
}
|
|
|
|
|
|
2010-06-03 07:27:55 +00:00
|
|
|
static void wm_reports_free(wmWindowManager *wm)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
BKE_reports_clear(&wm->reports);
|
|
|
|
|
WM_event_remove_timer(wm, NULL, wm->reports.reporttimer);
|
2010-06-03 07:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
/* all operations get registered in the windowmanager here */
|
|
|
|
|
/* called on event handling by event_system.c */
|
2009-07-16 00:50:27 +00:00
|
|
|
void wm_operator_register(bContext *C, wmOperator *op)
|
2007-12-24 18:27:28 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindowManager *wm = CTX_wm_manager(C);
|
|
|
|
|
int tot = 0;
|
|
|
|
|
|
|
|
|
|
BLI_addtail(&wm->operators, op);
|
|
|
|
|
|
|
|
|
|
/* only count registered operators */
|
|
|
|
|
while (op) {
|
|
|
|
|
wmOperator *op_prev = op->prev;
|
|
|
|
|
if (op->type->flag & OPTYPE_REGISTER) {
|
|
|
|
|
tot += 1;
|
|
|
|
|
}
|
|
|
|
|
if (tot > MAX_OP_REGISTERED) {
|
|
|
|
|
BLI_remlink(&wm->operators, op);
|
|
|
|
|
WM_operator_free(op);
|
|
|
|
|
}
|
|
|
|
|
op = op_prev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* so the console is redrawn */
|
|
|
|
|
WM_event_add_notifier(C, NC_SPACE | ND_SPACE_INFO_REPORT, NULL);
|
|
|
|
|
WM_event_add_notifier(C, NC_WM | ND_HISTORY, NULL);
|
2007-12-24 18:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
2011-05-18 10:56:26 +00:00
|
|
|
void WM_operator_stack_clear(wmWindowManager *wm)
|
2009-06-26 15:48:09 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmOperator *op;
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
while ((op = BLI_pophead(&wm->operators))) {
|
|
|
|
|
WM_operator_free(op);
|
|
|
|
|
}
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
WM_main_add_notifier(NC_WM | ND_HISTORY, NULL);
|
2009-06-26 15:48:09 +00:00
|
|
|
}
|
|
|
|
|
|
2013-01-22 06:16:49 +00:00
|
|
|
/**
|
|
|
|
|
* This function is needed in the case when an addon id disabled
|
|
|
|
|
* while a modal operator it defined is running.
|
|
|
|
|
*/
|
|
|
|
|
void WM_operator_handlers_clear(wmWindowManager *wm, wmOperatorType *ot)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindow *win;
|
|
|
|
|
for (win = wm->windows.first; win; win = win->next) {
|
|
|
|
|
ListBase *lb[2] = {&win->handlers, &win->modalhandlers};
|
|
|
|
|
for (int i = 0; i < ARRAY_SIZE(lb); i++) {
|
|
|
|
|
LISTBASE_FOREACH (wmEventHandler *, handler_base, lb[i]) {
|
|
|
|
|
if (handler_base->type == WM_HANDLER_TYPE_OP) {
|
|
|
|
|
wmEventHandler_Op *handler = (wmEventHandler_Op *)handler_base;
|
|
|
|
|
if (handler->op && handler->op->type == ot) {
|
|
|
|
|
/* don't run op->cancel because it needs the context,
|
|
|
|
|
* assume whoever unregisters the operator will cleanup */
|
|
|
|
|
handler->head.flag |= WM_HANDLER_DO_FREE;
|
|
|
|
|
WM_operator_free(handler->op);
|
|
|
|
|
handler->op = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-01-22 06:16:49 +00:00
|
|
|
}
|
This commit frees list ui items from their dependencies to Panel, and hence from all the limitations this implied (mostly, the "only one list per panel" one).
It introduces a new (py-extendable and registrable) RNA type, UIList (roughly similar to Panel one), which currently contains only "standard" list's scroll pos and size (but may be expended to include e.g. some filtering data, etc.). This now makes lists completely independent from Panels!
This UIList has a draw_item callback which allows to customize items' drawing from python, that all addons can now use. Incidentally, this also greatly simplifies the C code of this widget, as we do not code any "special case" here anymore!
To make all this work, other changes were also necessary:
* Now all buttons (uiBut struct) have a 'custom_data' void pointer, used currently to store the uiList struct associated with a given uiLayoutListBox.
* DynamicPaintSurface now exposes a new bool, use_color_preview (readonly), saying whether that surface has some 3D view preview data or not.
* UILayout class has now four new (static) functions, to get the actual icon of any RNA object (important e.g. with materials or textures), and to get an enum item's UI name, description and icon.
* UILayout's label() func now takes an optional 'icon_value' integer parameter, which if not zero will override the 'icon' one (mandatory to use "custom" icons as generated for material/texture/... previews).
Note: not sure whether we should add that one to all UILayout's prop funcs?
Note: will update addons using template list asap.
2012-12-28 09:20:16 +00:00
|
|
|
|
2009-10-08 19:06:32 +00:00
|
|
|
/* ****************************************** */
|
|
|
|
|
|
2018-11-13 19:02:12 +01:00
|
|
|
void WM_keyconfig_reload(bContext *C)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
if (CTX_py_init_get(C) && !G.background) {
|
2019-04-15 08:40:15 +02:00
|
|
|
#ifdef WITH_PYTHON
|
2019-04-17 06:17:24 +02:00
|
|
|
BPY_execute_string(C, (const char *[]){"bpy", NULL}, "bpy.utils.keyconfig_init()");
|
2019-04-15 08:40:15 +02:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2018-11-13 19:02:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WM_keyconfig_init(bContext *C)
|
2009-07-18 19:40:26 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindowManager *wm = CTX_wm_manager(C);
|
|
|
|
|
|
|
|
|
|
/* create standard key configs */
|
|
|
|
|
if (wm->defaultconf == NULL) {
|
|
|
|
|
/* Keep lowercase to match the preset filename. */
|
|
|
|
|
wm->defaultconf = WM_keyconfig_new(wm, WM_KEYCONFIG_STR_DEFAULT, false);
|
|
|
|
|
}
|
|
|
|
|
if (wm->addonconf == NULL) {
|
|
|
|
|
wm->addonconf = WM_keyconfig_new(wm, WM_KEYCONFIG_STR_DEFAULT " addon", false);
|
|
|
|
|
}
|
|
|
|
|
if (wm->userconf == NULL) {
|
|
|
|
|
wm->userconf = WM_keyconfig_new(wm, WM_KEYCONFIG_STR_DEFAULT " user", false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* initialize only after python init is done, for keymaps that
|
|
|
|
|
* use python operators */
|
|
|
|
|
if (CTX_py_init_get(C) && (wm->initialized & WM_KEYCONFIG_IS_INITIALIZED) == 0) {
|
|
|
|
|
/* create default key config, only initialize once,
|
|
|
|
|
* it's persistent across sessions */
|
|
|
|
|
if (!(wm->defaultconf->flag & KEYCONF_INIT_DEFAULT)) {
|
|
|
|
|
wm_window_keymap(wm->defaultconf);
|
|
|
|
|
ED_spacetypes_keymap(wm->defaultconf);
|
|
|
|
|
|
|
|
|
|
WM_keyconfig_reload(C);
|
|
|
|
|
|
|
|
|
|
wm->defaultconf->flag |= KEYCONF_INIT_DEFAULT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WM_keyconfig_update_tag(NULL, NULL);
|
|
|
|
|
WM_keyconfig_update(wm);
|
|
|
|
|
|
|
|
|
|
wm->initialized |= WM_KEYCONFIG_IS_INITIALIZED;
|
|
|
|
|
}
|
2009-07-18 19:40:26 +00:00
|
|
|
}
|
|
|
|
|
|
2009-11-11 04:08:09 +00:00
|
|
|
void WM_check(bContext *C)
|
2007-12-24 18:27:28 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
Main *bmain = CTX_data_main(C);
|
|
|
|
|
wmWindowManager *wm = CTX_wm_manager(C);
|
|
|
|
|
|
|
|
|
|
/* wm context */
|
|
|
|
|
if (wm == NULL) {
|
|
|
|
|
wm = CTX_data_main(C)->wm.first;
|
|
|
|
|
CTX_wm_manager_set(C, wm);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (wm == NULL || BLI_listbase_is_empty(&wm->windows)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 16:44:24 +11:00
|
|
|
/* Run before loading the keyconfig. */
|
|
|
|
|
if (wm->message_bus == NULL) {
|
|
|
|
|
wm->message_bus = WM_msgbus_create();
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (!G.background) {
|
|
|
|
|
/* case: fileread */
|
|
|
|
|
if ((wm->initialized & WM_WINDOW_IS_INITIALIZED) == 0) {
|
|
|
|
|
WM_keyconfig_init(C);
|
|
|
|
|
WM_autosave_init(wm);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* case: no open windows at all, for old file reads */
|
|
|
|
|
wm_window_ghostwindows_ensure(wm);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* case: fileread */
|
|
|
|
|
/* note: this runs in bg mode to set the screen context cb */
|
|
|
|
|
if ((wm->initialized & WM_WINDOW_IS_INITIALIZED) == 0) {
|
|
|
|
|
ED_screens_initialize(bmain, wm);
|
|
|
|
|
wm->initialized |= WM_WINDOW_IS_INITIALIZED;
|
|
|
|
|
}
|
2007-12-24 18:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
2009-05-30 04:16:24 +00:00
|
|
|
void wm_clear_default_size(bContext *C)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindowManager *wm = CTX_wm_manager(C);
|
|
|
|
|
wmWindow *win;
|
|
|
|
|
|
|
|
|
|
/* wm context */
|
|
|
|
|
if (wm == NULL) {
|
|
|
|
|
wm = CTX_data_main(C)->wm.first;
|
|
|
|
|
CTX_wm_manager_set(C, wm);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (wm == NULL || BLI_listbase_is_empty(&wm->windows)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (win = wm->windows.first; win; win = win->next) {
|
|
|
|
|
win->sizex = 0;
|
|
|
|
|
win->sizey = 0;
|
|
|
|
|
win->posx = 0;
|
|
|
|
|
win->posy = 0;
|
|
|
|
|
}
|
2009-05-30 04:16:24 +00:00
|
|
|
}
|
|
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
/* on startup, it adds all data, for matching */
|
2017-11-09 04:57:14 +01:00
|
|
|
void wm_add_default(Main *bmain, bContext *C)
|
2007-12-24 18:27:28 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindowManager *wm = BKE_libblock_alloc(bmain, ID_WM, "WinMan", 0);
|
|
|
|
|
wmWindow *win;
|
|
|
|
|
bScreen *screen = CTX_wm_screen(C); /* XXX from file read hrmf */
|
|
|
|
|
WorkSpace *workspace;
|
|
|
|
|
WorkSpaceLayout *layout = BKE_workspace_layout_find_global(bmain, screen, &workspace);
|
|
|
|
|
|
|
|
|
|
CTX_wm_manager_set(C, wm);
|
|
|
|
|
win = wm_window_new(C, NULL);
|
|
|
|
|
win->scene = CTX_data_scene(C);
|
|
|
|
|
STRNCPY(win->view_layer_name, CTX_data_view_layer(C)->name);
|
|
|
|
|
BKE_workspace_active_set(win->workspace_hook, workspace);
|
|
|
|
|
BKE_workspace_hook_layout_for_workspace_set(win->workspace_hook, workspace, layout);
|
|
|
|
|
screen->winid = win->winid;
|
|
|
|
|
|
|
|
|
|
wm->winactive = win;
|
|
|
|
|
wm->file_saved = 1;
|
|
|
|
|
wm_window_make_drawable(wm, win);
|
2007-12-24 18:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-08 16:43:19 +00:00
|
|
|
/* context is allowed to be NULL, do not free wm itself (library.c) */
|
2007-12-24 18:27:28 +00:00
|
|
|
void wm_close_and_free(bContext *C, wmWindowManager *wm)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindow *win;
|
|
|
|
|
wmOperator *op;
|
|
|
|
|
wmKeyConfig *keyconf;
|
2009-10-20 13:58:53 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (wm->autosavetimer) {
|
|
|
|
|
wm_autosave_timer_ended(wm);
|
|
|
|
|
}
|
2009-10-20 13:58:53 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
while ((win = BLI_pophead(&wm->windows))) {
|
|
|
|
|
/* prevent draw clear to use screen */
|
|
|
|
|
BKE_workspace_active_set(win->workspace_hook, NULL);
|
|
|
|
|
wm_window_free(C, wm, win);
|
|
|
|
|
}
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
while ((op = BLI_pophead(&wm->operators))) {
|
|
|
|
|
WM_operator_free(op);
|
|
|
|
|
}
|
2.5 Branch
==========
* Changed wmOperatorType, removing init/exit callbacks and adding cancel
callback, removed default storage in favor of properties. Defined return
values for exec/invoke/modal/cancel.
* Don't allocate operator on the stack, and removed operator copy for
handlers. Now it frees based on return values from callbacks, and just
keeps a wmOperator on the heap. Also it now registers after the operator
is fully finished, to get the correct final properties.
* Changed OP_get_* functions to return 1 if the property is found and 0
otherwise, gives more readable code in my opinion. Added OP_verify_*
functions to quickly check if the property is available and set if it's
not, that's common for exec/invoke.
* Removed WM_operatortypelist_append in favor of WM_operatortype_append
which takes a function pointer instead of a list, avoids macro's and
duplicating code.
* Fix a crash where the handler would still be used while it was freed by
the operator.
* Spacetypes now have operatortypes() and keymap() callbacks to abstract
them a bit more.
* Renamed C->curarea to C->area for consistency. Removed View3D/View2D/
SpaceIpo from bContext, seems bad to keep these.
* Set context variables like window/screen/area/region to NULL again when
leaving that context, instead of leaving the pointers there.
* Added if(G.f & G_DEBUG) for many of the prints, makes output a bit
cleaner and easier to debug.
* Fixed priority of the editors/interface module in scons, would otherwise
give link errors.
* Added start of generic view2d api.
* Added space_time with some basic drawing and a single operator to change
the frame.
2008-06-11 10:10:31 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
while ((keyconf = BLI_pophead(&wm->keyconfigs))) {
|
|
|
|
|
WM_keyconfig_free(keyconf);
|
|
|
|
|
}
|
Key Configuration
Keymaps are now saveable and configurable from the user preferences, note
that editing one item in a keymap means the whole keymap is now defined by
the user and will not be updated by Blender, an option for syncing might be
added later. The outliner interface is still there, but I will probably
remove it.
There's actually 3 levels now:
* Default builtin key configuration.
* Key configuration loaded from .py file, for configs like Blender 2.4x
or other 3D applications.
* Keymaps edited by the user and saved in .B.blend. These can be saved
to .py files as well to make creating distributable configurations
easier.
Also, user preferences sections were reorganized a bit, now there is:
Interface, Editing, Input, Files and System.
Implementation notes:
* wmKeyConfig was added which represents a key configuration containing
keymaps.
* wmKeymapItem was renamed to wmKeyMapItem for consistency with wmKeyMap.
* Modal maps are not wrapped yet.
* User preferences DNA file reading did not support newdataadr() yet,
added this now for reading keymaps.
* Key configuration related settings are now RNA wrapped.
* is_property_set and is_property_hidden python methods were added.
2009-10-08 18:40:03 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BLI_freelistN(&wm->queue);
|
2017-11-13 19:43:34 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (wm->message_bus != NULL) {
|
|
|
|
|
WM_msgbus_destroy(wm->message_bus);
|
|
|
|
|
}
|
2017-11-13 19:43:34 +11:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
BLI_freelistN(&wm->paintcursors);
|
2014-07-21 12:02:05 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
WM_drag_free_list(&wm->drags);
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
wm_reports_free(wm);
|
2018-03-19 14:17:59 +01:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (wm->undo_stack) {
|
|
|
|
|
BKE_undosys_stack_destroy(wm->undo_stack);
|
|
|
|
|
wm->undo_stack = NULL;
|
|
|
|
|
}
|
2018-03-19 14:17:59 +01:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (C && CTX_wm_manager(C) == wm) {
|
|
|
|
|
CTX_wm_manager_set(C, NULL);
|
|
|
|
|
}
|
2007-12-24 18:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void wm_close_and_free_all(bContext *C, ListBase *wmlist)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
wmWindowManager *wm;
|
|
|
|
|
|
|
|
|
|
while ((wm = wmlist->first)) {
|
|
|
|
|
wm_close_and_free(C, wm);
|
|
|
|
|
BLI_remlink(wmlist, wm);
|
|
|
|
|
BKE_libblock_free_data(&wm->id, true);
|
|
|
|
|
MEM_freeN(wm);
|
|
|
|
|
}
|
2007-12-24 18:27:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WM_main(bContext *C)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
/* Single refresh before handling events.
|
|
|
|
|
* This ensures we don't run operators before the depsgraph has been evaluated. */
|
|
|
|
|
wm_event_do_refresh_wm_and_depsgraph(C);
|
2017-08-25 20:26:52 +10:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
while (1) {
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
/* get events from ghost, handle window events, add to window queues */
|
|
|
|
|
wm_window_process_events(C);
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
/* per window, all events to the window, screen, area and region handlers */
|
|
|
|
|
wm_event_do_handlers(C);
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
/* events have left notes about changes, we handle and cache it */
|
|
|
|
|
wm_event_do_notifiers(C);
|
2018-06-07 16:43:52 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
/* execute cached changes draw */
|
|
|
|
|
wm_draw_update(C);
|
|
|
|
|
}
|
2007-12-24 18:27:28 +00:00
|
|
|
}
|