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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2008-12-31 21:52:15 +0300
committerTon Roosendaal <ton@blender.org>2008-12-31 21:52:15 +0300
commit471fc0947987660ff500964f453a244593b62e52 (patch)
tree1314a0321359ec6733e1b7c960210fdf6c356a32 /source
parent0f93d129f43ce39f045b53a09c006c4993d7ccd7 (diff)
2.5
My last one for 2008: global undo/redo back :) Happy 2009 all!
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenkernel/intern/blender.c5
-rw-r--r--source/blender/blenloader/intern/readfile.c17
-rw-r--r--source/blender/editors/include/ED_util.h6
-rw-r--r--source/blender/editors/screen/screen_ops.c11
-rw-r--r--source/blender/editors/util/undo.c50
5 files changed, 75 insertions, 14 deletions
diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c
index 7b1406146a4..8adfe33dfe3 100644
--- a/source/blender/blenkernel/intern/blender.c
+++ b/source/blender/blenkernel/intern/blender.c
@@ -301,8 +301,9 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename)
/* no load screens? */
if(mode) {
/* comes from readfile.c */
- extern void lib_link_screen_restore(Main *, Scene *);
+ extern void lib_link_screen_restore(Main *, bScreen *, Scene *);
+ SWAP(ListBase, G.main->wm, bfd->main->wm);
SWAP(ListBase, G.main->screen, bfd->main->screen);
SWAP(ListBase, G.main->script, bfd->main->script);
@@ -315,7 +316,7 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename)
curscreen->scene= curscene;
/* clear_global will free G.main, here we can still restore pointers */
- lib_link_screen_restore(bfd->main, curscene);
+ lib_link_screen_restore(bfd->main, curscreen, curscene);
}
/* free G.main Main database */
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 04903adc03a..f79625094c8 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4046,11 +4046,26 @@ static void *restore_pointer_by_name(Main *mainp, ID *id, int user)
/* called from kernel/blender.c */
/* used to link a file (without UI) to the current UI */
/* note that it assumes the old pointers in UI are still valid, so old Main is not freed */
-void lib_link_screen_restore(Main *newmain, Scene *curscene)
+void lib_link_screen_restore(Main *newmain, bScreen *curscreen, Scene *curscene)
{
+ wmWindow *win;
+ wmWindowManager *wm;
bScreen *sc;
ScrArea *sa;
+ /* first windowmanager */
+ for(wm= newmain->wm.first; wm; wm= wm->id.next) {
+ for(win= wm->windows.first; win; win= win->next) {
+ win->screen= restore_pointer_by_name(newmain, (ID *)win->screen, 1);
+
+ if(win->screen==NULL)
+ win->screen= curscreen;
+
+ win->screen->winid= win->winid;
+ }
+ }
+
+
for(sc= newmain->screen.first; sc; sc= sc->id.next) {
sc->scene= restore_pointer_by_name(newmain, (ID *)sc->scene, 1);
diff --git a/source/blender/editors/include/ED_util.h b/source/blender/editors/include/ED_util.h
index a691ab97798..411c3f250da 100644
--- a/source/blender/editors/include/ED_util.h
+++ b/source/blender/editors/include/ED_util.h
@@ -32,6 +32,7 @@ struct Object;
struct bContext;
struct uiMenuBlockHandle;
struct uiBlock;
+struct wmOperatorType;
/* ed_util.c */
@@ -40,10 +41,9 @@ void ED_editors_exit (struct bContext *C);
/* ************** Undo ************************ */
/* undo.c */
-void ED_redo (struct bContext *C);
-void ED_undo (struct bContext *C);
void ED_undo_push (struct bContext *C, char *str);
-void ED_undo_menu (struct bContext *C);
+void ED_OT_undo (struct wmOperatorType *ot);
+void ED_OT_redo (struct wmOperatorType *ot);
/* undo_editmode.c */
void undo_editmode_push (char *name, void (*freedata)(void *),
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index a64d8cbfb11..94c003f2f3b 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -41,6 +41,7 @@
#include "WM_types.h"
#include "ED_markers.h"
+#include "ED_util.h"
#include "ED_screen.h"
#include "ED_screen_types.h"
@@ -1502,6 +1503,8 @@ void ED_operatortypes_screen(void)
WM_operatortype_append(SCREEN_OT_animation_play);
/* tools shared by more space types */
+ WM_operatortype_append(ED_OT_undo);
+ WM_operatortype_append(ED_OT_redo);
ED_marker_operatortypes();
}
@@ -1536,7 +1539,13 @@ void ED_keymap_screen(wmWindowManager *wm)
WM_keymap_add_item(keymap, "SCREEN_OT_region_flip", F5KEY, KM_PRESS, 0, 0);
WM_keymap_verify_item(keymap, "SCREEN_OT_repeat_last", F4KEY, KM_PRESS, 0, 0);
-
+
+ /* undo */
+ WM_keymap_add_item(keymap, "ED_OT_undo", ZKEY, KM_PRESS, KM_CTRL, 0);
+ WM_keymap_add_item(keymap, "ED_OT_undo", ZKEY, KM_PRESS, KM_OSKEY, 0);
+ WM_keymap_add_item(keymap, "ED_OT_redo", ZKEY, KM_PRESS, KM_SHIFT|KM_CTRL, 0);
+ WM_keymap_add_item(keymap, "ED_OT_redo", ZKEY, KM_PRESS, KM_SHIFT|KM_OSKEY, 0);
+
/* screen level global keymaps */
// err...
ED_marker_keymap(wm);
diff --git a/source/blender/editors/util/undo.c b/source/blender/editors/util/undo.c
index c7d4d1a2719..6773575ca84 100644
--- a/source/blender/editors/util/undo.c
+++ b/source/blender/editors/util/undo.c
@@ -54,8 +54,12 @@
#include "BKE_utildefines.h"
-#include "ED_util.h"
#include "ED_mesh.h"
+#include "ED_screen.h"
+#include "ED_util.h"
+
+#include "WM_api.h"
+#include "WM_types.h"
#include "UI_interface.h"
#include "UI_resources.h"
@@ -117,7 +121,7 @@ static void undo_do(bContext *C)
}
-void ED_undo(bContext *C)
+static int ed_undo_exec(bContext *C, wmOperator *op)
{
ScrArea *sa= CTX_wm_area(C);
@@ -141,15 +145,19 @@ void ED_undo(bContext *C)
undo_do(C);
}
}
+
+ WM_event_add_notifier(C, NC_WINDOW, NULL);
+
+ return OPERATOR_FINISHED;
}
-void ED_redo(bContext *C)
+static int ed_redo_exec(bContext *C, wmOperator *op)
{
ScrArea *sa= CTX_wm_area(C);
if(G.obedit) {
- if ELEM7(G.obedit->type, OB_MESH, OB_FONT, OB_CURVE, OB_SURF, OB_MBALL, OB_LATTICE, OB_ARMATURE)
- undo_editmode_step(-1);
+ //if ELEM7(G.obedit->type, OB_MESH, OB_FONT, OB_CURVE, OB_SURF, OB_MBALL, OB_LATTICE, OB_ARMATURE)
+ // undo_editmode_step(-1);
}
else {
if(G.f & G_TEXTUREPAINT)
@@ -173,13 +181,16 @@ void ED_redo(bContext *C)
}
}
}
+ WM_event_add_notifier(C, NC_WINDOW, NULL);
+ return OPERATOR_FINISHED;
+
}
void ED_undo_menu(bContext *C)
{
if(G.obedit) {
- if ELEM7(G.obedit->type, OB_MESH, OB_FONT, OB_CURVE, OB_SURF, OB_MBALL, OB_LATTICE, OB_ARMATURE)
- undo_editmode_menu();
+ //if ELEM7(G.obedit->type, OB_MESH, OB_FONT, OB_CURVE, OB_SURF, OB_MBALL, OB_LATTICE, OB_ARMATURE)
+ // undo_editmode_menu();
}
else {
if(G.f & G_PARTICLEEDIT)
@@ -198,3 +209,28 @@ void ED_undo_menu(bContext *C)
}
}
+/* ********************** */
+
+void ED_OT_undo(wmOperatorType *ot)
+{
+ /* identifiers */
+ ot->name= "Undo";
+ ot->idname= "ED_OT_undo";
+
+ /* api callbacks */
+ ot->exec= ed_undo_exec;
+ ot->poll= ED_operator_screenactive;
+}
+
+void ED_OT_redo(wmOperatorType *ot)
+{
+ /* identifiers */
+ ot->name= "Redo";
+ ot->idname= "ED_OT_redo";
+
+ /* api callbacks */
+ ot->exec= ed_redo_exec;
+ ot->poll= ED_operator_screenactive;
+}
+
+