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:
Diffstat (limited to 'source/blender/blenkernel/BKE_screen.h')
-rw-r--r--source/blender/blenkernel/BKE_screen.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_screen.h b/source/blender/blenkernel/BKE_screen.h
index 5d3e7ad5ec2..7d992320033 100644
--- a/source/blender/blenkernel/BKE_screen.h
+++ b/source/blender/blenkernel/BKE_screen.h
@@ -179,6 +179,8 @@ typedef struct ARegionType {
/* header type definitions */
ListBase headertypes;
+ int flag;
+
/* hardcoded constraints, smaller than these values region is not visible */
int minsizex, minsizey;
/* when new region opens (region prefsizex/y are zero then */
@@ -192,6 +194,12 @@ typedef struct ARegionType {
short event_cursor;
} ARegionType;
+/* ARegionType.flag */
+enum {
+ /** Never show category tabs in this region type. */
+ RGN_TYPE_FLAG_NO_CATEGORIES = (1 << 8),
+};
+
/* panel types */
typedef struct PanelType {