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>2008-12-31 21:52:15 +0300
committerTon Roosendaal <ton@blender.org>2008-12-31 21:52:15 +0300
commit471fc0947987660ff500964f453a244593b62e52 (patch)
tree1314a0321359ec6733e1b7c960210fdf6c356a32 /source/blender/editors
parent0f93d129f43ce39f045b53a09c006c4993d7ccd7 (diff)
2.5
My last one for 2008: global undo/redo back :) Happy 2009 all!
Diffstat (limited to 'source/blender/editors')
-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
3 files changed, 56 insertions, 11 deletions
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;
+}
+
+