mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-27 18:57:17 +00:00
eye icon to show or hide panel
This commit is contained in:
@@ -232,6 +232,27 @@ def on_register(scene):
|
|||||||
bpy.app.handlers.depsgraph_update_post.remove(on_register)
|
bpy.app.handlers.depsgraph_update_post.remove(on_register)
|
||||||
is_registering = False
|
is_registering = False
|
||||||
|
|
||||||
|
def register_panel_visibility_properties():
|
||||||
|
for panel_name in operator.TAB_PANELS.values():
|
||||||
|
for panel in panel_name:
|
||||||
|
prop_name = f"show_{panel.lower()}"
|
||||||
|
setattr(
|
||||||
|
bpy.types.Scene,
|
||||||
|
prop_name,
|
||||||
|
bpy.props.BoolProperty(
|
||||||
|
name=f"Show {panel}",
|
||||||
|
description=f"Show or hide the {panel} panel",
|
||||||
|
default=True, # Panels are visible by default
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def unregister_panel_visibility_properties():
|
||||||
|
for panel_name in operator.TAB_PANELS.values():
|
||||||
|
for panel in panel_name:
|
||||||
|
prop_name = f"show_{panel.lower()}"
|
||||||
|
if hasattr(bpy.types.Scene, prop_name):
|
||||||
|
delattr(bpy.types.Scene, prop_name)
|
||||||
|
|
||||||
# Classes that need to be registered after modules (due to cross-module dependencies)
|
# Classes that need to be registered after modules (due to cross-module dependencies)
|
||||||
late_classes = (
|
late_classes = (
|
||||||
@@ -314,6 +335,7 @@ def register():
|
|||||||
bpy.types.Scene.active_tab_name = bpy.props.StringProperty()
|
bpy.types.Scene.active_tab_name = bpy.props.StringProperty()
|
||||||
bpy.types.Scene.tab_panels = bpy.props.CollectionProperty(type=bpy.types.PropertyGroup)
|
bpy.types.Scene.tab_panels = bpy.props.CollectionProperty(type=bpy.types.PropertyGroup)
|
||||||
bpy.types.Scene.active_tab_panel_index = bpy.props.IntProperty()
|
bpy.types.Scene.active_tab_panel_index = bpy.props.IntProperty()
|
||||||
|
register_panel_visibility_properties()
|
||||||
|
|
||||||
|
|
||||||
def unregister():
|
def unregister():
|
||||||
@@ -360,3 +382,4 @@ def unregister():
|
|||||||
del bpy.types.Scene.active_tab_name
|
del bpy.types.Scene.active_tab_name
|
||||||
del bpy.types.Scene.tab_panels
|
del bpy.types.Scene.tab_panels
|
||||||
del bpy.types.Scene.active_tab_panel_index
|
del bpy.types.Scene.active_tab_panel_index
|
||||||
|
unregister_panel_visibility_properties()
|
||||||
@@ -1608,7 +1608,7 @@ class BIM_OT_attribute_remove_subitem(bpy.types.Operator):
|
|||||||
|
|
||||||
TAB_PANELS = {
|
TAB_PANELS = {
|
||||||
"PROJECT": [
|
"PROJECT": [
|
||||||
"BIM_PT_tab_new_project_wizard",
|
# "BIM_PT_tab_new_project_wizard",
|
||||||
"BIM_PT_tab_project_info",
|
"BIM_PT_tab_project_info",
|
||||||
"BIM_PT_tab_spatial",
|
"BIM_PT_tab_spatial",
|
||||||
"BIM_PT_tab_project_setup",
|
"BIM_PT_tab_project_setup",
|
||||||
@@ -1699,8 +1699,25 @@ class BIM_OT_toggle_panel_visibility(bpy.types.Operator):
|
|||||||
# Extract the panel name from the action
|
# Extract the panel name from the action
|
||||||
panel_name = self.action.replace("TOGGLE_VISIBILITY_", "")
|
panel_name = self.action.replace("TOGGLE_VISIBILITY_", "")
|
||||||
|
|
||||||
# Logic to toggle visibility (placeholder)
|
# Find the corresponding panel in the tab_panels collection
|
||||||
print(f"Toggled visibility for panel: {panel_name}")
|
for item in context.scene.tab_panels:
|
||||||
|
if item.name == panel_name:
|
||||||
|
# Toggle the visibility state
|
||||||
|
item["visible"] = not item.get("visible", True)
|
||||||
|
|
||||||
|
# Update the corresponding BoolProperty on the Scene
|
||||||
|
prop_name = f"show_{panel_name.lower()}"
|
||||||
|
if hasattr(context.scene, prop_name):
|
||||||
|
setattr(context.scene, prop_name, item["visible"])
|
||||||
|
print(f"Toggled visibility for panel: {panel_name} to {'visible' if item['visible'] else 'hidden'}")
|
||||||
|
else:
|
||||||
|
print(f"Property '{prop_name}' not found on Scene.")
|
||||||
|
break
|
||||||
|
|
||||||
|
# Redraw the UI to reflect the changes
|
||||||
|
for area in bpy.context.window.screen.areas:
|
||||||
|
if area.type == "PROPERTIES":
|
||||||
|
area.tag_redraw()
|
||||||
|
|
||||||
self.report({"INFO"}, f"Toggled visibility for {panel_name}.")
|
self.report({"INFO"}, f"Toggled visibility for {panel_name}.")
|
||||||
return {"FINISHED"}
|
return {"FINISHED"}
|
||||||
@@ -1741,6 +1758,7 @@ class BIM_OT_manage_tab_panels(bpy.types.Operator):
|
|||||||
for panel_name in TAB_PANELS.get(self.tab_name, []):
|
for panel_name in TAB_PANELS.get(self.tab_name, []):
|
||||||
item = context.scene.tab_panels.add()
|
item = context.scene.tab_panels.add()
|
||||||
item.name = panel_name
|
item.name = panel_name
|
||||||
|
item["visible"] = True # Initialize the visibility state as visible
|
||||||
print(f"Tab Panels for {self.tab_name}: {[item.name for item in context.scene.tab_panels]}")
|
print(f"Tab Panels for {self.tab_name}: {[item.name for item in context.scene.tab_panels]}")
|
||||||
|
|
||||||
return context.window_manager.invoke_props_dialog(self, width=400)
|
return context.window_manager.invoke_props_dialog(self, width=400)
|
||||||
|
|||||||
@@ -1081,6 +1081,7 @@ class BIM_PT_tabs(Panel):
|
|||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_new_project_wizard(Panel):
|
class BIM_PT_tab_new_project_wizard(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_new_project_wizard"
|
||||||
bl_label = "New Project Wizard"
|
bl_label = "New Project Wizard"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1088,6 +1089,8 @@ class BIM_PT_tab_new_project_wizard(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_new_project_wizard", True):
|
||||||
|
return False
|
||||||
if not tool.Blender.is_tab(context, "PROJECT"):
|
if not tool.Blender.is_tab(context, "PROJECT"):
|
||||||
return False
|
return False
|
||||||
bim_props = tool.Blender.get_bim_props()
|
bim_props = tool.Blender.get_bim_props()
|
||||||
@@ -1103,6 +1106,7 @@ class BIM_PT_tab_new_project_wizard(Panel):
|
|||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_project_info(Panel):
|
class BIM_PT_tab_project_info(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_project_info"
|
||||||
bl_label = "Project Info"
|
bl_label = "Project Info"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1110,6 +1114,10 @@ class BIM_PT_tab_project_info(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_project_info", True):
|
||||||
|
return False
|
||||||
|
|
||||||
|
# Existing conditions
|
||||||
if not tool.Blender.is_tab(context, "PROJECT"):
|
if not tool.Blender.is_tab(context, "PROJECT"):
|
||||||
return False
|
return False
|
||||||
bim_props = tool.Blender.get_bim_props()
|
bim_props = tool.Blender.get_bim_props()
|
||||||
@@ -1121,10 +1129,12 @@ class BIM_PT_tab_project_info(Panel):
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
pass
|
layout = self.layout
|
||||||
|
layout.label(text="This is the Project Info panel.")
|
||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_spatial(Panel):
|
class BIM_PT_tab_spatial(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_spatial"
|
||||||
bl_label = "Spatial"
|
bl_label = "Spatial"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1132,6 +1142,8 @@ class BIM_PT_tab_spatial(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_spatial", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1139,6 +1151,7 @@ class BIM_PT_tab_spatial(Panel):
|
|||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_project_setup(Panel):
|
class BIM_PT_tab_project_setup(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_project_setup"
|
||||||
bl_label = "Project Setup"
|
bl_label = "Project Setup"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1146,6 +1159,8 @@ class BIM_PT_tab_project_setup(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_project_setup", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "PROJECT")
|
return tool.Blender.is_tab(context, "PROJECT")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1153,6 +1168,7 @@ class BIM_PT_tab_project_setup(Panel):
|
|||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_stakeholders(Panel):
|
class BIM_PT_tab_stakeholders(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_stakeholders"
|
||||||
bl_label = "Stakeholders"
|
bl_label = "Stakeholders"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1161,6 +1177,8 @@ class BIM_PT_tab_stakeholders(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_stakeholders", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1175,6 +1193,8 @@ class BIM_PT_tab_collaboration(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_collaboration", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "QUALITY")
|
return tool.Blender.is_tab(context, "QUALITY")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1182,6 +1202,7 @@ class BIM_PT_tab_collaboration(Panel):
|
|||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_grouping_and_filtering(Panel):
|
class BIM_PT_tab_grouping_and_filtering(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_grouping_and_filtering"
|
||||||
bl_label = "Grouping and Filtering"
|
bl_label = "Grouping and Filtering"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1190,6 +1211,8 @@ class BIM_PT_tab_grouping_and_filtering(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_grouping_and_filtering", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1205,6 +1228,7 @@ class BIM_PT_tab_grouping_and_filtering(Panel):
|
|||||||
|
|
||||||
|
|
||||||
class BIM_PT_tab_geometry(Panel):
|
class BIM_PT_tab_geometry(Panel):
|
||||||
|
bl_idname = "BIM_PT_tab_geometry"
|
||||||
bl_label = "Geometry"
|
bl_label = "Geometry"
|
||||||
bl_space_type = "PROPERTIES"
|
bl_space_type = "PROPERTIES"
|
||||||
bl_region_type = "WINDOW"
|
bl_region_type = "WINDOW"
|
||||||
@@ -1212,6 +1236,8 @@ class BIM_PT_tab_geometry(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_geometry", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "PROJECT") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1226,6 +1252,8 @@ class BIM_PT_tab_status(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_status", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1240,6 +1268,8 @@ class BIM_PT_tab_qto(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_qto", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1254,6 +1284,8 @@ class BIM_PT_tab_resources(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_resources", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1268,6 +1300,8 @@ class BIM_PT_tab_cost(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_cost", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1282,6 +1316,8 @@ class BIM_PT_tab_sequence(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_sequence", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SCHEDULING") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1296,6 +1332,8 @@ class BIM_PT_tab_structural(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_structural", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "STRUCTURE") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "STRUCTURE") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1310,6 +1348,8 @@ class BIM_PT_tab_services(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_services", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1324,6 +1364,8 @@ class BIM_PT_tab_lighting(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_lighting", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1338,6 +1380,8 @@ class BIM_PT_tab_zones(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_zones", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1352,6 +1396,8 @@ class BIM_PT_tab_solar_analysis(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_solar_analysis", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "SERVICES") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1366,6 +1412,8 @@ class BIM_PT_tab_quality_control(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_quality_control", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "QUALITY")
|
return tool.Blender.is_tab(context, "QUALITY")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1380,6 +1428,8 @@ class BIM_PT_tab_clash_detection(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_clash_detection", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "QUALITY")
|
return tool.Blender.is_tab(context, "QUALITY")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1395,6 +1445,8 @@ class BIM_PT_tab_sandbox(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_sandbox", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "QUALITY")
|
return tool.Blender.is_tab(context, "QUALITY")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1412,6 +1464,8 @@ class BIM_PT_tab_object_metadata(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_object_metadata", True):
|
||||||
|
return False
|
||||||
props = tool.Project.get_project_props()
|
props = tool.Project.get_project_props()
|
||||||
return (
|
return (
|
||||||
tool.Blender.is_tab(context, "OBJECT")
|
tool.Blender.is_tab(context, "OBJECT")
|
||||||
@@ -1438,6 +1492,8 @@ class BIM_PT_tab_placement(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_placement", True):
|
||||||
|
return False
|
||||||
return (
|
return (
|
||||||
tool.Blender.is_tab(context, "GEOMETRY")
|
tool.Blender.is_tab(context, "GEOMETRY")
|
||||||
and tool.Ifc.get()
|
and tool.Ifc.get()
|
||||||
@@ -1458,6 +1514,8 @@ class BIM_PT_tab_representations(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_representations", True):
|
||||||
|
return False
|
||||||
return (
|
return (
|
||||||
tool.Blender.is_tab(context, "GEOMETRY")
|
tool.Blender.is_tab(context, "GEOMETRY")
|
||||||
and tool.Ifc.get()
|
and tool.Ifc.get()
|
||||||
@@ -1478,6 +1536,8 @@ class BIM_PT_tab_geometric_relationships(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_geometric_relationships", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1494,6 +1554,8 @@ class BIM_PT_tab_parametric_geometry(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_parametric_geometry", True):
|
||||||
|
return False
|
||||||
return (
|
return (
|
||||||
tool.Blender.is_tab(context, "GEOMETRY")
|
tool.Blender.is_tab(context, "GEOMETRY")
|
||||||
and tool.Ifc.get()
|
and tool.Ifc.get()
|
||||||
@@ -1514,6 +1576,8 @@ class BIM_PT_tab_object_materials(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_object_materials", True):
|
||||||
|
return False
|
||||||
return (
|
return (
|
||||||
tool.Blender.is_tab(context, "GEOMETRY")
|
tool.Blender.is_tab(context, "GEOMETRY")
|
||||||
and tool.Ifc.get()
|
and tool.Ifc.get()
|
||||||
@@ -1534,6 +1598,8 @@ class BIM_PT_tab_materials(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_materials", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1549,6 +1615,8 @@ class BIM_PT_tab_styles(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_styles", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1564,6 +1632,8 @@ class BIM_PT_tab_profiles(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_profiles", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "GEOMETRY") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1579,6 +1649,8 @@ class BIM_PT_tab_sheets(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_sheets", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1594,6 +1666,8 @@ class BIM_PT_tab_drawings(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_drawings", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1609,6 +1683,8 @@ class BIM_PT_tab_schedules(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_schedules", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1624,6 +1700,8 @@ class BIM_PT_tab_references(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_references", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "DRAWINGS") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1640,6 +1718,8 @@ class BIM_PT_tab_misc(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_misc", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "OBJECT") and tool.Ifc.get()
|
return tool.Blender.is_tab(context, "OBJECT") and tool.Ifc.get()
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1655,6 +1735,8 @@ class BIM_PT_tab_handover(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_handover", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "FM")
|
return tool.Blender.is_tab(context, "FM")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
@@ -1670,6 +1752,8 @@ class BIM_PT_tab_operations(Panel):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def poll(cls, context):
|
def poll(cls, context):
|
||||||
|
if not getattr(context.scene, "show_bim_pt_tab_operations", True):
|
||||||
|
return False
|
||||||
return tool.Blender.is_tab(context, "FM")
|
return tool.Blender.is_tab(context, "FM")
|
||||||
|
|
||||||
def draw(self, context):
|
def draw(self, context):
|
||||||
|
|||||||
Reference in New Issue
Block a user