mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 14:41:25 +00:00
load_from_memory prop - add description
This commit is contained in:
@@ -99,4 +99,8 @@ class CsvProperties(PropertyGroup):
|
|||||||
should_show_group: BoolProperty(default=False, name="Show Grouping")
|
should_show_group: BoolProperty(default=False, name="Show Grouping")
|
||||||
should_show_summary: BoolProperty(default=False, name="Show Summary")
|
should_show_summary: BoolProperty(default=False, name="Show Summary")
|
||||||
should_show_formatting: BoolProperty(default=False, name="Show Formatting")
|
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",
|
||||||
|
)
|
||||||
|
|||||||
@@ -41,7 +41,11 @@ def get_engine(self, context):
|
|||||||
class BIMFMProperties(PropertyGroup):
|
class BIMFMProperties(PropertyGroup):
|
||||||
ifc_files: PointerProperty(type=MultipleFileSelect)
|
ifc_files: PointerProperty(type=MultipleFileSelect)
|
||||||
spreadsheet_files: CollectionProperty(name="Spreadsheets", type=StrProperty)
|
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())
|
engine: EnumProperty(items=get_engine, name="Engine", options=set())
|
||||||
format: EnumProperty(
|
format: EnumProperty(
|
||||||
items=[
|
items=[
|
||||||
|
|||||||
@@ -269,6 +269,7 @@ class RadianceExporterProperties(PropertyGroup):
|
|||||||
should_load_from_memory: BoolProperty(
|
should_load_from_memory: BoolProperty(
|
||||||
name="Load from Memory",
|
name="Load from Memory",
|
||||||
default=False,
|
default=False,
|
||||||
|
description="Use IFC file currently loaded in Bonsai",
|
||||||
)
|
)
|
||||||
|
|
||||||
radiance_resolution_x: IntProperty(
|
radiance_resolution_x: IntProperty(
|
||||||
|
|||||||
@@ -66,4 +66,8 @@ class BIMPatchProperties(PropertyGroup):
|
|||||||
ifc_patch_input: StringProperty(default="", name="IFC Patch Input IFC")
|
ifc_patch_input: StringProperty(default="", name="IFC Patch Input IFC")
|
||||||
ifc_patch_output: StringProperty(default="", name="IFC Patch Output IFC")
|
ifc_patch_output: StringProperty(default="", name="IFC Patch Output IFC")
|
||||||
ifc_patch_args_attr: CollectionProperty(type=Attribute, name="Arguments")
|
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",
|
||||||
|
)
|
||||||
|
|||||||
@@ -50,7 +50,12 @@ class FailedEntities(PropertyGroup):
|
|||||||
class IfcTesterProperties(PropertyGroup):
|
class IfcTesterProperties(PropertyGroup):
|
||||||
specs: PointerProperty(type=MultipleFileSelect)
|
specs: PointerProperty(type=MultipleFileSelect)
|
||||||
ifc_files: 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_html_report: BoolProperty(default=False, name="Generate HTML report", options=set())
|
||||||
generate_ods_report: BoolProperty(default=False, name="Generate ODS 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())
|
flag: BoolProperty(default=False, name="Flag Failed Entities", options=set())
|
||||||
|
|||||||
Reference in New Issue
Block a user