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:
authorMartin Poirier <theeth@yahoo.com>2009-12-21 20:23:44 +0300
committerMartin Poirier <theeth@yahoo.com>2009-12-21 20:23:44 +0300
commit90e9aee9b8cd7349fd4458c3f7d0141073958dc4 (patch)
tree85bfd22f44bda922f1de6739c1a18e4c69cc0709 /source/blender/editors/transform/transform.h
parent1f8cd19d4bc76b294841f3495132ecbdf9964228 (diff)
Sequence Slide transformation (easier to do special sequence code there than in a generic transform)
Also make the transform operator creation a bit more automagic (I always forget either operator registration or modal keymap registration, this is all automatic now).
Diffstat (limited to 'source/blender/editors/transform/transform.h')
-rw-r--r--source/blender/editors/transform/transform.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index b7e1b2e4996..72d970c967a 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -53,6 +53,8 @@ struct BezTriple;
struct wmOperatorType;
struct wmOperator;
struct wmWindowManager;
+struct wmKeyMap;
+struct wmKeyConfig;
struct bContext;
struct wmEvent;
struct wmTimer;
@@ -522,9 +524,12 @@ int Mirror(TransInfo *t, short mval[2]);
void initAlign(TransInfo *t);
int Align(TransInfo *t, short mval[2]);
+void initSeqSlide(TransInfo *t);
+int SeqSlide(TransInfo *t, short mval[2]);
+
void drawPropCircle(const struct bContext *C, TransInfo *t);
-void transform_modal_keymap(struct wmKeyConfig *keyconf);
+struct wmKeyMap *transform_modal_keymap(struct wmKeyConfig *keyconf);
/*********************** transform_conversions.c ********** */