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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2009-01-06 21:14:37 +0300
committerTon Roosendaal <ton@blender.org>2009-01-06 21:14:37 +0300
commit1c933cdb782e3c81f9215bf2ed17cfa4e8a43b6a (patch)
tree5e841de25ffa4024d7a1728daaa0cb37ca1c6b56 /source/blender/editors/screen/area.c
parente99d12508e0726aa2ca3fc7f17b08b3716ebf28b (diff)
2.5
Cleaned area prevspace, and made exported API for it. Also added operator-free on 'cancel' in filewindow.
Diffstat (limited to 'source/blender/editors/screen/area.c')
-rw-r--r--source/blender/editors/screen/area.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index ee0da138941..e2cafeceb9e 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -586,10 +586,9 @@ void area_copy_data(ScrArea *sa1, ScrArea *sa2, int swap_space)
#endif
}
-/* *********** Space switching code, local now *********** */
-/* XXX make operator for this */
+/* *********** Space switching code *********** */
-void area_newspace(bContext *C, ScrArea *sa, int type)
+void ED_area_newspace(bContext *C, ScrArea *sa, int type)
{
if(sa->spacetype != type) {
SpaceType *st;
@@ -646,10 +645,12 @@ void area_newspace(bContext *C, ScrArea *sa, int type)
/* tell WM to refresh, cursor types etc */
WM_event_add_mousemove(C);
+
+ ED_area_tag_redraw(sa);
}
}
-void area_prevspace(bContext *C)
+void ED_area_prevspace(bContext *C)
{
SpaceLink *sl= CTX_wm_space_data(C);
ScrArea *sa= CTX_wm_area(C);
@@ -665,11 +666,6 @@ void area_prevspace(bContext *C)
#endif
if(sl->next) {
-
- BLI_remlink(&sa->spacedata, sl);
- BLI_addtail(&sa->spacedata, sl);
-
- sl= sa->spacedata.first;
#if 0 // XXX check whether this is still needed
if (sfile->spacetype == SPACE_SCRIPT) {
@@ -678,11 +674,12 @@ void area_prevspace(bContext *C)
}
#endif
- area_newspace(C, sa, SPACE_FILE);
+ ED_area_newspace(C, sa, sl->next->spacetype);
}
else {
- area_newspace(C, sa, SPACE_INFO);
+ ED_area_newspace(C, sa, SPACE_INFO);
}
+ ED_area_tag_redraw(sa);
}
static char *windowtype_pup(void)
@@ -725,7 +722,7 @@ static char *windowtype_pup(void)
static void spacefunc(struct bContext *C, void *arg1, void *arg2)
{
- area_newspace(C, CTX_wm_area(C), CTX_wm_area(C)->butspacetype);
+ ED_area_newspace(C, CTX_wm_area(C), CTX_wm_area(C)->butspacetype);
ED_area_tag_redraw(CTX_wm_area(C));
}