2008-12-14 11:25:00 +00:00
|
|
|
/**
|
|
|
|
|
* $Id:
|
|
|
|
|
*
|
|
|
|
|
* ***** 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
|
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 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,
|
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) 2008 Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
#include "DNA_space_types.h"
|
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
|
|
2009-07-06 17:29:32 +00:00
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
2009-03-03 10:24:06 +00:00
|
|
|
#include "BIF_gl.h"
|
|
|
|
|
|
2008-12-14 12:16:55 +00:00
|
|
|
#include "BLO_readfile.h"
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
#include "BLI_blenlib.h"
|
2009-11-10 20:43:45 +00:00
|
|
|
#include "BLI_math.h"
|
2008-12-14 11:25:00 +00:00
|
|
|
#include "BLI_rand.h"
|
2009-09-13 09:41:00 +00:00
|
|
|
#include "BLI_storage_types.h"
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
#include "BKE_colortools.h"
|
2008-12-18 02:56:48 +00:00
|
|
|
#include "BKE_context.h"
|
2008-12-14 11:25:00 +00:00
|
|
|
#include "BKE_screen.h"
|
|
|
|
|
|
|
|
|
|
#include "ED_space_api.h"
|
|
|
|
|
#include "ED_screen.h"
|
2009-01-06 14:42:54 +00:00
|
|
|
#include "ED_fileselect.h"
|
2008-12-14 11:25:00 +00:00
|
|
|
|
2009-03-03 10:24:06 +00:00
|
|
|
#include "IMB_imbuf_types.h"
|
|
|
|
|
#include "IMB_thumbs.h"
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
|
|
#include "UI_interface.h"
|
|
|
|
|
#include "UI_resources.h"
|
|
|
|
|
#include "UI_view2d.h"
|
|
|
|
|
|
2009-03-08 13:14:12 +00:00
|
|
|
|
2008-12-14 12:16:55 +00:00
|
|
|
#include "ED_markers.h"
|
2009-01-06 14:42:54 +00:00
|
|
|
#include "ED_fileselect.h"
|
2008-12-14 12:16:55 +00:00
|
|
|
|
|
|
|
|
#include "file_intern.h" // own include
|
2009-01-06 14:42:54 +00:00
|
|
|
#include "fsmenu.h"
|
|
|
|
|
#include "filelist.h"
|
2008-12-14 11:25:00 +00:00
|
|
|
|
2008-12-14 12:16:55 +00:00
|
|
|
/* ******************** default callbacks for file space ***************** */
|
2008-12-14 11:25:00 +00:00
|
|
|
|
2008-12-22 10:09:56 +00:00
|
|
|
static SpaceLink *file_new(const bContext *C)
|
2008-12-14 11:25:00 +00:00
|
|
|
{
|
|
|
|
|
ARegion *ar;
|
|
|
|
|
SpaceFile *sfile;
|
|
|
|
|
|
2008-12-14 12:16:55 +00:00
|
|
|
sfile= MEM_callocN(sizeof(SpaceFile), "initfile");
|
2009-01-08 18:47:16 +00:00
|
|
|
sfile->spacetype= SPACE_FILE;
|
2009-01-06 14:42:54 +00:00
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
/* header */
|
|
|
|
|
ar= MEM_callocN(sizeof(ARegion), "header for file");
|
|
|
|
|
BLI_addtail(&sfile->regionbase, ar);
|
|
|
|
|
ar->regiontype= RGN_TYPE_HEADER;
|
2009-03-09 08:31:45 +00:00
|
|
|
ar->alignment= RGN_ALIGN_TOP;
|
2009-01-06 14:42:54 +00:00
|
|
|
|
|
|
|
|
/* channel list region */
|
|
|
|
|
ar= MEM_callocN(sizeof(ARegion), "channel area for file");
|
|
|
|
|
BLI_addtail(&sfile->regionbase, ar);
|
|
|
|
|
ar->regiontype= RGN_TYPE_CHANNELS;
|
2009-03-09 08:31:45 +00:00
|
|
|
ar->alignment= RGN_ALIGN_LEFT;
|
2009-01-06 14:42:54 +00:00
|
|
|
|
|
|
|
|
/* ui list region */
|
|
|
|
|
ar= MEM_callocN(sizeof(ARegion), "ui area for file");
|
|
|
|
|
BLI_addtail(&sfile->regionbase, ar);
|
|
|
|
|
ar->regiontype= RGN_TYPE_UI;
|
|
|
|
|
ar->alignment= RGN_ALIGN_TOP;
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
/* main area */
|
|
|
|
|
ar= MEM_callocN(sizeof(ARegion), "main area for file");
|
|
|
|
|
BLI_addtail(&sfile->regionbase, ar);
|
|
|
|
|
ar->regiontype= RGN_TYPE_WINDOW;
|
2009-01-06 14:42:54 +00:00
|
|
|
ar->v2d.scroll = (V2D_SCROLL_RIGHT | V2D_SCROLL_BOTTOM);
|
|
|
|
|
ar->v2d.align = (V2D_ALIGN_NO_NEG_X|V2D_ALIGN_NO_POS_Y);
|
2009-07-29 22:57:53 +00:00
|
|
|
ar->v2d.keepzoom = (V2D_LOCKZOOM_X|V2D_LOCKZOOM_Y|V2D_LIMITZOOM|V2D_KEEPASPECT);
|
2009-01-06 14:42:54 +00:00
|
|
|
ar->v2d.keeptot= V2D_KEEPTOT_STRICT;
|
|
|
|
|
ar->v2d.minzoom= ar->v2d.maxzoom= 1.0f;
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
return (SpaceLink *)sfile;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* not spacelink itself */
|
|
|
|
|
static void file_free(SpaceLink *sl)
|
|
|
|
|
{
|
2008-12-14 12:16:55 +00:00
|
|
|
SpaceFile *sfile= (SpaceFile *) sl;
|
2009-01-06 14:42:54 +00:00
|
|
|
|
2009-01-06 19:22:29 +00:00
|
|
|
if(sfile->files) {
|
2009-09-12 19:54:39 +00:00
|
|
|
filelist_freelib(sfile->files);
|
2009-01-06 19:22:29 +00:00
|
|
|
filelist_free(sfile->files);
|
|
|
|
|
MEM_freeN(sfile->files);
|
2009-01-08 18:47:16 +00:00
|
|
|
sfile->files= NULL;
|
2009-01-06 19:22:29 +00:00
|
|
|
}
|
|
|
|
|
|
2009-07-07 07:25:44 +00:00
|
|
|
if(sfile->folders_prev) {
|
|
|
|
|
folderlist_free(sfile->folders_prev);
|
|
|
|
|
MEM_freeN(sfile->folders_prev);
|
|
|
|
|
sfile->folders_prev= NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(sfile->folders_next) {
|
|
|
|
|
folderlist_free(sfile->folders_next);
|
|
|
|
|
MEM_freeN(sfile->folders_next);
|
|
|
|
|
sfile->folders_next= NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-06 14:42:54 +00:00
|
|
|
if (sfile->params) {
|
|
|
|
|
if(sfile->params->pupmenu)
|
|
|
|
|
MEM_freeN(sfile->params->pupmenu);
|
|
|
|
|
MEM_freeN(sfile->params);
|
2009-01-08 18:47:16 +00:00
|
|
|
sfile->params= NULL;
|
2009-01-06 14:42:54 +00:00
|
|
|
}
|
2009-03-08 13:14:12 +00:00
|
|
|
|
|
|
|
|
if (sfile->layout) {
|
|
|
|
|
MEM_freeN(sfile->layout);
|
|
|
|
|
sfile->layout = NULL;
|
|
|
|
|
}
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-02-17 13:11:09 +00:00
|
|
|
/* spacetype; init callback, area size changes, screen set, etc */
|
2008-12-14 11:25:00 +00:00
|
|
|
static void file_init(struct wmWindowManager *wm, ScrArea *sa)
|
2009-01-06 19:22:29 +00:00
|
|
|
{
|
2009-09-28 12:10:23 +00:00
|
|
|
SpaceFile *sfile= (SpaceFile*)sa->spacedata.first;
|
2009-11-23 09:47:56 +00:00
|
|
|
//printf("file_init\n");
|
2009-09-28 12:10:23 +00:00
|
|
|
|
|
|
|
|
if(sfile->layout) sfile->layout->dirty= 1;
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-17 13:11:09 +00:00
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
static SpaceLink *file_duplicate(SpaceLink *sl)
|
|
|
|
|
{
|
2009-01-06 19:22:29 +00:00
|
|
|
SpaceFile *sfileo= (SpaceFile*)sl;
|
2008-12-14 12:16:55 +00:00
|
|
|
SpaceFile *sfilen= MEM_dupallocN(sl);
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
/* clear or remove stuff from old */
|
2009-02-17 13:11:09 +00:00
|
|
|
sfilen->op = NULL; /* file window doesn't own operators */
|
2009-01-06 19:22:29 +00:00
|
|
|
|
2009-09-13 08:08:50 +00:00
|
|
|
if (sfileo->params)
|
|
|
|
|
sfilen->files = filelist_new(sfileo->params->type);
|
2009-07-07 07:25:44 +00:00
|
|
|
if(sfileo->folders_prev)
|
|
|
|
|
sfilen->folders_prev = MEM_dupallocN(sfileo->folders_prev);
|
|
|
|
|
|
|
|
|
|
if(sfileo->folders_next)
|
|
|
|
|
sfilen->folders_next = MEM_dupallocN(sfileo->folders_next);
|
|
|
|
|
|
2009-02-17 16:33:08 +00:00
|
|
|
if(sfileo->params) {
|
|
|
|
|
sfilen->params= MEM_dupallocN(sfileo->params);
|
2009-10-15 11:11:52 +00:00
|
|
|
file_change_dir(sfilen, 0);
|
2009-02-17 16:33:08 +00:00
|
|
|
}
|
2009-03-08 13:14:12 +00:00
|
|
|
if (sfileo->layout) {
|
|
|
|
|
sfilen->layout= MEM_dupallocN(sfileo->layout);
|
|
|
|
|
}
|
2008-12-14 12:16:55 +00:00
|
|
|
return (SpaceLink *)sfilen;
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
static void file_refresh(const bContext *C, ScrArea *sa)
|
|
|
|
|
{
|
2009-07-28 16:46:14 +00:00
|
|
|
SpaceFile *sfile= CTX_wm_space_file(C);
|
2009-06-29 20:23:40 +00:00
|
|
|
FileSelectParams *params = ED_fileselect_get_params(sfile);
|
|
|
|
|
|
2009-07-07 07:25:44 +00:00
|
|
|
if (!sfile->folders_prev)
|
|
|
|
|
sfile->folders_prev = folderlist_new();
|
2009-06-29 20:23:40 +00:00
|
|
|
if (!sfile->files) {
|
2009-09-12 19:54:39 +00:00
|
|
|
sfile->files = filelist_new(params->type);
|
2009-10-15 11:11:52 +00:00
|
|
|
file_change_dir(sfile, 0);
|
2009-06-29 20:23:40 +00:00
|
|
|
params->active_file = -1; // added this so it opens nicer (ton)
|
|
|
|
|
}
|
|
|
|
|
filelist_hidedot(sfile->files, params->flag & FILE_HIDE_DOT);
|
2009-07-27 19:06:33 +00:00
|
|
|
filelist_setfilter(sfile->files, params->flag & FILE_FILTER ? params->filter : 0);
|
2009-06-29 20:23:40 +00:00
|
|
|
if (filelist_empty(sfile->files))
|
|
|
|
|
{
|
|
|
|
|
filelist_readdir(sfile->files);
|
2009-09-20 18:26:02 +00:00
|
|
|
BLI_strncpy(params->dir, filelist_dir(sfile->files), FILE_MAX);
|
2009-06-29 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
if(params->sort!=FILE_SORT_NONE) filelist_sort(sfile->files, params->sort);
|
2009-09-13 09:41:00 +00:00
|
|
|
|
|
|
|
|
if (params->renamefile[0] != '\0') {
|
|
|
|
|
int idx = filelist_find(sfile->files, params->renamefile);
|
|
|
|
|
if (idx >= 0) {
|
|
|
|
|
struct direntry *file= filelist_file(sfile->files, idx);
|
|
|
|
|
if (file) {
|
|
|
|
|
file->flags |= EDITING;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
params->renamefile[0] = '\0';
|
|
|
|
|
}
|
2009-07-26 12:40:44 +00:00
|
|
|
if (sfile->layout) sfile->layout->dirty= 1;
|
|
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void file_listener(ScrArea *sa, wmNotifier *wmn)
|
|
|
|
|
{
|
|
|
|
|
SpaceFile* sfile = (SpaceFile*)sa->spacedata.first;
|
|
|
|
|
|
|
|
|
|
/* context changes */
|
|
|
|
|
switch(wmn->category) {
|
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_SPACE:
|
2009-06-29 20:23:40 +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_SPACE_FILE_LIST:
|
2009-06-29 20:23:40 +00:00
|
|
|
if (sfile->files) filelist_free(sfile->files);
|
|
|
|
|
ED_area_tag_refresh(sa);
|
2009-07-28 16:46:14 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2009-06-29 20:23:40 +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 ND_SPACE_FILE_PARAMS:
|
2009-06-29 20:23:40 +00:00
|
|
|
ED_area_tag_refresh(sa);
|
2009-07-28 16:46:14 +00:00
|
|
|
ED_area_tag_redraw(sa);
|
2009-06-29 20:23:40 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
|
|
|
|
static void file_main_area_init(wmWindowManager *wm, ARegion *ar)
|
|
|
|
|
{
|
2009-09-17 21:36:02 +00:00
|
|
|
wmKeyMap *keymap;
|
2008-12-14 11:25:00 +00:00
|
|
|
|
2008-12-16 11:24:24 +00:00
|
|
|
UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_LIST, ar->winx, ar->winy);
|
2008-12-14 11:25:00 +00:00
|
|
|
|
2009-07-05 22:26:43 +00:00
|
|
|
/* own keymaps */
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(wm->defaultconf, "File Browser", SPACE_FILE, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
|
|
|
|
|
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(wm->defaultconf, "File Browser Main", SPACE_FILE, 0);
|
2008-12-14 11:25:00 +00:00
|
|
|
WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
|
2009-02-17 13:11:09 +00:00
|
|
|
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-07-26 12:40:44 +00:00
|
|
|
static void file_main_area_listener(ARegion *ar, wmNotifier *wmn)
|
|
|
|
|
{
|
|
|
|
|
/* context changes */
|
|
|
|
|
switch(wmn->category) {
|
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_SPACE:
|
2009-07-26 12:40:44 +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_SPACE_FILE_LIST:
|
2009-07-26 12:40:44 +00:00
|
|
|
ED_region_tag_redraw(ar);
|
|
|
|
|
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 ND_SPACE_FILE_PARAMS:
|
2009-07-26 12:40:44 +00:00
|
|
|
ED_region_tag_redraw(ar);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
static void file_main_area_draw(const bContext *C, ARegion *ar)
|
|
|
|
|
{
|
|
|
|
|
/* draw entirely, view changes should be handled here */
|
2009-07-28 16:46:14 +00:00
|
|
|
SpaceFile *sfile= CTX_wm_space_file(C);
|
2009-03-14 18:15:28 +00:00
|
|
|
FileSelectParams *params = ED_fileselect_get_params(sfile);
|
|
|
|
|
FileLayout *layout=NULL;
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
View2D *v2d= &ar->v2d;
|
2009-01-06 14:42:54 +00:00
|
|
|
View2DScrollers *scrollers;
|
2008-12-14 11:25:00 +00:00
|
|
|
float col[3];
|
2009-01-06 14:42:54 +00:00
|
|
|
|
2009-07-26 12:40:44 +00:00
|
|
|
/* Needed, because filelist is not initialized on loading */
|
2009-07-26 18:52:27 +00:00
|
|
|
if (!sfile->files || filelist_empty(sfile->files))
|
2009-07-26 12:40:44 +00:00
|
|
|
file_refresh(C, NULL);
|
|
|
|
|
|
2009-03-14 18:15:28 +00:00
|
|
|
layout = ED_fileselect_get_layout(sfile, ar);
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
/* clear and setup matrix */
|
|
|
|
|
UI_GetThemeColor3fv(TH_BACK, col);
|
|
|
|
|
glClearColor(col[0], col[1], col[2], 0.0);
|
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
|
2009-02-17 13:11:09 +00:00
|
|
|
/* Allow dynamically sliders to be set, saves notifiers etc. */
|
2009-03-14 18:15:28 +00:00
|
|
|
if (layout && (layout->flag == FILE_LAYOUT_VER)) {
|
2009-02-17 13:11:09 +00:00
|
|
|
v2d->scroll = V2D_SCROLL_RIGHT;
|
2009-03-09 09:15:23 +00:00
|
|
|
v2d->keepofs &= ~V2D_LOCKOFS_Y;
|
|
|
|
|
v2d->keepofs |= V2D_LOCKOFS_X;
|
|
|
|
|
}
|
|
|
|
|
else {
|
2009-02-17 13:11:09 +00:00
|
|
|
v2d->scroll = V2D_SCROLL_BOTTOM;
|
2009-03-09 09:15:23 +00:00
|
|
|
v2d->keepofs &= ~V2D_LOCKOFS_X;
|
|
|
|
|
v2d->keepofs |= V2D_LOCKOFS_Y;
|
|
|
|
|
}
|
|
|
|
|
/* v2d has initialized flag, so this call will only set the mask correct */
|
2009-02-17 13:11:09 +00:00
|
|
|
UI_view2d_region_reinit(v2d, V2D_COMMONVIEW_LIST, ar->winx, ar->winy);
|
|
|
|
|
|
2009-01-28 11:27:25 +00:00
|
|
|
/* sets tile/border settings in sfile */
|
|
|
|
|
file_calc_previews(C, ar);
|
2009-01-06 14:42:54 +00:00
|
|
|
|
2009-02-17 13:11:09 +00:00
|
|
|
/* set view */
|
|
|
|
|
UI_view2d_view_ortho(C, v2d);
|
|
|
|
|
|
2009-01-28 11:27:25 +00:00
|
|
|
/* on first read, find active file */
|
|
|
|
|
if (params->active_file == -1) {
|
|
|
|
|
wmEvent *event= CTX_wm_window(C)->eventstate;
|
2009-07-28 16:46:14 +00:00
|
|
|
file_hilight_set(sfile, ar, event->x, event->y);
|
2009-01-28 11:27:25 +00:00
|
|
|
}
|
|
|
|
|
|
2009-08-20 18:39:25 +00:00
|
|
|
file_draw_list(C, ar);
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
/* reset view matrix */
|
|
|
|
|
UI_view2d_view_restore(C);
|
|
|
|
|
|
2009-01-06 14:42:54 +00:00
|
|
|
/* scrollers */
|
|
|
|
|
scrollers= UI_view2d_scrollers_calc(C, v2d, V2D_ARG_DUMMY, V2D_ARG_DUMMY, V2D_ARG_DUMMY, V2D_ARG_DUMMY);
|
|
|
|
|
UI_view2d_scrollers_draw(C, v2d, scrollers);
|
|
|
|
|
UI_view2d_scrollers_free(scrollers);
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void file_operatortypes(void)
|
|
|
|
|
{
|
2009-02-14 14:25:48 +00:00
|
|
|
WM_operatortype_append(FILE_OT_select);
|
2009-03-29 02:15:13 +00:00
|
|
|
WM_operatortype_append(FILE_OT_select_all_toggle);
|
|
|
|
|
WM_operatortype_append(FILE_OT_select_border);
|
2009-02-14 14:25:48 +00:00
|
|
|
WM_operatortype_append(FILE_OT_select_bookmark);
|
|
|
|
|
WM_operatortype_append(FILE_OT_loadimages);
|
|
|
|
|
WM_operatortype_append(FILE_OT_highlight);
|
2009-09-04 04:29:54 +00:00
|
|
|
WM_operatortype_append(FILE_OT_execute);
|
2009-02-14 14:25:48 +00:00
|
|
|
WM_operatortype_append(FILE_OT_cancel);
|
|
|
|
|
WM_operatortype_append(FILE_OT_parent);
|
2009-07-07 07:25:44 +00:00
|
|
|
WM_operatortype_append(FILE_OT_previous);
|
|
|
|
|
WM_operatortype_append(FILE_OT_next);
|
2009-03-12 06:40:03 +00:00
|
|
|
WM_operatortype_append(FILE_OT_refresh);
|
2009-03-08 13:14:12 +00:00
|
|
|
WM_operatortype_append(FILE_OT_bookmark_toggle);
|
2009-11-28 14:37:21 +00:00
|
|
|
WM_operatortype_append(FILE_OT_bookmark_add);
|
2009-06-29 22:16:48 +00:00
|
|
|
WM_operatortype_append(FILE_OT_delete_bookmark);
|
2009-06-30 18:29:30 +00:00
|
|
|
WM_operatortype_append(FILE_OT_hidedot);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_operatortype_append(FILE_OT_filenum);
|
2009-07-10 17:05:04 +00:00
|
|
|
WM_operatortype_append(FILE_OT_directory_new);
|
|
|
|
|
WM_operatortype_append(FILE_OT_delete);
|
2009-07-26 18:52:27 +00:00
|
|
|
WM_operatortype_append(FILE_OT_rename);
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-28 12:28:50 +00:00
|
|
|
/* NOTE: do not add .blend file reading on this level */
|
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
|
|
|
void file_keymap(struct wmKeyConfig *keyconf)
|
2008-12-14 11:25:00 +00:00
|
|
|
{
|
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
|
|
|
wmKeyMapItem *kmi;
|
2009-07-05 22:26:43 +00:00
|
|
|
/* keys for all areas */
|
2009-12-24 09:26:06 +00:00
|
|
|
wmKeyMap *keymap= WM_keymap_find(keyconf, "File Browser", SPACE_FILE, 0);
|
2009-06-29 20:23:40 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_bookmark_toggle", NKEY, KM_PRESS, 0, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_parent", PKEY, KM_PRESS, 0, 0);
|
2009-11-28 14:37:21 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_bookmark_add", BKEY, KM_PRESS, KM_CTRL, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_hidedot", HKEY, KM_PRESS, 0, 0);
|
2009-07-07 07:25:44 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_previous", BACKSPACEKEY, KM_PRESS, 0, 0);
|
|
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_next", BACKSPACEKEY, KM_PRESS, KM_SHIFT, 0);
|
2009-07-26 18:52:27 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_directory_new", IKEY, KM_PRESS, 0, 0); /* XXX needs button */
|
2009-07-10 17:05:04 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_delete", XKEY, KM_PRESS, 0, 0);
|
2009-09-28 12:33:52 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_delete", DELKEY, KM_PRESS, 0, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
|
|
|
|
|
/* keys for main area */
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(keyconf, "File Browser Main", SPACE_FILE, 0);
|
2010-01-19 03:59:05 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_select_execute", LEFTMOUSE, KM_DBL_CLICK, 0, 0);
|
|
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_select", LEFTMOUSE, KM_CLICK, 0, 0);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_select", LEFTMOUSE, KM_CLICK, KM_SHIFT, 0);
|
2009-11-22 22:23:58 +00:00
|
|
|
RNA_boolean_set(kmi->ptr, "extend", 1);
|
2009-03-29 02:15:13 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_select_all_toggle", AKEY, KM_PRESS, 0, 0);
|
|
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_select_border", BKEY, KM_PRESS, 0, 0);
|
2009-11-22 22:23:58 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_select_border", EVT_TWEAK_L, KM_ANY, 0, 0);
|
2009-07-26 18:52:27 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_rename", LEFTMOUSE, KM_PRESS, KM_CTRL, 0);
|
2009-11-22 22:23:58 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_highlight", MOUSEMOVE, KM_ANY, KM_ANY, 0);
|
2009-02-14 14:25:48 +00:00
|
|
|
WM_keymap_add_item(keymap, "FILE_OT_loadimages", TIMER1, KM_ANY, KM_ANY, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADPLUSKEY, KM_PRESS, 0, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", 1);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADPLUSKEY, KM_PRESS, KM_SHIFT, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", 10);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADPLUSKEY, KM_PRESS, KM_CTRL, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", 100);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADMINUS, KM_PRESS, 0,0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", -1);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADMINUS, KM_PRESS, KM_SHIFT, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", -10);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADMINUS, KM_PRESS, KM_CTRL, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment",-100);
|
2009-06-30 18:29:30 +00:00
|
|
|
|
2009-07-05 22:26:43 +00:00
|
|
|
/* keys for button area (top) */
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(keyconf, "File Browser Buttons", SPACE_FILE, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADPLUSKEY, KM_PRESS, 0, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", 1);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADPLUSKEY, KM_PRESS, KM_SHIFT, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", 10);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADPLUSKEY, KM_PRESS, KM_CTRL, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", 100);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADMINUS, KM_PRESS, 0, 0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", -1);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADMINUS, KM_PRESS, KM_SHIFT,0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment", -10);
|
|
|
|
|
kmi = WM_keymap_add_item(keymap, "FILE_OT_filenum", PADMINUS, KM_PRESS, KM_CTRL,0);
|
|
|
|
|
RNA_int_set(kmi->ptr, "increment",-100);
|
2009-01-06 14:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void file_channel_area_init(wmWindowManager *wm, ARegion *ar)
|
|
|
|
|
{
|
2009-09-17 21:36:02 +00:00
|
|
|
wmKeyMap *keymap;
|
2009-07-05 22:26:43 +00:00
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
ED_region_panels_init(wm, ar);
|
2009-07-05 22:26:43 +00:00
|
|
|
|
|
|
|
|
/* own keymaps */
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(wm->defaultconf, "File Browser", SPACE_FILE, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
|
2009-01-06 14:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void file_channel_area_draw(const bContext *C, ARegion *ar)
|
|
|
|
|
{
|
2009-07-29 22:57:53 +00:00
|
|
|
ED_region_panels(C, ar, 1, NULL, -1);
|
2009-06-29 20:23:40 +00:00
|
|
|
}
|
2009-01-06 14:42:54 +00:00
|
|
|
|
2009-06-29 20:23:40 +00:00
|
|
|
static void file_channel_area_listener(ARegion *ar, wmNotifier *wmn)
|
|
|
|
|
{
|
|
|
|
|
/* context changes */
|
|
|
|
|
switch(wmn->category) {
|
|
|
|
|
|
|
|
|
|
}
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
|
|
|
|
static void file_header_area_init(wmWindowManager *wm, ARegion *ar)
|
|
|
|
|
{
|
2009-06-29 20:23:40 +00:00
|
|
|
ED_region_header_init(ar);
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void file_header_area_draw(const bContext *C, ARegion *ar)
|
|
|
|
|
{
|
2009-06-29 20:23:40 +00:00
|
|
|
ED_region_header(C, ar);
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-06 14:42:54 +00:00
|
|
|
/* add handlers, stuff you only do once or on area/region changes */
|
|
|
|
|
static void file_ui_area_init(wmWindowManager *wm, ARegion *ar)
|
|
|
|
|
{
|
2009-09-17 21:36:02 +00:00
|
|
|
wmKeyMap *keymap;
|
2009-07-05 22:26:43 +00:00
|
|
|
|
2009-01-06 14:42:54 +00:00
|
|
|
UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_HEADER, ar->winx, ar->winy);
|
2009-07-05 22:26:43 +00:00
|
|
|
|
|
|
|
|
/* own keymap */
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(wm->defaultconf, "File Browser", SPACE_FILE, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
|
|
|
|
|
|
2009-12-24 09:26:06 +00:00
|
|
|
keymap= WM_keymap_find(wm->defaultconf, "File Browser Buttons", SPACE_FILE, 0);
|
2009-07-05 22:26:43 +00:00
|
|
|
WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
|
2009-01-06 14:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void file_ui_area_draw(const bContext *C, ARegion *ar)
|
|
|
|
|
{
|
|
|
|
|
float col[3];
|
|
|
|
|
/* clear */
|
2009-03-09 08:31:45 +00:00
|
|
|
UI_GetThemeColor3fv(TH_PANEL, col);
|
2009-01-06 14:42:54 +00:00
|
|
|
glClearColor(col[0], col[1], col[2], 0.0);
|
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
|
|
/* set view2d view matrix for scrolling (without scrollers) */
|
|
|
|
|
UI_view2d_view_ortho(C, &ar->v2d);
|
|
|
|
|
|
|
|
|
|
file_draw_buttons(C, ar);
|
|
|
|
|
|
|
|
|
|
UI_view2d_view_restore(C);
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-26 19:23:07 +00:00
|
|
|
static void file_ui_area_listener(ARegion *ar, wmNotifier *wmn)
|
|
|
|
|
{
|
2008-12-14 11:25:00 +00:00
|
|
|
/* context changes */
|
2009-07-26 19:23:07 +00:00
|
|
|
switch(wmn->category) {
|
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_SPACE:
|
2009-07-26 19:23:07 +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_SPACE_FILE_LIST:
|
2009-07-26 19:23:07 +00:00
|
|
|
ED_region_tag_redraw(ar);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
/* only called once, from space/spacetypes.c */
|
|
|
|
|
void ED_spacetype_file(void)
|
|
|
|
|
{
|
|
|
|
|
SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype file");
|
|
|
|
|
ARegionType *art;
|
|
|
|
|
|
|
|
|
|
st->spaceid= SPACE_FILE;
|
2009-12-19 22:37:51 +00:00
|
|
|
strncpy(st->name, "File", BKE_ST_MAXNAME);
|
2008-12-14 11:25:00 +00:00
|
|
|
|
|
|
|
|
st->new= file_new;
|
|
|
|
|
st->free= file_free;
|
|
|
|
|
st->init= file_init;
|
|
|
|
|
st->duplicate= file_duplicate;
|
2009-06-29 20:23:40 +00:00
|
|
|
st->refresh= file_refresh;
|
|
|
|
|
st->listener= file_listener;
|
2008-12-14 11:25:00 +00:00
|
|
|
st->operatortypes= file_operatortypes;
|
|
|
|
|
st->keymap= file_keymap;
|
|
|
|
|
|
|
|
|
|
/* regions: main window */
|
|
|
|
|
art= MEM_callocN(sizeof(ARegionType), "spacetype file region");
|
|
|
|
|
art->regionid = RGN_TYPE_WINDOW;
|
|
|
|
|
art->init= file_main_area_init;
|
|
|
|
|
art->draw= file_main_area_draw;
|
2009-07-26 12:40:44 +00:00
|
|
|
art->listener= file_main_area_listener;
|
2009-01-06 14:42:54 +00:00
|
|
|
art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D;
|
2008-12-14 11:25:00 +00:00
|
|
|
BLI_addhead(&st->regiontypes, art);
|
|
|
|
|
|
|
|
|
|
/* regions: header */
|
|
|
|
|
art= MEM_callocN(sizeof(ARegionType), "spacetype file region");
|
|
|
|
|
art->regionid = RGN_TYPE_HEADER;
|
2008-12-17 10:25:02 +00:00
|
|
|
art->minsizey= HEADERY;
|
2009-11-27 06:24:09 +00:00
|
|
|
art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D|ED_KEYMAP_HEADER;
|
2008-12-14 11:25:00 +00:00
|
|
|
art->init= file_header_area_init;
|
|
|
|
|
art->draw= file_header_area_draw;
|
2009-06-29 20:23:40 +00:00
|
|
|
// art->listener= file_header_area_listener;
|
2008-12-14 11:25:00 +00:00
|
|
|
BLI_addhead(&st->regiontypes, art);
|
2008-12-14 12:16:55 +00:00
|
|
|
|
2009-01-06 14:42:54 +00:00
|
|
|
/* regions: ui */
|
|
|
|
|
art= MEM_callocN(sizeof(ARegionType), "spacetype file region");
|
|
|
|
|
art->regionid = RGN_TYPE_UI;
|
2009-03-09 08:31:45 +00:00
|
|
|
art->minsizey= 60;
|
2009-01-06 14:42:54 +00:00
|
|
|
art->keymapflag= ED_KEYMAP_UI;
|
2009-07-26 19:23:07 +00:00
|
|
|
art->listener= file_ui_area_listener;
|
2009-01-06 14:42:54 +00:00
|
|
|
art->init= file_ui_area_init;
|
|
|
|
|
art->draw= file_ui_area_draw;
|
|
|
|
|
BLI_addhead(&st->regiontypes, art);
|
|
|
|
|
|
|
|
|
|
/* regions: channels (directories) */
|
2008-12-14 12:16:55 +00:00
|
|
|
art= MEM_callocN(sizeof(ARegionType), "spacetype file region");
|
|
|
|
|
art->regionid = RGN_TYPE_CHANNELS;
|
2009-03-10 23:14:41 +00:00
|
|
|
art->minsizex= 240;
|
2009-07-28 18:25:02 +00:00
|
|
|
art->keymapflag= ED_KEYMAP_UI;
|
2009-06-29 20:23:40 +00:00
|
|
|
art->listener= file_channel_area_listener;
|
2009-01-06 14:42:54 +00:00
|
|
|
art->init= file_channel_area_init;
|
|
|
|
|
art->draw= file_channel_area_draw;
|
2008-12-14 12:16:55 +00:00
|
|
|
BLI_addhead(&st->regiontypes, art);
|
2009-06-29 20:23:40 +00:00
|
|
|
file_panels_register(art);
|
|
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
BKE_spacetype_register(st);
|
2009-01-06 14:42:54 +00:00
|
|
|
|
2008-12-14 11:25:00 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-06 14:42:54 +00:00
|
|
|
void ED_file_init(void)
|
|
|
|
|
{
|
|
|
|
|
char name[FILE_MAX];
|
|
|
|
|
BLI_make_file_string("/", name, BLI_gethome(), ".Bfs");
|
2009-03-12 19:36:59 +00:00
|
|
|
fsmenu_read_file(fsmenu_get(), name);
|
2009-01-06 14:42:54 +00:00
|
|
|
filelist_init_icons();
|
2009-03-03 10:24:06 +00:00
|
|
|
IMB_thumb_makedirs();
|
2009-01-06 14:42:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ED_file_exit(void)
|
|
|
|
|
{
|
2009-03-12 19:36:59 +00:00
|
|
|
fsmenu_free(fsmenu_get());
|
2009-01-06 14:42:54 +00:00
|
|
|
filelist_free_icons();
|
2009-01-18 18:24:11 +00:00
|
|
|
}
|