load_from_memory prop - add description

This commit is contained in:
Andrej730
2024-08-22 17:20:12 +05:00
parent d4e863ed3b
commit 4d122d77dc
5 changed files with 22 additions and 4 deletions
+5 -1
View File
@@ -99,4 +99,8 @@ class CsvProperties(PropertyGroup):
should_show_group: BoolProperty(default=False, name="Show Grouping")
should_show_summary: BoolProperty(default=False, name="Show Summary")
should_show_formatting: BoolProperty(default=False, name="Show Formatting")
should_load_from_memory: BoolProperty(default=False, name="Load from Memory")
should_load_from_memory: BoolProperty(
default=False,
name="Load from Memory",
description="Use IFC file currently loaded in Bonsai",
)
+5 -1
View File
@@ -41,7 +41,11 @@ def get_engine(self, context):
class BIMFMProperties(PropertyGroup):
ifc_files: PointerProperty(type=MultipleFileSelect)
spreadsheet_files: CollectionProperty(name="Spreadsheets", type=StrProperty)
should_load_from_memory: BoolProperty(default=False, name="Load from Memory")
should_load_from_memory: BoolProperty(
default=False,
name="Load from Memory",
description="Use IFC file currently loaded in Bonsai",
)
engine: EnumProperty(items=get_engine, name="Engine", options=set())
format: EnumProperty(
items=[
@@ -269,6 +269,7 @@ class RadianceExporterProperties(PropertyGroup):
should_load_from_memory: BoolProperty(
name="Load from Memory",
default=False,
description="Use IFC file currently loaded in Bonsai",
)
radiance_resolution_x: IntProperty(
+5 -1
View File
@@ -66,4 +66,8 @@ class BIMPatchProperties(PropertyGroup):
ifc_patch_input: StringProperty(default="", name="IFC Patch Input IFC")
ifc_patch_output: StringProperty(default="", name="IFC Patch Output IFC")
ifc_patch_args_attr: CollectionProperty(type=Attribute, name="Arguments")
should_load_from_memory: BoolProperty(default=False, name="Load from Memory")
should_load_from_memory: BoolProperty(
default=False,
name="Load from Memory",
description="Use IFC file currently loaded in Bonsai",
)
+6 -1
View File
@@ -50,7 +50,12 @@ class FailedEntities(PropertyGroup):
class IfcTesterProperties(PropertyGroup):
specs: PointerProperty(type=MultipleFileSelect)
ifc_files: PointerProperty(type=MultipleFileSelect)
should_load_from_memory: BoolProperty(default=False, name="Load from Memory", options=set())
should_load_from_memory: BoolProperty(
default=False,
name="Load from Memory",
description="Use IFC file currently loaded in Bonsai",
options=set(),
)
generate_html_report: BoolProperty(default=False, name="Generate HTML report", options=set())
generate_ods_report: BoolProperty(default=False, name="Generate ODS report", options=set())
flag: BoolProperty(default=False, name="Flag Failed Entities", options=set())