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>2005-05-08 16:00:28 +0400
committerTon Roosendaal <ton@blender.org>2005-05-08 16:00:28 +0400
commiteec4e3271442808f47bc8f4226b82692ffbcc541 (patch)
tree2db20ec32afc3f52eaec7ff2341fb738b122d652 /source/blender/src/transform.c
parent744bb6f19a4e0679bc047c0311a187d2121eb23b (diff)
Another Transform todo: correct Undo names for using Transform.
Martin; I've added calls like: BIF_TransformSetUndo("Add Duplicate"); In advance of calling transform itself, to indicate that this is the string name to be used for Undo, and also has to be done on ESC. To make that possible I had to add a memset() to zero the global struct TransInfo. Nicely done with if(Trans.mode==TRANS_INIT) Not sure how this relates to setting constraints in advance... I always found it tricky to work a non-initalized global struct. :)
Diffstat (limited to 'source/blender/src/transform.c')
-rwxr-xr-xsource/blender/src/transform.c59
1 files changed, 51 insertions, 8 deletions
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 87de92863ff..ffb5a0a2c6a 100755
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -121,7 +121,7 @@ extern void helpline(float *vec);
#include "transform.h"
/* GLOBAL VARIABLE THAT SHOULD MOVED TO SCREEN MEMBER OR SOMETHING */
-TransInfo Trans;
+TransInfo Trans = {TFM_INIT, 0}; // enforce init on first usage
int LastMode = TFM_TRANSLATION;
#define TRANS_CANCEL 2
@@ -188,6 +188,37 @@ static void view_editmove(unsigned short event)
}
}
+static char *transform_to_undostr(TransInfo *t)
+{
+ switch (t->mode) {
+ case TFM_TRANSLATION:
+ return "Translate";
+ case TFM_ROTATION:
+ return "Rotate";
+ case TFM_RESIZE:
+ return "Scale";
+ case TFM_TOSPHERE:
+ return "To Sphere";
+ case TFM_SHEAR:
+ return "Shear";
+ case TFM_WARP:
+ return "Warp";
+ case TFM_SHRINKFATTEN:
+ return "Shrink/Fatten";
+ case TFM_TILT:
+ return "Tilt";
+ case TFM_TRACKBALL:
+ return "Trackball";
+ case TFM_PUSHPULL:
+ return "Push/Pull";
+ case TFM_CREASE:
+ return "Crease";
+ }
+ return "Transform";
+}
+
+/* ************************************************* */
+
void Transform(int mode, int context)
{
int ret_val = 0;
@@ -199,10 +230,8 @@ void Transform(int mode, int context)
/* If MMB is pressed or not */
char mmb_press = 0;
- /*joeedh -> hopefully may be what makes the old transform() constant*/
- /* ton: I doubt, but it doesnt harm for now. shouldnt be needed though */
- areawinset(curarea->win);
-
+ /* added initialize, for external calls to set stuff in TransInfo, like undo string */
+ if(Trans.mode==TFM_INIT) memset(&Trans, 0, sizeof(TransInfo));
Mat3One(mati);
/* stupid PET initialisation code */
@@ -540,12 +569,16 @@ void Transform(int mode, int context)
}
+ /* handle restoring objects and Undo */
if(ret_val == TRANS_CANCEL) {
restoreTransObjects(&Trans);
+ if(Trans.undostr) BIF_undo_push(Trans.undostr);
}
else {
- BIF_undo_push("Transform");
+ if(Trans.undostr) BIF_undo_push(Trans.undostr);
+ else BIF_undo_push(transform_to_undostr(&Trans));
}
+ Trans.undostr= NULL;
/* free data, reset vars */
postTrans(&Trans);
@@ -576,7 +609,9 @@ void ManipulatorTransform(int mode)
short pmval[2] = {0, 0}, mval[2], val;
unsigned short event;
-
+ /* added initialize, for external calls to set stuff in TransInfo, like undo string */
+ if(Trans.mode==TFM_INIT) memset(&Trans, 0, sizeof(TransInfo));
+
/* stupid PET initialisation code */
/* START */
if (Trans.propsize == 0.0f) {
@@ -708,7 +743,7 @@ void ManipulatorTransform(int mode)
restoreTransObjects(&Trans);
}
else {
- BIF_undo_push("Transform");
+ BIF_undo_push(transform_to_undostr(&Trans));
}
/* free data, reset vars */
@@ -2161,3 +2196,11 @@ void Mirror(short mode)
allqueue(REDRAWBUTSOBJECT, 0);
scrarea_queue_headredraw(curarea);
}
+
+
+void BIF_TransformSetUndo(char *str)
+{
+ Trans.undostr= str;
+}
+
+