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-01-17 08:33:54 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-01-17 08:33:54 +0300
commit0e476af66e54f72884a2a407fba91cf2c1688193 (patch)
tree0539cf1e893cb40f99041f0aefda409991bca24c /source/blender/makesdna/DNA_screen_types.h
parent7e14c5d119470c066fd76325dced68486117d91a (diff)
* Start ActionZone support for areas. This is bScreen level stuff to be able to do funky stuff.
Right now 2 AZones are defined for each new ScrArea, and mouse over is now detected. Enter ugly triangle.
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 61f8bab83fd..85c6bbf9172 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -125,6 +125,8 @@ typedef struct ScrArea {
ListBase panels;
ListBase regionbase; /* ARegion */
ListBase handlers; /* wmEventHandler */
+
+ ListBase actionzones; /* AZone */
} ScrArea;
typedef struct ARegion {
@@ -149,7 +151,6 @@ typedef struct ARegion {
} ARegion;
-
/* area->flag */
#define HEADER_NO_PULLDOWN 1
@@ -214,6 +215,5 @@ typedef struct ARegion {
#define RGN_FLAG_HIDDEN 1
#define RGN_FLAG_TOO_SMALL 2
-
#endif