1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
|
# -*- coding: utf-8 -*-
#-------------------------------------------------------------------------------
# This file is part of Code_Saturne, a general-purpose CFD tool.
#
# Copyright (C) 1998-2019 EDF S.A.
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
# Street, Fifth Floor, Boston, MA 02110-1301, USA.
#-------------------------------------------------------------------------------
"""
This module contains the following classes:
- VolumicZoneAdvancedView
- LabelDelegate
- CodeNumberDelegate
- BoundaryNatureDelegate
- StandardItemVolumeNature
- FlagBox
- VolumeNatureDelegate
- LocalizationSelectorDelegate
- StandardItemModelLocalization
- LocalizationView
- VolumeLocalizationView
- BoundaryLocalizationView
"""
#-------------------------------------------------------------------------------
# Standard modules
#-------------------------------------------------------------------------------
import logging
#-------------------------------------------------------------------------------
# Third-party modules
#-------------------------------------------------------------------------------
from code_saturne.Base.QtCore import *
from code_saturne.Base.QtGui import *
from code_saturne.Base.QtWidgets import *
#-------------------------------------------------------------------------------
# Application modules import
#-------------------------------------------------------------------------------
from code_saturne.model.Common import LABEL_LENGTH_MAX, GuiParam
from code_saturne.Base.QtPage import IntValidator, RegExpValidator
from code_saturne.Base.QtPage import to_qvariant, from_qvariant, to_text_string
from code_saturne.Pages.LocalizationForm import Ui_LocalizationForm
from code_saturne.Pages.VolumicZoneAdvancedDialogForm import Ui_VolumicZoneAdvancedDialogForm
from code_saturne.Pages.PreProcessingInformationsView import Informations, preprocessorFile
from code_saturne.model.LocalizationModel import LocalizationModel, Zone
from code_saturne.model.OutputControlModel import OutputControlModel
#-------------------------------------------------------------------------------
# log config
#-------------------------------------------------------------------------------
logging.basicConfig()
log = logging.getLogger("LocalizationView")
log.setLevel(GuiParam.DEBUG)
#-------------------------------------------------------------------------------
# Advanced dialog
#-------------------------------------------------------------------------------
class VolumicZoneAdvancedView(QDialog, Ui_VolumicZoneAdvancedDialogForm):
"""
Advanced dialog
"""
def __init__(self, parent, case, keys, default):
"""
Constructor
"""
QDialog.__init__(self, parent)
Ui_VolumicZoneAdvancedDialogForm.__init__(self)
self.setupUi(self)
self.case = case
self.case.undoStopGlobal()
self.default = default
self.keys = keys
self.result = self.default.copy()
if 'initialization' not in self.keys:
self.labelInitialization.hide()
self.checkBoxInitialization.hide()
else:
if self.default['initialization'] == 'on':
self.checkBoxInitialization.setChecked(True)
else:
self.checkBoxInitialization.setChecked(False)
if 'head_losses' not in self.keys:
self.labelHeadLosses.hide()
self.checkBoxHeadLosses.hide()
else:
if self.default['head_losses'] == 'on':
self.checkBoxHeadLosses.setChecked(True)
else:
self.checkBoxHeadLosses.setChecked(False)
if 'porosity' not in self.keys:
self.labelPorosity.hide()
self.checkBoxPorosity.hide()
else:
if self.default['porosity'] == 'on':
self.checkBoxPorosity.setChecked(True)
else:
self.checkBoxPorosity.setChecked(False)
if 'momentum_source_term' not in self.keys:
self.labelMomentum.hide()
self.checkBoxMomentum.hide()
else:
if self.default['momentum_source_term'] == 'on':
self.checkBoxMomentum.setChecked(True)
else:
self.checkBoxMomentum.setChecked(False)
if 'mass_source_term' not in self.keys:
self.labelMass.hide()
self.checkBoxMass.hide()
else:
if self.default['mass_source_term'] == 'on':
self.checkBoxMass.setChecked(True)
else:
self.checkBoxMass.setChecked(False)
if 'thermal_source_term' not in self.keys:
self.labelThermal.hide()
self.checkBoxThermal.hide()
else:
if self.default['thermal_source_term'] == 'on':
self.checkBoxThermal.setChecked(True)
else:
self.checkBoxThermal.setChecked(False)
if 'scalar_source_term' not in self.keys:
self.labelScalar.hide()
self.checkBoxScalar.hide()
else:
if self.default['scalar_source_term'] == 'on':
self.checkBoxScalar.setChecked(True)
else:
self.checkBoxScalar.setChecked(False)
if 'groundwater_law' not in self.keys:
self.labelGroundWater.hide()
self.checkBoxGroundWater.hide()
else:
if self.default['groundwater_law'] == 'on':
self.checkBoxGroundWater.setChecked(True)
else:
self.checkBoxGroundWater.setChecked(False)
self.case.undoStartGlobal()
def get_result(self):
"""
Method to get the result
"""
return self.result
def accept(self):
"""
Method called when user clicks 'OK'
"""
if 'initialization' in self.keys:
if self.checkBoxInitialization.isChecked():
self.result['initialization'] = 'on'
else:
self.result['initialization'] = 'off'
if 'head_losses' in self.keys:
if self.checkBoxHeadLosses.isChecked():
self.result['head_losses'] = 'on'
else:
self.result['head_losses'] = 'off'
if 'porosity' in self.keys:
if self.checkBoxPorosity.isChecked():
self.result['porosity'] = 'on'
else:
self.result['porosity'] = 'off'
if 'momentum_source_term' in self.keys:
if self.checkBoxMomentum.isChecked():
self.result['momentum_source_term'] = 'on'
else:
self.result['momentum_source_term'] = 'off'
if 'mass_source_term' in self.keys:
if self.checkBoxMass.isChecked():
self.result['mass_source_term'] = 'on'
else:
self.result['mass_source_term'] = 'off'
if 'thermal_source_term' in self.keys:
if self.checkBoxThermal.isChecked():
self.result['thermal_source_term'] = 'on'
else:
self.result['thermal_source_term'] = 'off'
if 'scalar_source_term' in self.keys:
if self.checkBoxScalar.isChecked():
self.result['scalar_source_term'] = 'on'
else:
self.result['scalar_source_term'] = 'off'
if 'groundwater_law' in self.keys:
if self.checkBoxGroundWater.isChecked():
self.result['groundwater_law'] = 'on'
else:
self.result['groundwater_law'] = 'off'
QDialog.accept(self)
def reject(self):
"""
Method called when user clicks 'Cancel'
"""
QDialog.reject(self)
def tr(self, text):
"""
Translation
"""
return text
#-------------------------------------------------------------------------------
# Line edit delegate for the label
#-------------------------------------------------------------------------------
class LabelDelegate(QItemDelegate):
"""
Use of a QLineEdit in the table.
"""
def __init__(self, parent, mdl):
super(LabelDelegate, self).__init__(parent)
self.parent = parent
self.mdl = mdl
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
rx = "[\-_A-Za-z0-9]{1," + str(LABEL_LENGTH_MAX) + "}"
self.regExp = QRegExp(rx)
v = RegExpValidator(editor, self.regExp)
editor.setValidator(v)
return editor
def setEditorData(self, editor, index):
editor.setAutoFillBackground(True)
v = from_qvariant(index.model().data(index, Qt.DisplayRole), to_text_string)
self.p_value = str(v)
editor.setText(v)
def setModelData(self, editor, model, index):
if not editor.isModified():
return
if editor.validator().state == QValidator.Acceptable:
p_value = str(editor.text())
if p_value in self.mdl.getLabelsZonesList():
default = {}
default['label'] = self.p_value
default['list'] = self.mdl.getLabelsZonesList()
default['regexp'] = self.regExp
log.debug("setModelData-> default = %s" % default)
from code_saturne.Pages.VerifyExistenceLabelDialogView import VerifyExistenceLabelDialogView
dialog = VerifyExistenceLabelDialogView(self.parent, default)
if dialog.exec_():
result = dialog.get_result()
p_value = result['label']
log.debug("setModelData-> result = %s" % result)
else:
p_value = self.p_value
model.setData(index, to_qvariant(p_value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# QLineEdit delegate for the zone
#-------------------------------------------------------------------------------
class CodeNumberDelegate(QItemDelegate):
def __init__(self, parent, mdl):
super(CodeNumberDelegate, self).__init__(parent)
self.parent = parent
self.mdl = mdl
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
validator = IntValidator(editor, min=0, max=999)
editor.setValidator(validator)
return editor
def setEditorData(self, editor, index):
editor.setAutoFillBackground(True)
v = from_qvariant(index.model().data(index, Qt.DisplayRole), to_text_string)
editor.setText(self.value)
def setModelData(self, editor, model, index):
if editor.validator().state == QValidator.Acceptable:
value = from_qvariant(editor.text(), int)
# Check for unicity
if value != self.value and str(value) in self.mdl.getCodeNumbersList():
title = self.tr("Warning")
msg = self.tr("Zone number can be used only once.\n"\
"Please give another value.")
QMessageBox.warning(self.parent, title, msg)
return
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# QComboBox delegate for the boundary nature
#-------------------------------------------------------------------------------
class BoundaryNatureDelegate(QItemDelegate):
"""
Use of a combo box in the table.
"""
def __init__(self, parent, dicoM2V):
super(BoundaryNatureDelegate, self).__init__(parent)
self.parent = parent
self.dicoM2V = dicoM2V
self.dicoV2M = {}
for k, v in list(self.dicoM2V.items()):
self.dicoV2M[v] = k
def createEditor(self, parent, option, index):
editor = QComboBox(parent)
for k in list(self.dicoV2M.keys()):
editor.addItem(k)
editor.installEventFilter(self)
editor.setMinimumWidth(120)
return editor
def setEditorData(self, comboBox, index):
row = index.row()
col = index.column()
str_model = index.model().getData(row, col)
idx = list(self.dicoM2V.keys()).index(str_model)
comboBox.setCurrentIndex(idx)
def setModelData(self, comboBox, model, index):
txt = str(comboBox.currentText())
value = self.dicoV2M[txt]
selectionModel = self.parent.selectionModel()
for idx in selectionModel.selectedIndexes():
if idx.column() == index.column():
model.setData(idx, to_qvariant(value), Qt.DisplayRole)
def tr(self, text):
return text
#-------------------------------------------------------------------------------
# StandarItemModel class for QComboBox in nature delegate (Volumic)
#-------------------------------------------------------------------------------
class StandardItemVolumeNature(QStandardItemModel):
"""
QStandardItemModel associated with the QComboBox
in the delegate (validator) for the nature in the case of volumic zone.
Attr. natureList is a dictionnary between model string and view string.
Attr. dicoNature holds value 'on' or 'off' if the item is checked or not.
"""
def __init__(self, dicoM2V, case, data):
"""
"""
QStandardItemModel.__init__(self)
# Dictionary item to label for display
self.dicoM2V = dicoM2V
# Dictionary item to status (on/off)
self.dicoNature = data
#self.keys = self.natureList.keys() # ordered tuple
self.keys = Zone('VolumicZone', case = case).getNatureList()
self.setColumnCount(1)
row = 0
for key in self.keys:
self.setItem(row, QStandardItem(str(self.dicoM2V[key])))
row += 1
self.setRowCount(row)
def data(self, index, role):
if not index.isValid():
return to_qvariant()
if role == Qt.EditRole:
key = self.keys[index.row()]
return to_qvariant(self.dicoM2V[key])
elif role == Qt.DisplayRole:
key = self.keys[index.row()]
return to_qvariant(self.dicoM2V[key])
elif role == Qt.CheckStateRole:
key = self.keys[index.row()]
value = self.dicoNature[key]
if value == 'on':
return to_qvariant(Qt.Checked)
else:
return to_qvariant(Qt.Unchecked)
return to_qvariant()
def flags(self, index):
if not index.isValid():
return Qt.ItemIsEnabled
return Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsUserCheckable
def setData(self, index, value, role=None):
if not index.isValid():
return
if role == Qt.EditRole:
pass
elif role == Qt.DisplayRole:
key = self.keys[index.row()]
self.dicoNature[key] = str(value)
elif role == Qt.CheckStateRole:
state = from_qvariant(value, int)
key = self.keys[index.row()]
if state == Qt.Unchecked:
self.dicoNature[key] = "off"
else:
self.dicoNature[key] = "on"
id1 = self.index(0, 0)
id2 = self.index(self.rowCount(), 0)
self.dataChanged.emit(id1, id2)
return True
def getChecked(self):
s = []
for k, v in list(self.dicoNature.items()):
if v == "on":
s.append(k)
return ";".join(s)
#-------------------------------------------------------------------------------
# FlagBox: new QComboBox to construct Delegate for the volume nature
#-------------------------------------------------------------------------------
class FlagBox(QComboBox):
def __init__(self, parent):
QComboBox.__init__(self, parent)
opt = QStyleOptionComboBox()
opt.initFrom(self)
opt.editable = self.isEditable()
if (self.style().styleHint(QStyle.SH_ComboBox_Popup, opt)):
self.setItemDelegate(QItemDelegate(self))
self.activated[int].connect(self.slotActivated)
@pyqtSlot(int)
def slotActivated(self, index):
value = self.itemData(index, Qt.CheckStateRole)
state = from_qvariant(value, int)
if state == Qt.Unchecked:
s = Qt.Checked
else:
s = Qt.Unchecked
self.setItemData(index, to_qvariant(s), Qt.CheckStateRole)
#-------------------------------------------------------------------------------
# Delegate for the volume nature
#-------------------------------------------------------------------------------
class VolumeNatureDelegate(QItemDelegate):
"""
Use of a combo box in the table.
"""
def __init__(self, parent, case):
super(VolumeNatureDelegate, self).__init__(parent)
self.case = case
def createEditor(self, parent, option, index):
editor = FlagBox(parent)
editor.setEditable(False)
editor.setMinimumWidth(160)
editor.installEventFilter(self)
return editor
def setEditorData(self, editor, index):
editor.setAutoFillBackground(True)
data = index.model().getData(index.row(), index.column())
dicoM2V = index.model().dicoM2V
self.flagbox_model = StandardItemVolumeNature(dicoM2V, self.case, data)
editor.setModel(self.flagbox_model)
def setModelData(self, editor, model, index):
value = self.flagbox_model.getChecked()
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# QLineEdit delegate for localization
#-------------------------------------------------------------------------------
class LocalizationSelectorDelegate(QItemDelegate):
def __init__(self, parent, mdl):
super(LocalizationSelectorDelegate, self).__init__(parent)
self.parent = parent
self.mdl = mdl
def createEditor(self, parent, option, index):
editor = QLineEdit(parent)
# Autocompletion for selection criteria!
comp_list = ['all[]']
if self.mdl._typeZone == 'BoundaryZone':
comp_list += ['normal[x, y, z, epsilon]']
comp_list += ['plane[a, b, c, d, epsilon]',
'plane[a, b, c, d, inside]',
'plane[a, b, c, d, outside]',
'plane[n_x, n_y, n_z, x0, y0, z0, epsilon]',
'plane[n_x, n_y, n_z, x0, y0, z0, inside]',
'plane[n_x, n_y, n_z, x0, y0, z0, outside]',
'box[xmin, ymin, zmin, xmax, ymax, zmax]',
'box[x0, y0, z0, dx1, dy1, dz1, dx2, dy2, dz2, dx3, dy3, dz3]',
'cylinder[x0, y0, z0, x1, y1, z1, radius]',
'sphere[x_c, y_c, z_c, radius]']
completer = QCompleter()
editor.setCompleter(completer)
model = QStringListModel()
completer.setModel(model)
model.setStringList(comp_list)
return editor
def setEditorData(self, editor, index):
# This line is used to avoid an overlay of old and new text
editor.setAutoFillBackground(True)
self.value = from_qvariant(index.model().data(index, Qt.DisplayRole), to_text_string)
editor.setText(self.value)
def setModelData(self, editor, model, index):
value = editor.text()
if value != self.value and str(value) in self.mdl.getLocalizationsZonesList():
title = self.tr("Warning")
msg = self.tr("This localization is already used.\n"\
"Please give another one.")
QMessageBox.information(self.parent, title, msg)
return
if str(value) != "" :
model.setData(index, to_qvariant(value), Qt.DisplayRole)
#-------------------------------------------------------------------------------
# StandarItemModel class
#-------------------------------------------------------------------------------
class StandardItemModelLocalization(QStandardItemModel):
def __init__(self, mdl, zoneType, dicoM2V, tree = None, case = None):
"""
"""
QStandardItemModel.__init__(self)
self.headers = [self.tr("Label"),
self.tr("Zone"),
self.tr("Nature"),
self.tr("Selection criteria")]
self.setColumnCount(len(self.headers))
self.mdl = mdl
self.zoneType = zoneType
self.dicoM2V = dicoM2V
self.browser = tree
self.case = case
self._data = []
self._disable = []
def data(self, index, role):
if not index.isValid():
return to_qvariant()
if role == Qt.DisplayRole:
row = index.row()
col = index.column()
if col in [0, 1, 3]:
return to_qvariant(self._data[row][col])
elif col == 2:
if self.zoneType == "VolumicZone":
data = self._data[row][col]
item = "\n".join([self.dicoM2V[key] for key in list(self.dicoM2V.keys()) if data[key] == "on"])
return to_qvariant(item)
elif self.zoneType == "BoundaryZone":
key = self._data[row][col]
return to_qvariant(self.dicoM2V[key])
return to_qvariant()
def flags(self, index):
if not index.isValid():
return Qt.ItemIsEnabled
if (index.row(), index.column()) in self._disable:
return Qt.ItemIsSelectable
return Qt.ItemIsEnabled | Qt.ItemIsSelectable | Qt.ItemIsEditable
def headerData(self, section, orientation, role):
if orientation == Qt.Horizontal and role == Qt.DisplayRole:
return to_qvariant(self.headers[section])
return to_qvariant()
def setData(self, index, value, role):
row = index.row()
col = index.column()
[old_label, old_code, old_nature, old_local] = self._data[row]
old_zone = Zone(self.zoneType,
case = self.case,
label = old_label,
codeNumber = old_code,
localization = old_local,
nature = old_nature)
new_label = old_label
new_code = old_code
new_nature = old_nature
new_local = old_local
if col == 0:
new_label = from_qvariant(value, to_text_string)
self._data[row][col] = new_label
elif col == 1:
new_code = from_qvariant(value, int)
self._data[row][col] = new_code
elif col == 2:
if self.zoneType == "VolumicZone":
# We modify the dictionary here
nature_list = str(from_qvariant(value, to_text_string)).split(";")
for key in list(self._data[row][col].keys()):
if key in nature_list:
self._data[row][col][key] = "on"
else:
self._data[row][col][key] = "off"
new_nature = self._data[row][col].copy()
elif self.zoneType == "BoundaryZone":
new_nature = str(from_qvariant(value, to_text_string))
self._data[row][col] = new_nature
elif col == 3:
new_local = str(from_qvariant(value, to_text_string))
self._data[row][col] = new_local
new_zone = Zone(self.zoneType,
case = self.case,
label = new_label,
codeNumber = new_code,
localization = new_local,
nature = new_nature)
self.mdl.replaceZone(old_zone, new_zone)
self.dataChanged.emit(index, index)
self.browser.configureTree(self.case)
return True
def addItem(self, zone=None):
"""
Add an element in the table view.
"""
if not zone:
zone = self.mdl.addZone(Zone(self.zoneType, case = self.case))
line = [zone.getLabel(),
zone.getCodeNumber(),
zone.getNature(),
zone.getLocalization()]
self._data.append(line)
row = self.rowCount()
self.setRowCount(row+1)
# Warning: the Volume region 'all_cells' is mandatory, and can not be removed.
if self.zoneType == "VolumicZone":
if zone.getLabel() == "all_cells":
for c in [0, 3]:
self._disable.append((row, c))
# self._disable.append((row, 2))
self._disable.append((row, 1))
self.browser.configureTree(self.case)
return zone
def getItem(self, row):
return self._data[row]
def updateItem(self):
# update zone Id
for id in range(0, len(self.mdl.getCodeNumbersList())):
self._data[id][1] = id + 1
def updateZone(self, index, nature):
self._data[index.row()][2] = nature
self.dataChanged.emit(index, index)
def deleteItem(self, irow):
del self._data[irow]
nb_rows = self.rowCount()
self.setRowCount(nb_rows-1)
self.updateItem()
if irow < nb_rows:
self.browser.configureTree(self.case)
def deleteItems(self):
for row in range(self.rowCount()):
del self._data[0]
self.setRowCount(0)
def getData(self, row, column):
return self._data[row][column]
#-------------------------------------------------------------------------------
# Main class
#-------------------------------------------------------------------------------
class LocalizationView(QWidget, Ui_LocalizationForm):
"""
Main class
"""
def __init__(self, zoneType, parent, case, dicoM2V, tree = None):
"""
Constructor
"""
QWidget.__init__(self, parent)
Ui_LocalizationForm.__init__(self)
self.setupUi(self)
self.case = case
self.case.undoStopGlobal()
self.zoneType = zoneType
self.mdl = LocalizationModel(zoneType, case)
self.case['dump_python'].append([self.mdl.__module__, zoneType, ()])
self.browser = tree
# Model for table View
self.modelLocalization = StandardItemModelLocalization(self.mdl, zoneType, dicoM2V, tree, case)
self.tableView.setModel(self.modelLocalization)
# Delegates
delegateLabel = LabelDelegate(self.tableView, self.mdl)
delegateCode = CodeNumberDelegate(self.tableView, self.mdl)
delegateLocal = LocalizationSelectorDelegate(self.tableView, self.mdl)
self.tableView.setItemDelegateForColumn(0, delegateLabel)
self.tableView.setItemDelegateForColumn(1, delegateCode)
self.tableView.setItemDelegateForColumn(3, delegateLocal)
# Populate QTableView model
for zone in self.mdl.getZones():
self.modelLocalization.addItem(zone)
if QT_API == "PYQT4":
self.tableView.verticalHeader().setResizeMode(QHeaderView.ResizeToContents)
self.tableView.horizontalHeader().setResizeMode(QHeaderView.ResizeToContents)
self.tableView.horizontalHeader().setResizeMode(3, QHeaderView.Stretch)
elif QT_API == "PYQT5":
self.tableView.verticalHeader().setSectionResizeMode(QHeaderView.ResizeToContents)
self.tableView.horizontalHeader().setSectionResizeMode(QHeaderView.ResizeToContents)
self.tableView.horizontalHeader().setSectionResizeMode(3, QHeaderView.Stretch)
# Connections
self.pushButtonNew.clicked.connect(self.slotAddZone)
self.pushButtonDelete.clicked.connect(self.slotDeleteZone)
self.pushButtonModify.clicked.connect(self.slotModifyZone)
self.toolButtonCreation.clicked.connect(self.slotAddFromPrePro)
self.modelLocalization.dataChanged.connect(self.dataChanged)
self.tableView.clicked.connect(self.slotChangeSelection)
self.pushButtonSalome.hide()
self.pushButtonModify.setEnabled(False)
if case['salome']:
self.pushButtonSalome.show()
self.pushButtonSalome.clicked.connect(self.slotAddFromSalome)
# Context menu
self.tableView.setContextMenuPolicy(Qt.CustomContextMenu)
self.tableView.customContextMenuRequested[QPoint].connect(self.slotContextMenu)
self.case.undoStartGlobal()
def slotChangeSelection(self):
"""
"""
self.pushButtonModify.setEnabled(False)
current = self.tableView.currentIndex()
if current != self.tableView.rootIndex():
self.pushButtonModify.setEnabled(True)
@pyqtSlot()
def slotAddZone(self):
"""
Insert a new item in the table view.
"""
zone = self.modelLocalization.addItem()
if self.zoneType == 'VolumicZone':
label = zone.getLabel()
code = zone.getCodeNumber()
nature = zone.getNature()
local = zone.getLocalization()
self.keys = Zone('VolumicZone', case = self.case).getNatureList()
log.debug("slotAddZone -> %s" % str(nature))
dialog = VolumicZoneAdvancedView(self, self.case, self.keys, nature)
if dialog.exec_():
result = dialog.get_result()
log.debug("slotAddZone -> %s" % str(result))
new_zone = Zone(self.zoneType,
case = self.case,
label = label,
codeNumber = code,
localization = local,
nature = result)
self.mdl.replaceZone(zone, new_zone)
index = self.tableView.model().index(code - 1, 2)
self.modelLocalization.updateZone(index, result)
self.browser.configureTree(self.case)
self.slotChangeSelection()
@pyqtSlot()
def slotModifyZone(self):
"""
Modify volumic zone nature
"""
index = self.tableView.selectionModel().selectedRows()[0]
[label, code, nature, local] = self.modelLocalization.getItem(index.row())
self.keys = Zone('VolumicZone', case = self.case).getNatureList()
zone = Zone(self.zoneType,
case = self.case,
label = label,
codeNumber = code,
localization = local,
nature = nature)
log.debug("slotAddZone -> %s" % str(nature))
dialog = VolumicZoneAdvancedView(self, self.case, self.keys, nature)
if dialog.exec_():
result = dialog.get_result()
log.debug("slotAddZone -> %s" % str(result))
new_zone = Zone(self.zoneType,
case = self.case,
label = label,
codeNumber = code,
localization = local,
nature = result)
self.mdl.replaceZone(zone, new_zone)
index = self.tableView.model().index(code - 1, 2)
self.modelLocalization.updateZone(index, result)
self.browser.configureTree(self.case)
self.slotChangeSelection()
@pyqtSlot()
def slotDeleteZone(self):
"""
Private Slot.
Warning: the Volume region 'all_cells' is mandatory, therefore it can not be deleted.
"""
lst = []
for index in self.tableView.selectionModel().selectedRows():
row = index.row()
lst.append(row)
lst.sort()
lst.reverse()
for row in lst:
[label, codeNumber, nature, localization] = self.modelLocalization.getItem(row)
if not (label == "all_cells" and self.zoneType == 'VolumicZone'):
# We also need to delete postprocessing meshes based on the zone
OutputControlModel(self.case).deleteZone(label, self.zoneType)
# Delete the zone itself
self.mdl.deleteZone(label)
self.modelLocalization.deleteItem(row)
self.slotChangeSelection()
for index in self.tableView.selectionModel().selectedRows():
self.modelLocalization.dataChanged.emit(index, index)
@pyqtSlot()
def slotAddFromPrePro(self):
"""
Research a preprocessor log to pick colors or groups of cells or faces.
"""
if self.zoneType == 'VolumicZone':
entity = 'cells'
elif self.zoneType == 'BoundaryZone':
entity = 'faces'
file_name = preprocessorFile(self, self.case['resu_path'])
if file_name:
for loc in Informations(file_name, entity).getLocalizations():
if loc not in self.mdl.getLocalizationsZonesList():
zone = Zone(self.zoneType, case = self.case, localization = loc)
self.mdl.addZone(zone)
self.modelLocalization.addItem(zone)
@pyqtSlot()
def slotContextMenu(self):
"""
Public slot
Create the popup menu of the Browser
"""
fileMenu = QMenu(self.tableView)
actionMerge = QAction(self.tr("Merge selected zones"), self.tableView)
actionMerge.triggered.connect(self.slotMerge)
fileMenu.addAction(actionMerge)
if self.zoneType == 'BoundaryZone':
fileMenu.addSeparator()
self.actionInlet = QAction(self.tr("Select all inlets"), self.tableView)
self.actionInlet.triggered.connect(self.slotSelectBoudaries)
fileMenu.addAction(self.actionInlet)
self.actionOutlet = QAction(self.tr("Select all outlets"), self.tableView)
self.actionOutlet.triggered.connect(self.slotSelectBoudaries)
fileMenu.addAction(self.actionOutlet)
self.actionWall = QAction(self.tr("Select all walls"), self.tableView)
self.actionWall.triggered.connect(self.slotSelectBoudaries)
fileMenu.addAction(self.actionWall)
self.actionSymmetry = QAction(self.tr("Select all symmetries"), self.tableView)
self.actionSymmetry.triggered.connect(self.slotSelectBoudaries)
fileMenu.addAction(self.actionSymmetry)
fileMenu.popup(QCursor().pos())
fileMenu.show()
@pyqtSlot()
def slotMerge(self):
"""
public slot
"""
lst = []
for index in self.tableView.selectionModel().selectedRows():
lst.append(index.row())
row = lst.pop(0)
[label, code, nature, new_localization] = self.modelLocalization.getItem(row)
ll = label
for row in lst:
[label, code, nature, localization] = self.modelLocalization.getItem(row)
if "all[]" not in new_localization.split(" "):
new_localization += " or " + localization
if localization == "all[]":
new_localization = "all[]"
self.modelLocalization.deleteItems()
self.mdl.mergeZones(ll, new_localization, lst)
# Populate QTableView model
for zone in self.mdl.getZones():
self.modelLocalization.addItem(zone)
@pyqtSlot()
def slotAddFromSalome(self):
"""
When GUI is embeded in the Salome desktop. Add selection criteria from
graphical selection in the VTK viwver, or in the ObjectBrowser.
"""
if self.case['salome']:
from code_saturne.Pages.SalomeHandler import BoundaryGroup, VolumeGroup
log.debug("slotAddFromSalome: zoneType -> %s" % self.zoneType)
if self.zoneType == 'VolumicZone':
loc = VolumeGroup()
elif self.zoneType == 'BoundaryZone':
loc = BoundaryGroup()
log.debug("slotAddFromSalome: selection criteria -> %s" % loc)
if loc not in self.mdl.getLocalizationsZonesList() and loc != "" :
zone = Zone(self.zoneType, localization = loc, case = self.case)
self.mdl.addZone(zone)
self.modelLocalization.addItem(zone)
def dataChanged(self, topLeft, bottomRight):
for row in range(topLeft.row(), bottomRight.row()+1):
self.tableView.resizeRowToContents(row)
for col in range(topLeft.column(), bottomRight.column()+1):
self.tableView.resizeColumnToContents(col)
def tr(self, text):
"""
Translation.
"""
return text
#-------------------------------------------------------------------------------
# Define Volumic regions class
#-------------------------------------------------------------------------------
class VolumeLocalizationView(LocalizationView):
"""
Define volume regions class.
"""
def __init__(self, parent=None, case=None, tree = None):
"""
Constructor.
"""
self.case = case
self.browser = tree
dicoM2V = Zone("VolumicZone", self.case).getModel2ViewDictionary()
LocalizationView.__init__(self, "VolumicZone", parent, self.case, dicoM2V, tree)
title = self.tr("Definition of volume regions")
self.groupBoxLocalization.setTitle(title)
# Delegates
delegateNature = VolumeNatureDelegate(self.tableView, self.case)
self.tableView.setItemDelegateForColumn(2, delegateNature)
self.browser.configureTree(self.case)
#-------------------------------------------------------------------------------
# Define Boundary regions class
#-------------------------------------------------------------------------------
class BoundaryLocalizationView(LocalizationView):
"""
Define boundary regions class.
"""
def __init__(self, parent=None, case=None, tree = None):
"""
Constructor.
"""
self.case = case
dicoM2V = Zone("BoundaryZone", case = self.case).getModel2ViewDictionary()
self.browser = tree
LocalizationView.__init__(self, "BoundaryZone", parent, self.case, dicoM2V, tree)
title = self.tr("Boundary regions definition")
self.groupBoxLocalization.setTitle(title)
# Delegates
delegateNature = BoundaryNatureDelegate(self.tableView, dicoM2V)
self.tableView.setItemDelegateForColumn(2, delegateNature)
self.pushButtonModify.hide()
@pyqtSlot()
def slotSelectBoudaries(self):
"""
Public slot.
Warning: works only if the selection mode of the view is set to MultiSelection.
"""
previous_selecion_mode = self.tableView.selectionMode()
self.tableView.setSelectionMode(QAbstractItemView.MultiSelection)
self.tableView.clearSelection()
if self.sender() == self.actionInlet:
select = "inlet"
elif self.sender() == self.actionOutlet:
select = "outlet"
elif self.sender() == self.actionWall:
select = "wall"
elif self.sender() == self.actionSymmetry:
select = "symmetry"
for row in range(self.modelLocalization.rowCount()):
[label, code, nature, localization] = self.modelLocalization.getItem(row)
if nature == select:
self.tableView.selectRow(row)
self.tableView.setSelectionMode(previous_selecion_mode)
#-------------------------------------------------------------------------------
# End
#-------------------------------------------------------------------------------
|