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:
authorJoshua Leung <aligorith@gmail.com>2008-12-21 14:56:42 +0300
committerJoshua Leung <aligorith@gmail.com>2008-12-21 14:56:42 +0300
commitad4d061091584dadcb2d2e8dd6ddf59af45b65f1 (patch)
tree8fc47cafe57a89daa844df29895993dd4d2b43ff /source/blender/makesdna/DNA_view2d_types.h
parent841f376a1c2b5dfef22e02696d5ad2ba053ecfbe (diff)
View2D - Vertical (within area) syncing for channel lists to stay in sync with the relevant keyframes...
I still need to work out how to get this to work correctly as soon as an Action Editor instance is created.
Diffstat (limited to 'source/blender/makesdna/DNA_view2d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view2d_types.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/makesdna/DNA_view2d_types.h b/source/blender/makesdna/DNA_view2d_types.h
index 20b14b178ac..c4148e80a95 100644
--- a/source/blender/makesdna/DNA_view2d_types.h
+++ b/source/blender/makesdna/DNA_view2d_types.h
@@ -89,15 +89,15 @@ typedef struct View2D {
/* general refresh settings (v2d->flag) */
/* global view2d horizontal locking (for showing same time interval) */
-#define V2D_VIEWSYNC_X (1<<0)
- /* within region view2d vertical locking */
-#define V2D_VIEWSYNC_Y (1<<1)
- /* apply pixel offsets on x-axis */
-#define V2D_PIXELOFS_X (1<<2)
- /* apply pixel offsets on y-axis */
-#define V2D_PIXELOFS_Y (1<<3)
+#define V2D_VIEWSYNC_SCREEN_TIME (1<<0)
+ /* within area (i.e. between regions) view2d vertical locking */
+#define V2D_VIEWSYNC_AREA_VERTICAL (1<<1)
+ /* apply pixel offsets on x-axis when setting view matrices */
+#define V2D_PIXELOFS_X (1<<2)
+ /* apply pixel offsets on y-axis when setting view matrices */
+#define V2D_PIXELOFS_Y (1<<3)
/* view settings need to be set still... */
-#define V2D_IS_INITIALISED (1<<10)
+#define V2D_IS_INITIALISED (1<<10)
/* scroller flags for View2D (v2d->scroll) */
/* left scrollbar */