2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2009-08-18 12:58:51 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
2009-08-18 12:58:51 +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.
|
2009-08-18 12:58:51 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
2018-06-01 18:19:39 +02:00
|
|
|
*
|
2009-08-18 12:58:51 +00:00
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
2011-02-27 20:29:51 +00:00
|
|
|
/** \file blender/editors/space_userpref/space_userpref.c
|
|
|
|
|
* \ingroup spuserpref
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2009-08-18 12:58:51 +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"
|
2009-08-18 12:58:51 +00:00
|
|
|
|
|
|
|
|
#include "BKE_context.h"
|
|
|
|
|
#include "BKE_screen.h"
|
|
|
|
|
|
|
|
|
|
#include "ED_screen.h"
|
2011-02-14 17:55:27 +00:00
|
|
|
#include "ED_space_api.h"
|
2009-08-18 12:58:51 +00:00
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
2011-03-08 13:02:26 +00:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
|
|
|
|
|
/* ******************** default callbacks for userpref space ***************** */
|
|
|
|
|
|
2018-04-21 19:30:56 +02:00
|
|
|
static SpaceLink *userpref_new(const ScrArea *UNUSED(area), const Scene *UNUSED(scene))
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
ARegion *ar;
|
|
|
|
|
SpaceUserPref *spref;
|
2012-06-27 18:29:47 +00:00
|
|
|
|
|
|
|
|
spref = MEM_callocN(sizeof(SpaceUserPref), "inituserpref");
|
|
|
|
|
spref->spacetype = SPACE_USERPREF;
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
/* header */
|
2012-06-27 18:29:47 +00:00
|
|
|
ar = MEM_callocN(sizeof(ARegion), "header for userpref");
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
BLI_addtail(&spref->regionbase, ar);
|
2012-06-27 18:29:47 +00:00
|
|
|
ar->regiontype = RGN_TYPE_HEADER;
|
2018-06-12 22:59:15 +02:00
|
|
|
ar->alignment = RGN_ALIGN_BOTTOM;
|
2012-06-27 18:29:47 +00:00
|
|
|
|
2015-11-28 17:14:45 +01:00
|
|
|
/* main region */
|
|
|
|
|
ar = MEM_callocN(sizeof(ARegion), "main region for userpref");
|
2012-06-27 18:29:47 +00:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
BLI_addtail(&spref->regionbase, ar);
|
2012-06-27 18:29:47 +00:00
|
|
|
ar->regiontype = RGN_TYPE_WINDOW;
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
return (SpaceLink *)spref;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* not spacelink itself */
|
2010-10-16 08:03:28 +00:00
|
|
|
static void userpref_free(SpaceLink *UNUSED(sl))
|
2018-06-04 09:31:30 +02:00
|
|
|
{
|
2012-09-30 06:12:47 +00:00
|
|
|
// SpaceUserPref *spref = (SpaceUserPref *)sl;
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* spacetype; init callback */
|
2010-10-16 08:03:28 +00:00
|
|
|
static void userpref_init(struct wmWindowManager *UNUSED(wm), ScrArea *UNUSED(sa))
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static SpaceLink *userpref_duplicate(SpaceLink *sl)
|
|
|
|
|
{
|
2012-06-27 18:29:47 +00:00
|
|
|
SpaceUserPref *sprefn = MEM_dupallocN(sl);
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
/* clear or remove stuff from old */
|
2012-06-27 18:29:47 +00:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
return (SpaceLink *)sprefn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
2015-11-28 17:14:45 +01:00
|
|
|
static void userpref_main_region_init(wmWindowManager *wm, ARegion *ar)
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
2012-12-31 14:56:07 +00:00
|
|
|
/* do not use here, the properties changed in userprefs do a system-wide refresh, then scroller jumps back */
|
|
|
|
|
/* ar->v2d.flag &= ~V2D_IS_INITIALISED; */
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2012-12-26 13:05:39 +00:00
|
|
|
ar->v2d.scroll = V2D_SCROLL_RIGHT | V2D_SCROLL_VERTICAL_HIDE;
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
ED_region_panels_init(wm, ar);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-28 17:14:45 +01:00
|
|
|
static void userpref_main_region_draw(const bContext *C, ARegion *ar)
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
2018-06-11 19:30:48 +02:00
|
|
|
ED_region_panels(C, ar);
|
2009-08-18 12:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-14 17:55:27 +00:00
|
|
|
static void userpref_operatortypes(void)
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-14 17:55:27 +00:00
|
|
|
static void userpref_keymap(struct wmKeyConfig *UNUSED(keyconf))
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
2018-06-04 09:31:30 +02:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
2015-11-28 17:14:45 +01:00
|
|
|
static void userpref_header_region_init(wmWindowManager *UNUSED(wm), ARegion *ar)
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
ED_region_header_init(ar);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-28 17:14:45 +01:00
|
|
|
static void userpref_header_region_draw(const bContext *C, ARegion *ar)
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
ED_region_header(C, ar);
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 09:58:01 +10:00
|
|
|
static void userpref_main_region_listener(
|
2018-07-04 15:14:57 +02:00
|
|
|
wmWindow *UNUSED(win), ScrArea *UNUSED(sa), ARegion *UNUSED(ar),
|
2017-05-02 09:58:01 +10:00
|
|
|
wmNotifier *UNUSED(wmn), const Scene *UNUSED(scene))
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
/* context changes */
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-02 09:58:01 +10:00
|
|
|
static void userpref_header_listener(
|
2018-07-04 15:14:57 +02:00
|
|
|
wmWindow *UNUSED(win), ScrArea *UNUSED(sa), ARegion *UNUSED(ar),
|
2017-05-02 09:58:01 +10:00
|
|
|
wmNotifier *UNUSED(wmn), const Scene *UNUSED(scene))
|
2009-08-18 12:58:51 +00:00
|
|
|
{
|
|
|
|
|
/* context changes */
|
2010-10-16 08:03:28 +00:00
|
|
|
#if 0
|
2012-04-28 06:31:57 +00:00
|
|
|
switch (wmn->category) {
|
2009-08-18 12:58:51 +00:00
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2012-05-19 13:55:54 +00:00
|
|
|
#endif
|
2009-08-18 12:58:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* only called once, from space/spacetypes.c */
|
|
|
|
|
void ED_spacetype_userpref(void)
|
|
|
|
|
{
|
2012-06-27 18:29:47 +00:00
|
|
|
SpaceType *st = MEM_callocN(sizeof(SpaceType), "spacetype userpref");
|
2009-08-18 12:58:51 +00:00
|
|
|
ARegionType *art;
|
2012-06-27 18:29:47 +00:00
|
|
|
|
|
|
|
|
st->spaceid = SPACE_USERPREF;
|
2009-12-19 22:37:51 +00:00
|
|
|
strncpy(st->name, "Userpref", BKE_ST_MAXNAME);
|
2012-06-27 18:29:47 +00:00
|
|
|
|
|
|
|
|
st->new = userpref_new;
|
|
|
|
|
st->free = userpref_free;
|
|
|
|
|
st->init = userpref_init;
|
|
|
|
|
st->duplicate = userpref_duplicate;
|
|
|
|
|
st->operatortypes = userpref_operatortypes;
|
|
|
|
|
st->keymap = userpref_keymap;
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
/* regions: main window */
|
2012-06-27 18:29:47 +00:00
|
|
|
art = MEM_callocN(sizeof(ARegionType), "spacetype userpref region");
|
2009-08-18 12:58:51 +00:00
|
|
|
art->regionid = RGN_TYPE_WINDOW;
|
2015-11-28 17:14:45 +01:00
|
|
|
art->init = userpref_main_region_init;
|
|
|
|
|
art->draw = userpref_main_region_draw;
|
|
|
|
|
art->listener = userpref_main_region_listener;
|
2012-06-27 18:29:47 +00:00
|
|
|
art->keymapflag = ED_KEYMAP_UI;
|
2009-08-18 12:58:51 +00:00
|
|
|
|
|
|
|
|
BLI_addhead(&st->regiontypes, art);
|
2012-06-27 18:29:47 +00:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
/* regions: header */
|
2012-06-27 18:29:47 +00:00
|
|
|
art = MEM_callocN(sizeof(ARegionType), "spacetype userpref region");
|
2009-08-18 12:58:51 +00:00
|
|
|
art->regionid = RGN_TYPE_HEADER;
|
2012-06-27 18:29:47 +00:00
|
|
|
art->prefsizey = HEADERY;
|
|
|
|
|
art->keymapflag = ED_KEYMAP_UI | ED_KEYMAP_VIEW2D | ED_KEYMAP_HEADER;
|
|
|
|
|
art->listener = userpref_header_listener;
|
2015-11-28 17:14:45 +01:00
|
|
|
art->init = userpref_header_region_init;
|
|
|
|
|
art->draw = userpref_header_region_draw;
|
2012-06-27 18:29:47 +00:00
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
BLI_addhead(&st->regiontypes, art);
|
2012-06-27 18:29:47 +00:00
|
|
|
|
|
|
|
|
|
2009-08-18 12:58:51 +00:00
|
|
|
BKE_spacetype_register(st);
|
|
|
|
|
}
|