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:
authorNathan Letwory <nathan@letworyinteractive.com>2008-12-04 23:28:59 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-12-04 23:28:59 +0300
commitb087c8adf2ce7a3fb4709a6e7fe00192a8972e17 (patch)
tree7cc05236247589080c6715b1e20d9ba01b4aa5ee /source/blender/makesdna/DNA_view2d_types.h
parent2e517db96a0b7a4b516ab09ae3c0bc27ad24bd3a (diff)
* rename some view2d defines to be clearer and more in line with the rest of view2d defines.
Diffstat (limited to 'source/blender/makesdna/DNA_view2d_types.h')
-rw-r--r--source/blender/makesdna/DNA_view2d_types.h34
1 files changed, 16 insertions, 18 deletions
diff --git a/source/blender/makesdna/DNA_view2d_types.h b/source/blender/makesdna/DNA_view2d_types.h
index 263b2718136..b2086533b30 100644
--- a/source/blender/makesdna/DNA_view2d_types.h
+++ b/source/blender/makesdna/DNA_view2d_types.h
@@ -77,31 +77,29 @@ typedef struct View2D {
#define V2D_VIEWLOCK (1<<0)
/* scrollbar thickness */
- /* height */
-#define SCROLLH 16
- /* width */
-#define SCROLLB 16
+#define V2D_SCROLL_HEIGHT 16
+#define V2D_SCROLL_WIDTH 16
/* scrollbar flags for View2D */
/* left scrollbar */
-#define L_SCROLL (1<<0)
-#define R_SCROLL (1<<1)
-#define VERT_SCROLL (L_SCROLL|R_SCROLL)
+#define V2D_SCROLL_LEFT (1<<0)
+#define V2D_SCROLL_RIGHT (1<<1)
+#define V2D_SCROLL_VERTICAL (V2D_SCROLL_LEFT|V2D_SCROLL_RIGHT)
/* horizontal scrollbar */
-#define T_SCROLL (1<<2)
-#define B_SCROLL (1<<3)
-#define HOR_SCROLL (T_SCROLL|B_SCROLL)
+#define V2D_SCROLL_TOP (1<<2)
+#define V2D_SCROLL_BOTTOM (1<<3)
+#define V2D_SCROLL_HORIZONTAL (V2D_SCROLL_TOP|V2D_SCROLL_BOTTOM)
/* special hacks for outliner hscroll - prevent hanging older versions of Blender */
-#define B_SCROLLO (1<<4)
-#define HOR_SCROLLO (T_SCROLL|B_SCROLLO)
+#define V2D_SCROLL_BOTTOM_O (1<<4)
+#define V2D_SCROLL_HORIZONTAL_O (V2D_SCROLL_BOTTOM|V2D_SCROLL_BOTTOM_O)
/* scale markings - vertical */
-#define LGRID_SCROLL (1<<5)
-#define RGRID_SCROLL (1<<6)
-#define VERT_SCROLLGRID (LGRID_SCROLL|RGRID_SCROLL)
+#define V2D_SCROLL_SCALE_LEFT (1<<5)
+#define V2D_SCROLL_SCALE_RIGHT (1<<6)
+#define V2D_SCROLL_SCALE_VERTICAL (V2D_SCROLL_SCALE_LEFT|V2D_SCROLL_SCALE_RIGHT)
/* scale markings - horizontal */
-#define BGRID_SCROLL (1<<7)
-#define TGRID_SCROLL (1<<8)
-#define HOR_SCROLLGRID (BGRID_SCROLL|TGRID_SCROLL)
+#define V2D_SCROLL_SCALE_BOTTOM (1<<7)
+#define V2D_SCROLL_SCALE_TOP (1<<8)
+#define V2D_SCROLL_SCALE_HORIZONTAL (V2D_SCROLL_SCALE_BOTTOM|V2D_SCROLL_SCALE_TOP)
#endif