2016-09-22 13:40:39 +02:00
|
|
|
from __future__ import print_function
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
import sys
|
|
|
|
|
import time
|
|
|
|
|
import operator
|
|
|
|
|
import functools
|
|
|
|
|
|
|
|
|
|
import OCC.AIS
|
|
|
|
|
|
|
|
|
|
from collections import defaultdict, Iterable
|
|
|
|
|
|
|
|
|
|
from PyQt4 import QtGui, QtCore
|
|
|
|
|
|
|
|
|
|
try: from OCC.Display.pyqt4Display import qtViewer3d
|
|
|
|
|
except:
|
|
|
|
|
import OCC.Display
|
2016-09-13 14:05:28 +02:00
|
|
|
|
|
|
|
|
try: import OCC.Display.backend
|
|
|
|
|
except: pass
|
|
|
|
|
|
|
|
|
|
try: OCC.Display.backend.get_backend("qt-pyqt4")
|
|
|
|
|
except: OCC.Display.backend.load_backend("qt-pyqt4")
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
from OCC.Display.qtDisplay import qtViewer3d
|
2016-09-13 14:05:28 +02:00
|
|
|
|
|
|
|
|
|
2016-09-22 13:40:39 +02:00
|
|
|
from .main import settings, iterator
|
2016-04-17 15:27:05 +02:00
|
|
|
from .occ_utils import display_shape
|
|
|
|
|
|
2016-09-22 13:40:39 +02:00
|
|
|
from .. import open, get_supertype
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
# Depending on Python version and what not there may or may not be a QString
|
|
|
|
|
try:
|
|
|
|
|
from PyQt4.QtCore import QString
|
|
|
|
|
except ImportError:
|
|
|
|
|
QString = str
|
|
|
|
|
|
|
|
|
|
class application(QtGui.QApplication):
|
|
|
|
|
|
|
|
|
|
"""A pythonOCC, PyQt based IfcOpenShell application
|
|
|
|
|
with two tree views and a graphical 3d view"""
|
|
|
|
|
|
|
|
|
|
class abstract_treeview(QtGui.QTreeWidget):
|
|
|
|
|
|
|
|
|
|
"""Base class for the two treeview controls"""
|
|
|
|
|
|
|
|
|
|
instanceSelected = QtCore.pyqtSignal([object])
|
|
|
|
|
instanceVisibilityChanged = QtCore.pyqtSignal([object, int])
|
|
|
|
|
instanceDisplayModeChanged = QtCore.pyqtSignal([object, int])
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
QtGui.QTreeView.__init__(self)
|
|
|
|
|
self.setColumnCount(len(self.ATTRIBUTES))
|
|
|
|
|
self.setHeaderLabels(self.ATTRIBUTES)
|
|
|
|
|
self.children = defaultdict(list)
|
|
|
|
|
|
|
|
|
|
def get_children(self, inst):
|
|
|
|
|
c = [inst]
|
|
|
|
|
i = 0
|
|
|
|
|
while i < len(c):
|
|
|
|
|
c.extend(self.children[c[i]])
|
|
|
|
|
i += 1
|
|
|
|
|
return c
|
|
|
|
|
|
|
|
|
|
def contextMenuEvent(self, event):
|
|
|
|
|
menu = QtGui.QMenu(self)
|
|
|
|
|
visibility = [menu.addAction("Show"), menu.addAction("Hide")]
|
|
|
|
|
displaymode = [menu.addAction("Solid"), menu.addAction("Wireframe")]
|
|
|
|
|
action = menu.exec_(self.mapToGlobal(event.pos()))
|
|
|
|
|
index = self.selectionModel().currentIndex()
|
|
|
|
|
inst = index.data(QtCore.Qt.UserRole)
|
|
|
|
|
if hasattr(inst, 'toPyObject'):
|
|
|
|
|
inst = inst.toPyObject()
|
|
|
|
|
if action in visibility:
|
|
|
|
|
self.instanceVisibilityChanged.emit(inst, visibility.index(action))
|
|
|
|
|
elif action in displaymode:
|
|
|
|
|
self.instanceDisplayModeChanged.emit(inst, displaymode.index(action))
|
|
|
|
|
|
|
|
|
|
def clicked(self, index):
|
|
|
|
|
inst = index.data(QtCore.Qt.UserRole)
|
|
|
|
|
if hasattr(inst, 'toPyObject'):
|
|
|
|
|
inst = inst.toPyObject()
|
|
|
|
|
if inst:
|
|
|
|
|
self.instanceSelected.emit(inst)
|
|
|
|
|
|
|
|
|
|
def select(self, product):
|
|
|
|
|
itm = self.product_to_item.get(product)
|
|
|
|
|
if itm is None: return
|
|
|
|
|
self.selectionModel().setCurrentIndex(itm, QtGui.QItemSelectionModel.SelectCurrent | QtGui.QItemSelectionModel.Rows);
|
|
|
|
|
|
|
|
|
|
class decomposition_treeview(abstract_treeview):
|
|
|
|
|
|
|
|
|
|
"""Treeview with typical IFC decomposition relationships"""
|
|
|
|
|
|
|
|
|
|
ATTRIBUTES = ['Entity', 'GlobalId', 'Name']
|
|
|
|
|
|
|
|
|
|
def parent(self, instance):
|
|
|
|
|
if instance.is_a("IfcOpeningElement"):
|
|
|
|
|
return instance.VoidsElements[0].RelatingBuildingElement
|
|
|
|
|
if instance.is_a("IfcElement"):
|
|
|
|
|
fills = instance.FillsVoids
|
|
|
|
|
if len(fills):
|
|
|
|
|
return fills[0].RelatingOpeningElement
|
|
|
|
|
containments = instance.ContainedInStructure
|
|
|
|
|
if len(containments):
|
|
|
|
|
return containments[0].RelatingStructure
|
|
|
|
|
if instance.is_a("IfcObjectDefinition"):
|
|
|
|
|
decompositions = instance.Decomposes
|
|
|
|
|
if len(decompositions):
|
|
|
|
|
return decompositions[0].RelatingObject
|
|
|
|
|
|
2016-05-03 11:05:46 +02:00
|
|
|
def load_file(self, f, **kwargs):
|
2016-04-17 15:27:05 +02:00
|
|
|
products = list(f.by_type("IfcProduct")) + list(f.by_type("IfcProject"))
|
|
|
|
|
parents = list(map(self.parent, products))
|
|
|
|
|
items = {}
|
|
|
|
|
skipped = 0
|
|
|
|
|
ATTRS = self.ATTRIBUTES
|
|
|
|
|
while len(items) + skipped < len(products):
|
|
|
|
|
for product, parent in zip(products, parents):
|
|
|
|
|
if parent is None and not product.is_a("IfcProject"):
|
|
|
|
|
skipped += 1
|
|
|
|
|
continue
|
|
|
|
|
if (parent is None or parent in items) and product not in items:
|
|
|
|
|
sl = []
|
|
|
|
|
for attr in ATTRS:
|
|
|
|
|
if attr == 'Entity':
|
|
|
|
|
sl.append(product.is_a())
|
|
|
|
|
else:
|
|
|
|
|
sl.append(getattr(product, attr) or '')
|
|
|
|
|
itm = items[product] = QtGui.QTreeWidgetItem(items.get(parent, self), sl)
|
|
|
|
|
itm.setData(0, QtCore.Qt.UserRole, product)
|
|
|
|
|
self.children[parent].append(product)
|
|
|
|
|
self.product_to_item = dict(zip(items.keys(), map(self.indexFromItem, items.values())))
|
|
|
|
|
self.connect(self, QtCore.SIGNAL("clicked(const QModelIndex &)"), self.clicked)
|
|
|
|
|
self.expandAll()
|
|
|
|
|
|
|
|
|
|
class type_treeview(abstract_treeview):
|
|
|
|
|
|
|
|
|
|
"""Treeview with typical IFC decomposition relationships"""
|
|
|
|
|
|
|
|
|
|
ATTRIBUTES = ['Name']
|
|
|
|
|
|
2016-05-03 11:05:46 +02:00
|
|
|
def load_file(self, f, **kwargs):
|
2016-04-17 15:27:05 +02:00
|
|
|
products = list(f.by_type("IfcProduct"))
|
|
|
|
|
types = set(map(lambda i: i.is_a(), products))
|
|
|
|
|
items = {}
|
|
|
|
|
for t in types:
|
|
|
|
|
def add(t):
|
2016-09-22 13:40:39 +02:00
|
|
|
s = get_supertype(t)
|
2016-04-17 15:27:05 +02:00
|
|
|
if s: add(s)
|
|
|
|
|
s2, t2 = map(QString, (s,t))
|
|
|
|
|
if t2 not in items:
|
|
|
|
|
itm = items[t2] = QtGui.QTreeWidgetItem(items.get(s2, self), [t2])
|
|
|
|
|
itm.setData(0, QtCore.Qt.UserRole, t2)
|
|
|
|
|
self.children[s2].append(t2)
|
|
|
|
|
add(t)
|
|
|
|
|
|
|
|
|
|
for p in products:
|
|
|
|
|
t = QString(p.is_a())
|
|
|
|
|
itm = items[p] = QtGui.QTreeWidgetItem(items.get(t, self), [p.Name or '<no name>'])
|
|
|
|
|
itm.setData(0, QtCore.Qt.UserRole, t)
|
|
|
|
|
self.children[t].append(p)
|
|
|
|
|
|
|
|
|
|
self.product_to_item = dict(zip(items.keys(), map(self.indexFromItem, items.values())))
|
|
|
|
|
self.connect(self, QtCore.SIGNAL("clicked(const QModelIndex &)"), self.clicked)
|
|
|
|
|
self.expandAll()
|
|
|
|
|
|
2016-11-24 10:37:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class property_table(QtGui.QWidget):
|
|
|
|
|
instanceSelected = QtCore.pyqtSignal([object])
|
|
|
|
|
def __init__(self):
|
|
|
|
|
QtGui.QWidget.__init__(self)
|
|
|
|
|
self.layout= QtGui.QVBoxLayout(self)
|
|
|
|
|
self.setLayout(self.layout)
|
|
|
|
|
self.scroll = QtGui.QScrollArea(self)
|
|
|
|
|
self.layout.addWidget(self.scroll)
|
|
|
|
|
self.scroll.setWidgetResizable(True)
|
|
|
|
|
self.scrollContent = QtGui.QWidget(self.scroll)
|
|
|
|
|
self.scrollLayout = QtGui.QVBoxLayout(self.scrollContent)
|
|
|
|
|
self.scrollContent.setLayout(self.scrollLayout)
|
|
|
|
|
self.scroll.setWidget(self.scrollContent)
|
|
|
|
|
self.prop_dict = {}
|
|
|
|
|
|
|
|
|
|
#triggered by selection event in either component of parent
|
|
|
|
|
def select(self, product):
|
|
|
|
|
# Clear the old contents if any
|
|
|
|
|
while self.scrollLayout.count():
|
|
|
|
|
child = self.scrollLayout.takeAt(0)
|
|
|
|
|
if child is not None:
|
|
|
|
|
if child.widget() is not None:
|
|
|
|
|
child.widget().deleteLater()
|
|
|
|
|
self.scroll = QtGui.QScrollArea()
|
|
|
|
|
self.scroll.setWidgetResizable(True)
|
|
|
|
|
|
|
|
|
|
scrollContent = QtGui.QWidget(self.scroll)
|
|
|
|
|
# print ("properties for selection {}".format(self.prop_dict.get(str(product))))
|
|
|
|
|
prop_sets = self.prop_dict.get(str(product))
|
|
|
|
|
if prop_sets is not None:
|
|
|
|
|
for k,v in prop_sets.items():
|
|
|
|
|
group_box = QtGui.QGroupBox()
|
|
|
|
|
|
|
|
|
|
group_box.setTitle(k)
|
|
|
|
|
group_layout = QtGui.QVBoxLayout()
|
|
|
|
|
|
|
|
|
|
group_box.setLayout(group_layout)
|
|
|
|
|
for name, value in v.items():
|
|
|
|
|
prop_name = str(name)
|
|
|
|
|
value_str = value.wrappedValue
|
|
|
|
|
if isinstance(value_str,unicode):
|
|
|
|
|
value_str = value_str.encode('utf-8')
|
|
|
|
|
else:
|
|
|
|
|
value_str = str(value_str)
|
|
|
|
|
# print (value_str, type(value_str))
|
|
|
|
|
type_str = value.is_a()
|
|
|
|
|
label = QtGui.QLabel(prop_name+" : "+value_str+" : "+type_str)
|
|
|
|
|
group_layout.addWidget(label)
|
|
|
|
|
group_layout.addStretch()
|
|
|
|
|
self.scrollLayout.addWidget(group_box)
|
|
|
|
|
self.scrollLayout.addStretch()
|
|
|
|
|
else:
|
|
|
|
|
label = QtGui.QLabel("No IfcPropertySets asscociated with selected entity instance" )
|
|
|
|
|
self.scrollLayout.addWidget(label)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def load_file(self, f, **kwargs):
|
|
|
|
|
products = list(f.by_type("IfcProduct"))
|
|
|
|
|
for p in products:
|
|
|
|
|
propset_dict={}
|
|
|
|
|
try:
|
|
|
|
|
for is_def_by in p.IsDefinedBy:
|
|
|
|
|
if not is_def_by.is_a("IfcRelDefinesByProperties"): continue
|
|
|
|
|
if is_def_by.RelatingPropertyDefinition is not None:
|
|
|
|
|
prop_def=is_def_by.RelatingPropertyDefinition
|
|
|
|
|
prop_set_name = prop_def.Name
|
|
|
|
|
props = {}
|
|
|
|
|
if prop_def.is_a("IfcElementQuantity"):
|
|
|
|
|
for q in prop_def.Quantities:
|
|
|
|
|
if q.is_a("IfcPhysicalSimpleQuantity"):
|
|
|
|
|
props[q.Name]=q[3]
|
|
|
|
|
else:
|
|
|
|
|
for prop in prop_def.HasProperties:
|
|
|
|
|
if prop.is_a("IfcPropertySingleValue"):
|
|
|
|
|
props[prop.Name]=prop.NominalValue
|
|
|
|
|
|
|
|
|
|
propset_dict[prop_set_name]=props
|
|
|
|
|
|
|
|
|
|
except Exception, e:
|
|
|
|
|
print("failed to load properties: {}".format(e))
|
|
|
|
|
self.prop_dict[str(p)]=propset_dict
|
|
|
|
|
print ("property set dictionary has {} entries".format(len(propset_dict)))
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
class viewer(qtViewer3d):
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
instanceSelected = QtCore.pyqtSignal([object])
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
@staticmethod
|
|
|
|
|
def ais_to_key(ais_handle):
|
|
|
|
|
def yield_shapes():
|
|
|
|
|
ais = ais_handle.GetObject()
|
|
|
|
|
if hasattr(ais, 'Shape'):
|
|
|
|
|
yield ais.Shape()
|
|
|
|
|
return
|
|
|
|
|
shp = OCC.AIS.Handle_AIS_Shape.DownCast(ais_handle)
|
|
|
|
|
if not shp.IsNull(): yield shp.Shape()
|
|
|
|
|
return
|
|
|
|
|
mult = ais_handle
|
|
|
|
|
if mult.IsNull():
|
|
|
|
|
shp = OCC.AIS.Handle_AIS_Shape.DownCast(ais_handle)
|
|
|
|
|
if not shp.IsNull(): yield shp
|
|
|
|
|
else:
|
|
|
|
|
li = mult.GetObject().ConnectedTo()
|
|
|
|
|
for i in range(li.Length()):
|
|
|
|
|
shp = OCC.AIS.Handle_AIS_Shape.DownCast(li.Value(i+1))
|
|
|
|
|
if not shp.IsNull(): yield shp
|
|
|
|
|
return tuple(shp.HashCode(1 << 24) for shp in yield_shapes())
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def __init__(self, widget):
|
|
|
|
|
qtViewer3d.__init__(self, widget)
|
|
|
|
|
self.ais_to_product = {}
|
|
|
|
|
self.product_to_ais = {}
|
|
|
|
|
self.counter = 0
|
|
|
|
|
self.window = widget
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def initialize(self):
|
|
|
|
|
self.InitDriver()
|
|
|
|
|
self._display.Select = self.HandleSelection
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-05-03 11:05:46 +02:00
|
|
|
def load_file(self, f, setting=None):
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-05-03 11:05:46 +02:00
|
|
|
if setting is None:
|
|
|
|
|
setting = settings()
|
|
|
|
|
setting.set(setting.USE_PYTHON_OPENCASCADE, True)
|
2016-11-24 10:37:10 +01:00
|
|
|
|
|
|
|
|
v = self._display
|
|
|
|
|
|
|
|
|
|
t = {0: time.time()}
|
2016-04-17 15:27:05 +02:00
|
|
|
def update(dt = None):
|
|
|
|
|
t1 = time.time()
|
|
|
|
|
if t1 - t[0] > (dt or -1):
|
|
|
|
|
v.FitAll()
|
|
|
|
|
v.Repaint()
|
|
|
|
|
t[0] = t1
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
terminate = [False]
|
|
|
|
|
self.window.window_closed.connect(lambda *args: operator.setitem(terminate, 0, True))
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-09-22 13:40:39 +02:00
|
|
|
t0 = time.time()
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-09-22 13:40:39 +02:00
|
|
|
it = iterator(setting, f)
|
|
|
|
|
if not it.initialize():
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
old_progress = -1
|
|
|
|
|
while True:
|
2016-04-17 15:27:05 +02:00
|
|
|
if terminate[0]: break
|
2016-09-22 13:40:39 +02:00
|
|
|
shape = it.get()
|
|
|
|
|
product = f[shape.data.id]
|
2016-04-17 15:27:05 +02:00
|
|
|
ais = display_shape(shape, viewer_handle=v)
|
|
|
|
|
ais.GetObject().SetSelectionPriority(self.counter)
|
2016-09-22 13:40:39 +02:00
|
|
|
self.ais_to_product[self.counter] = product
|
|
|
|
|
self.product_to_ais[product] = ais
|
2016-04-17 15:27:05 +02:00
|
|
|
self.counter += 1
|
2016-11-24 10:37:10 +01:00
|
|
|
QtGui.QApplication.processEvents()
|
2016-09-22 13:40:39 +02:00
|
|
|
if product.is_a() in {'IfcSpace', 'IfcOpeningElement'}:
|
2016-04-17 15:27:05 +02:00
|
|
|
v.Context.Erase(ais, True)
|
2016-09-22 13:40:39 +02:00
|
|
|
progress = it.progress() // 2
|
|
|
|
|
if progress > old_progress:
|
|
|
|
|
print("\r[" + "#" * progress + " " * (50 - progress) + "]", end="")
|
|
|
|
|
old_progress = progress
|
|
|
|
|
if not it.next():
|
|
|
|
|
break
|
|
|
|
|
update(0.2)
|
|
|
|
|
|
|
|
|
|
print("\rOpened file in %.2f seconds%s" % (time.time() - t0, " "*25))
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
update()
|
2016-09-22 13:40:39 +02:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def select(self, product):
|
|
|
|
|
ais = self.product_to_ais.get(product)
|
|
|
|
|
if ais is None: return
|
|
|
|
|
v = self._display.Context
|
|
|
|
|
v.ClearSelected(False)
|
|
|
|
|
v.SetSelected(ais, True)
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def toggle(self, product_or_products, fn):
|
|
|
|
|
if not isinstance(product_or_products, Iterable):
|
|
|
|
|
product_or_products = [product_or_products]
|
|
|
|
|
aiss = list(filter(None, map(self.product_to_ais.get, product_or_products)))
|
|
|
|
|
last = len(aiss) - 1
|
|
|
|
|
for i, ais in enumerate(aiss):
|
2016-11-24 10:37:10 +01:00
|
|
|
fn(ais, i == last)
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def toggle_visibility(self, product_or_products, flag):
|
|
|
|
|
v = self._display.Context
|
|
|
|
|
if flag:
|
|
|
|
|
def visibility(ais, last):
|
|
|
|
|
v.Erase(ais, last)
|
|
|
|
|
else:
|
|
|
|
|
def visibility(ais, last):
|
|
|
|
|
v.Display(ais, last)
|
|
|
|
|
self.toggle(product_or_products, visibility)
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def toggle_wireframe(self, product_or_products, flag):
|
|
|
|
|
v = self._display.Context
|
|
|
|
|
if flag:
|
|
|
|
|
def wireframe(ais, last):
|
|
|
|
|
if v.IsDisplayed(ais):
|
|
|
|
|
v.SetDisplayMode(ais, 0, last)
|
|
|
|
|
else:
|
|
|
|
|
def wireframe(ais, last):
|
|
|
|
|
if v.IsDisplayed(ais):
|
|
|
|
|
v.SetDisplayMode(ais, 1, last)
|
|
|
|
|
self.toggle(product_or_products, wireframe)
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def HandleSelection(self, X, Y):
|
|
|
|
|
v = self._display.Context
|
|
|
|
|
v.Select()
|
|
|
|
|
v.InitSelected()
|
|
|
|
|
if v.MoreSelected():
|
|
|
|
|
ais = v.SelectedInteractive()
|
|
|
|
|
inst = self.ais_to_product[ais.GetObject().SelectionPriority()]
|
2016-11-24 10:37:10 +01:00
|
|
|
self.instanceSelected.emit(inst)
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
class window(QtGui.QMainWindow):
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
TITLE = "IfcOpenShell IFC viewer"
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
window_closed = QtCore.pyqtSignal([])
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def __init__(self):
|
|
|
|
|
QtGui.QMainWindow.__init__(self)
|
|
|
|
|
self.setWindowTitle(self.TITLE)
|
|
|
|
|
self.menu = self.menuBar()
|
|
|
|
|
self.menus = {}
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def closeEvent(self, *args):
|
|
|
|
|
self.window_closed.emit()
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def add_menu_item(self, menu, label, callback, icon=None, shortcut=None):
|
|
|
|
|
m = self.menus.get(menu)
|
2016-11-24 10:37:10 +01:00
|
|
|
if m is None:
|
2016-04-17 15:27:05 +02:00
|
|
|
m = self.menu.addMenu(menu)
|
|
|
|
|
self.menus[menu] = m
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
if icon:
|
|
|
|
|
a = QtGui.QAction(QtGui.QIcon(icon), label, self)
|
|
|
|
|
else:
|
|
|
|
|
a = QtGui.QAction(label, self)
|
|
|
|
|
|
|
|
|
|
if shortcut:
|
|
|
|
|
a.setShortcut(shortcut)
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
a.triggered.connect(callback)
|
|
|
|
|
m.addAction(a)
|
2016-11-24 10:37:10 +01:00
|
|
|
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def makeSelectionHandler(self, component):
|
|
|
|
|
def handler(inst):
|
|
|
|
|
for c in self.components:
|
|
|
|
|
if c != component:
|
|
|
|
|
c.select(inst)
|
|
|
|
|
return handler
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-05-03 11:05:46 +02:00
|
|
|
def __init__(self, settings=None):
|
2016-04-17 15:27:05 +02:00
|
|
|
QtGui.QApplication.__init__(self, sys.argv)
|
|
|
|
|
self.window = application.window()
|
|
|
|
|
self.tree = application.decomposition_treeview()
|
|
|
|
|
self.tree2 = application.type_treeview()
|
2016-11-24 10:37:10 +01:00
|
|
|
self.propview = self.property_table()
|
2016-04-17 15:27:05 +02:00
|
|
|
self.canvas = application.viewer(self.window)
|
|
|
|
|
self.tabs = QtGui.QTabWidget()
|
|
|
|
|
self.window.resize(800, 600)
|
|
|
|
|
splitter = QtGui.QSplitter(QtCore.Qt.Horizontal)
|
|
|
|
|
splitter.addWidget(self.tabs)
|
|
|
|
|
self.tabs.addTab(self.tree, 'Decomposition')
|
|
|
|
|
self.tabs.addTab(self.tree2, 'Types')
|
2016-11-24 10:37:10 +01:00
|
|
|
self.tabs.addTab(self.propview, "Properties")
|
2016-04-17 15:27:05 +02:00
|
|
|
splitter.addWidget(self.canvas)
|
|
|
|
|
splitter.setSizes([200,600])
|
|
|
|
|
self.window.setCentralWidget(splitter)
|
|
|
|
|
self.canvas.initialize()
|
2016-11-24 10:37:10 +01:00
|
|
|
self.components = [self.tree, self.tree2, self.canvas, self.propview]
|
2016-04-17 15:27:05 +02:00
|
|
|
self.files = {}
|
2016-11-24 10:37:10 +01:00
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
self.window.add_menu_item('File', '&Open', self.browse, shortcut='CTRL+O')
|
|
|
|
|
self.window.add_menu_item('File', '&Close', self.clear, shortcut='CTRL+W')
|
|
|
|
|
self.window.add_menu_item('File', '&Exit', self.window.close, shortcut='ALT+F4')
|
2016-11-24 10:37:10 +01:00
|
|
|
|
|
|
|
|
self.tree.instanceSelected.connect(self.makeSelectionHandler(self.tree))
|
2016-04-17 15:27:05 +02:00
|
|
|
self.tree2.instanceSelected.connect(self.makeSelectionHandler(self.tree2))
|
|
|
|
|
self.canvas.instanceSelected.connect(self.makeSelectionHandler(self.canvas))
|
2016-11-24 10:37:10 +01:00
|
|
|
self.propview.instanceSelected.connect(self.makeSelectionHandler(self.propview))
|
2016-04-17 15:27:05 +02:00
|
|
|
for t in [self.tree, self.tree2]:
|
|
|
|
|
t.instanceVisibilityChanged.connect(functools.partial(self.change_visibility, t))
|
|
|
|
|
t.instanceDisplayModeChanged.connect(functools.partial(self.change_displaymode, t))
|
2016-05-03 11:05:46 +02:00
|
|
|
|
|
|
|
|
self.settings = settings
|
|
|
|
|
|
2016-04-17 15:27:05 +02:00
|
|
|
def change_visibility(self, tree, inst, flag):
|
|
|
|
|
insts = tree.get_children(inst)
|
|
|
|
|
self.canvas.toggle_visibility(insts, flag)
|
|
|
|
|
|
|
|
|
|
def change_displaymode(self, tree, inst, flag):
|
|
|
|
|
insts = tree.get_children(inst)
|
|
|
|
|
self.canvas.toggle_wireframe(insts, flag)
|
|
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
|
self.window.show()
|
|
|
|
|
sys.exit(self.exec_())
|
|
|
|
|
|
|
|
|
|
def browse(self):
|
|
|
|
|
filename = QtGui.QFileDialog.getOpenFileName(self.window, 'Open file',".","Industry Foundation Classes (*.ifc)")
|
|
|
|
|
self.load(filename)
|
|
|
|
|
|
|
|
|
|
def clear(self):
|
|
|
|
|
self.canvas._display.Context.RemoveAll()
|
|
|
|
|
self.tree.clear()
|
|
|
|
|
self.files.clear()
|
|
|
|
|
|
|
|
|
|
def load(self, fn):
|
|
|
|
|
if fn in self.files: return
|
2016-09-22 13:40:39 +02:00
|
|
|
f = open(fn)
|
2016-04-17 15:27:05 +02:00
|
|
|
self.files[fn] = f
|
|
|
|
|
for c in self.components:
|
2016-05-03 11:05:46 +02:00
|
|
|
c.load_file(f, setting=self.settings)
|