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
|
"""
@package gmodeler.dialogs
@brief wxGUI Graphical Modeler - dialogs
Classes:
- dialogs::ModelDataDialog
- dialogs::ModelSearchDialog
- dialogs::ModelRelationDialog
- dialogs::ModelItemDialog
- dialogs::ModelLoopDialog
- dialogs::ModelConditionDialog
- dialogs::ModelListCtrl
- dialogs::ValiableListCtrl
- dialogs::ItemListCtrl
- dialogs::ItemCheckListCtrl
(C) 2010-2016 by the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
@author Martin Landa <landa.martin gmail.com>
"""
import os
import wx
import wx.lib.mixins.listctrl as listmix
from core import globalvar
from core import utils
from gui_core.widgets import SearchModuleWidget, SimpleValidator
from core.gcmd import GError
from gui_core.dialogs import SimpleDialog, MapLayersDialogForModeler
from gui_core.prompt import GPromptSTC
from gui_core.gselect import Select, ElementSelect
from lmgr.menudata import LayerManagerMenuData
from gui_core.wrap import (
Button,
StaticText,
StaticBox,
TextCtrl,
Menu,
ListCtrl,
NewId,
CheckListCtrlMixin,
)
from gmodeler.model import ModelData, ModelAction, ModelCondition
class ModelDataDialog(SimpleDialog):
"""Data item properties dialog"""
def __init__(self, parent, shape, title=_("Data properties")):
self.parent = parent
self.shape = shape
label, etype = self._getLabel()
self.etype = etype
SimpleDialog.__init__(self, parent, title)
self.element = Select(
parent=self.panel,
type=self.shape.GetPrompt(),
validator=SimpleValidator(callback=self.ValidatorCallback),
)
if shape.GetValue():
self.element.SetValue(shape.GetValue())
self.Bind(wx.EVT_BUTTON, self.OnOK, self.btnOK)
self.Bind(wx.EVT_BUTTON, self.OnCancel, self.btnCancel)
if self.etype:
self.typeSelect = ElementSelect(
parent=self.panel,
elements=["raster", "raster_3d", "vector"],
size=globalvar.DIALOG_GSELECT_SIZE,
)
self.typeSelect.Bind(wx.EVT_CHOICE, self.OnType)
self.typeSelect.SetSelection(0)
self.element.SetType("raster")
if shape.GetValue():
self.btnOK.Enable()
self._layout()
self.SetMinSize(self.GetSize())
def _getLabel(self):
etype = False
prompt = self.shape.GetPrompt()
if prompt == "raster":
label = _("Name of raster map:")
elif prompt == "vector":
label = _("Name of vector map:")
else:
etype = True
label = _("Name of element:")
return label, etype
def _layout(self):
"""Do layout"""
if self.etype:
self.dataSizer.Add(
StaticText(
parent=self.panel, id=wx.ID_ANY, label=_("Type of element:")
),
proportion=0,
flag=wx.ALL,
border=1,
)
self.dataSizer.Add(self.typeSelect, proportion=0, flag=wx.ALL, border=1)
self.dataSizer.Add(
StaticText(parent=self.panel, id=wx.ID_ANY, label=_("Name of element:")),
proportion=0,
flag=wx.ALL,
border=1,
)
self.dataSizer.Add(
self.element, proportion=0, flag=wx.EXPAND | wx.ALL, border=1
)
self.panel.SetSizer(self.sizer)
self.sizer.Fit(self)
def GetType(self):
"""Get element type"""
if not self.etype:
return
return self.element.tcp.GetType()
def OnType(self, event):
"""Select element type"""
evalue = self.typeSelect.GetValue(event.GetString())
self.element.SetType(evalue)
def OnOK(self, event):
"""Ok pressed"""
self.shape.SetValue(self.element.GetValue())
if self.etype:
elem = self.GetType()
if elem == "raster":
self.shape.SetPrompt("raster")
elif elem == "vector":
self.shape.SetPrompt("vector")
elif elem == "raster_3d":
self.shape.SetPrompt("raster_3d")
self.parent.canvas.Refresh()
self.parent.SetStatusText("", 0)
self.shape.SetPropDialog(None)
if self.IsModal():
event.Skip()
else:
self.Destroy()
def OnCancel(self, event):
"""Cancel pressed"""
self.shape.SetPropDialog(None)
if self.IsModal():
event.Skip()
else:
self.Destroy()
class ModelSearchDialog(wx.Dialog):
def __init__(
self,
parent,
giface,
title=_("Add GRASS command to the model"),
style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER,
**kwargs,
):
"""Graphical modeler tool search window
:param parent: parent window
:param id: window id
:param title: window title
:param kwargs: wx.Dialogs' arguments
"""
self.parent = parent
wx.Dialog.__init__(self, parent=parent, id=wx.ID_ANY, title=title, **kwargs)
self.SetName("ModelerDialog")
self.SetIcon(
wx.Icon(os.path.join(globalvar.ICONDIR, "grass.ico"), wx.BITMAP_TYPE_ICO)
)
self._command = None
self.panel = wx.Panel(parent=self, id=wx.ID_ANY)
self.cmdBox = StaticBox(
parent=self.panel, id=wx.ID_ANY, label=" %s " % _("Command")
)
self.labelBox = StaticBox(
parent=self.panel, id=wx.ID_ANY, label=" %s " % _("Label and comment")
)
# menu data for search widget and prompt
menuModel = LayerManagerMenuData()
self.cmd_prompt = GPromptSTC(
parent=self, giface=giface, menuModel=menuModel.GetModel()
)
self.cmd_prompt.promptRunCmd.connect(self.OnCommand)
self.cmd_prompt.commandSelected.connect(
lambda command: self.label.SetValue(command)
)
self.search = SearchModuleWidget(
parent=self.panel, model=menuModel.GetModel(), showTip=True
)
self.search.moduleSelected.connect(
lambda name: (
self.cmd_prompt.SetText(name + " "),
self.label.SetValue(name),
)
)
self.label = TextCtrl(parent=self.panel, id=wx.ID_ANY)
self.comment = TextCtrl(parent=self.panel, id=wx.ID_ANY, style=wx.TE_MULTILINE)
self.btnCancel = Button(self.panel, wx.ID_CANCEL)
self.btnOk = Button(self.panel, wx.ID_OK)
self.btnOk.SetDefault()
self.Bind(wx.EVT_BUTTON, self.OnOk, self.btnOk)
self.Bind(wx.EVT_BUTTON, self.OnCancel, self.btnCancel)
self._layout()
self.SetSize((500, -1))
def _layout(self):
cmdSizer = wx.StaticBoxSizer(self.cmdBox, wx.VERTICAL)
cmdSizer.Add(self.cmd_prompt, proportion=1, flag=wx.EXPAND)
labelSizer = wx.StaticBoxSizer(self.labelBox, wx.VERTICAL)
gridSizer = wx.GridBagSizer(hgap=5, vgap=5)
gridSizer.Add(
StaticText(parent=self.panel, id=wx.ID_ANY, label=_("Label:")),
flag=wx.ALIGN_CENTER_VERTICAL,
pos=(0, 0),
)
gridSizer.Add(self.label, pos=(0, 1), flag=wx.EXPAND)
gridSizer.Add(
StaticText(parent=self.panel, id=wx.ID_ANY, label=_("Comment:")),
flag=wx.ALIGN_CENTER_VERTICAL,
pos=(1, 0),
)
gridSizer.Add(self.comment, pos=(1, 1), flag=wx.EXPAND)
gridSizer.AddGrowableRow(1)
gridSizer.AddGrowableCol(1)
labelSizer.Add(gridSizer, proportion=1, flag=wx.EXPAND)
btnSizer = wx.StdDialogButtonSizer()
btnSizer.AddButton(self.btnCancel)
btnSizer.AddButton(self.btnOk)
btnSizer.Realize()
mainSizer = wx.BoxSizer(wx.VERTICAL)
mainSizer.Add(self.search, proportion=0, flag=wx.EXPAND | wx.ALL, border=3)
mainSizer.Add(
cmdSizer,
proportion=1,
flag=wx.EXPAND | wx.LEFT | wx.RIGHT | wx.TOP,
border=3,
)
mainSizer.Add(
labelSizer,
proportion=1,
flag=wx.EXPAND | wx.LEFT | wx.RIGHT | wx.TOP,
border=3,
)
mainSizer.Add(btnSizer, proportion=0, flag=wx.EXPAND | wx.ALL, border=5)
self.panel.SetSizer(mainSizer)
mainSizer.Fit(self)
self.Layout()
def GetPanel(self):
"""Get dialog panel"""
return self.panel
def _getCmd(self):
line = self.cmd_prompt.GetCurLine()[0].strip()
if len(line) == 0:
cmd = list()
else:
cmd = utils.split(str(line))
return cmd
def GetCmd(self):
"""Get command"""
return self._command
def GetLabel(self):
"""Get label and comment"""
return self.label.GetValue(), self.comment.GetValue()
def ValidateCmd(self, cmd):
if len(cmd) < 1:
GError(
parent=self,
message=_(
"Command not defined.\n\n" "Unable to add new action to the model."
),
)
return False
if cmd[0] not in globalvar.grassCmd:
GError(
parent=self,
message=_(
"'%s' is not a GRASS tool.\n\n"
"Unable to add new action to the model."
)
% cmd[0],
)
return False
return True
def OnCommand(self, cmd):
"""Command in prompt confirmed"""
if self.ValidateCmd(cmd["cmd"]):
self._command = cmd["cmd"]
self.EndModal(wx.ID_OK)
def OnOk(self, event):
"""Button 'OK' pressed"""
cmd = self._getCmd()
if self.ValidateCmd(cmd):
self._command = cmd
self.EndModal(wx.ID_OK)
def OnCancel(self, event):
"""Cancel pressed, close window"""
self.Hide()
def Reset(self):
"""Reset dialog"""
self.search.Reset()
self.label.SetValue("")
self.comment.SetValue("")
self.cmd_prompt.CmdErase()
self.cmd_prompt.SetFocus()
class ModelRelationDialog(wx.Dialog):
"""Relation properties dialog"""
def __init__(
self,
parent,
shape,
id=wx.ID_ANY,
title=_("Relation properties"),
style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER,
**kwargs,
):
self.parent = parent
self.shape = shape
options = self._getOptions()
if not options:
self.valid = False
return
self.valid = True
wx.Dialog.__init__(self, parent, id, title, style=style, **kwargs)
self.SetIcon(
wx.Icon(os.path.join(globalvar.ICONDIR, "grass.ico"), wx.BITMAP_TYPE_ICO)
)
self.panel = wx.Panel(parent=self, id=wx.ID_ANY)
self.fromBox = StaticBox(
parent=self.panel, id=wx.ID_ANY, label=" %s " % _("From")
)
self.toBox = StaticBox(parent=self.panel, id=wx.ID_ANY, label=" %s " % _("To"))
self.option = wx.ComboBox(
parent=self.panel, id=wx.ID_ANY, style=wx.CB_READONLY, choices=options
)
self.option.Bind(wx.EVT_COMBOBOX, self.OnOption)
self.btnCancel = Button(self.panel, wx.ID_CANCEL)
self.btnOk = Button(self.panel, wx.ID_OK)
self.btnOk.Enable(False)
self._layout()
def _layout(self):
mainSizer = wx.BoxSizer(wx.VERTICAL)
fromSizer = wx.StaticBoxSizer(self.fromBox, wx.VERTICAL)
self._layoutShape(shape=self.shape.GetFrom(), sizer=fromSizer)
toSizer = wx.StaticBoxSizer(self.toBox, wx.VERTICAL)
self._layoutShape(shape=self.shape.GetTo(), sizer=toSizer)
btnSizer = wx.StdDialogButtonSizer()
btnSizer.AddButton(self.btnCancel)
btnSizer.AddButton(self.btnOk)
btnSizer.Realize()
mainSizer.Add(fromSizer, proportion=0, flag=wx.EXPAND | wx.ALL, border=5)
mainSizer.Add(
toSizer,
proportion=0,
flag=wx.EXPAND | wx.LEFT | wx.RIGHT | wx.BOTTOM,
border=5,
)
mainSizer.Add(btnSizer, proportion=0, flag=wx.EXPAND | wx.ALL, border=5)
self.panel.SetSizer(mainSizer)
mainSizer.Fit(self)
self.Layout()
self.SetSize(self.GetBestSize())
def _layoutShape(self, shape, sizer):
if isinstance(shape, ModelData):
sizer.Add(
StaticText(
parent=self.panel,
id=wx.ID_ANY,
label=_("Data: %s") % shape.GetLog(),
),
proportion=1,
flag=wx.EXPAND | wx.ALL,
border=5,
)
elif isinstance(shape, ModelAction):
gridSizer = wx.GridBagSizer(hgap=5, vgap=5)
gridSizer.Add(
StaticText(parent=self.panel, id=wx.ID_ANY, label=_("Command:")),
pos=(0, 0),
)
gridSizer.Add(
StaticText(parent=self.panel, id=wx.ID_ANY, label=shape.GetLabel()),
pos=(0, 1),
)
gridSizer.Add(
StaticText(parent=self.panel, id=wx.ID_ANY, label=_("Option:")),
flag=wx.ALIGN_CENTER_VERTICAL,
pos=(1, 0),
)
gridSizer.Add(self.option, pos=(1, 1))
sizer.Add(gridSizer, proportion=1, flag=wx.EXPAND | wx.ALL, border=5)
def _getOptions(self):
"""Get relevant options"""
items = []
fromShape = self.shape.GetFrom()
if not isinstance(fromShape, ModelData):
GError(
parent=self.parent,
message=_(
"Relation doesn't start with data item.\n" "Unable to add relation."
),
)
return items
toShape = self.shape.GetTo()
if not isinstance(toShape, ModelAction):
GError(
parent=self.parent,
message=_(
"Relation doesn't point to GRASS command.\n"
"Unable to add relation."
),
)
return items
prompt = fromShape.GetPrompt()
task = toShape.GetTask()
for p in task.get_options()["params"]:
if p.get("prompt", "") == prompt and "name" in p:
items.append(p["name"])
if not items:
GError(
parent=self.parent,
message=_("No relevant option found.\n" "Unable to add relation."),
)
return items
def GetOption(self):
"""Get selected option"""
return self.option.GetStringSelection()
def IsValid(self):
"""Check if relation is valid"""
return self.valid
def OnOption(self, event):
"""Set option"""
if event.GetString():
self.btnOk.Enable()
else:
self.btnOk.Enable(False)
class ModelItemDialog(wx.Dialog):
"""Abstract item properties dialog"""
def __init__(
self,
parent,
shape,
title,
id=wx.ID_ANY,
style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER,
**kwargs,
):
self.parent = parent
self.shape = shape
wx.Dialog.__init__(self, parent, id, title=title, style=style, **kwargs)
self.panel = wx.Panel(parent=self, id=wx.ID_ANY)
self.condBox = StaticBox(
parent=self.panel, id=wx.ID_ANY, label=" %s " % _("Condition")
)
self.condText = TextCtrl(
parent=self.panel, id=wx.ID_ANY, value=shape.GetLabel()
)
self.itemList = ItemCheckListCtrl(
parent=self.panel,
columns=[_("Label"), _("Command")],
shape=shape,
frame=parent,
)
self.itemList.Populate(self.parent.GetModel().GetItems())
self.btnCancel = Button(parent=self.panel, id=wx.ID_CANCEL)
self.btnOk = Button(parent=self.panel, id=wx.ID_OK)
self.btnOk.SetDefault()
def _layout(self):
"""Do layout (virtual method)"""
pass
def GetCondition(self):
"""Get loop condition"""
return self.condText.GetValue()
class ModelLoopDialog(ModelItemDialog):
"""Loop properties dialog"""
def __init__(
self,
parent,
shape,
id=wx.ID_ANY,
title=_("Loop properties"),
style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER,
**kwargs,
):
ModelItemDialog.__init__(self, parent, shape, title, style=style, **kwargs)
self.listBox = StaticBox(
parent=self.panel, id=wx.ID_ANY, label=" %s " % _("List of items in loop")
)
self.btnSeries = Button(parent=self.panel, id=wx.ID_ANY, label=_("Series"))
self.btnSeries.SetToolTip(_("Define map series as condition for the loop"))
self.btnSeries.Bind(wx.EVT_BUTTON, self.OnSeries)
self._layout()
self.SetMinSize(self.GetSize())
self.SetSize((500, 400))
def _layout(self):
"""Do layout"""
sizer = wx.BoxSizer(wx.VERTICAL)
condSizer = wx.StaticBoxSizer(self.condBox, wx.HORIZONTAL)
condSizer.Add(self.condText, proportion=1, flag=wx.ALL, border=3)
condSizer.Add(self.btnSeries, proportion=0, flag=wx.EXPAND)
listSizer = wx.StaticBoxSizer(self.listBox, wx.VERTICAL)
listSizer.Add(self.itemList, proportion=1, flag=wx.EXPAND | wx.ALL, border=3)
btnSizer = wx.StdDialogButtonSizer()
btnSizer.AddButton(self.btnCancel)
btnSizer.AddButton(self.btnOk)
btnSizer.Realize()
sizer.Add(condSizer, proportion=0, flag=wx.EXPAND | wx.ALL, border=3)
sizer.Add(
listSizer, proportion=1, flag=wx.EXPAND | wx.LEFT | wx.RIGHT, border=3
)
sizer.Add(
btnSizer, proportion=0, flag=wx.EXPAND | wx.ALL | wx.ALIGN_CENTER, border=5
)
self.panel.SetSizer(sizer)
sizer.Fit(self.panel)
self.Layout()
def GetItems(self):
"""Get list of selected actions"""
return self.itemList.GetItems()
def OnSeries(self, event):
"""Define map series as condition"""
dialog = MapLayersDialogForModeler(
parent=self, title=_("Define series of maps")
)
if dialog.ShowModal() != wx.ID_OK:
dialog.Destroy()
return
cond = dialog.GetDSeries()
if not cond:
cond = "map in {}".format(list(map(str, dialog.GetMapLayers())))
self.condText.SetValue(cond)
dialog.Destroy()
class ModelConditionDialog(ModelItemDialog):
"""Condition properties dialog"""
def __init__(
self,
parent,
shape,
id=wx.ID_ANY,
title=_("If-else properties"),
style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER,
**kwargs,
):
ModelItemDialog.__init__(self, parent, shape, title, style=style, **kwargs)
self.listBoxIf = StaticBox(
parent=self.panel,
id=wx.ID_ANY,
label=" %s " % _("List of items in 'if' block"),
)
self.itemListIf = self.itemList
self.itemListIf.SetName("IfBlockList")
self.listBoxElse = StaticBox(
parent=self.panel,
id=wx.ID_ANY,
label=" %s " % _("List of items in 'else' block"),
)
self.itemListElse = ItemCheckListCtrl(
parent=self.panel,
columns=[_("Label"), _("Command")],
shape=shape,
frame=parent,
)
self.itemListElse.SetName("ElseBlockList")
self.itemListElse.Populate(self.parent.GetModel().GetItems())
self._layout()
self.SetMinSize(self.GetSize())
self.SetSize((500, 400))
def _layout(self):
"""Do layout"""
sizer = wx.BoxSizer(wx.VERTICAL)
condSizer = wx.StaticBoxSizer(self.condBox, wx.VERTICAL)
condSizer.Add(self.condText, proportion=1, flag=wx.EXPAND)
listIfSizer = wx.StaticBoxSizer(self.listBoxIf, wx.VERTICAL)
listIfSizer.Add(self.itemListIf, proportion=1, flag=wx.EXPAND)
listElseSizer = wx.StaticBoxSizer(self.listBoxElse, wx.VERTICAL)
listElseSizer.Add(self.itemListElse, proportion=1, flag=wx.EXPAND)
btnSizer = wx.StdDialogButtonSizer()
btnSizer.AddButton(self.btnCancel)
btnSizer.AddButton(self.btnOk)
btnSizer.Realize()
sizer.Add(condSizer, proportion=0, flag=wx.EXPAND | wx.ALL, border=3)
sizer.Add(
listIfSizer, proportion=1, flag=wx.EXPAND | wx.LEFT | wx.RIGHT, border=3
)
sizer.Add(
listElseSizer, proportion=1, flag=wx.EXPAND | wx.LEFT | wx.RIGHT, border=3
)
sizer.Add(
btnSizer, proportion=0, flag=wx.EXPAND | wx.ALL | wx.ALIGN_CENTER, border=5
)
self.panel.SetSizer(sizer)
sizer.Fit(self.panel)
self.Layout()
def OnCheckItemIf(self, index, flag):
"""Item in if-block checked/unchecked"""
if flag is False:
return
aId = int(self.itemListIf.GetItem(index, 0).GetText())
if aId in self.itemListElse.GetItems()["checked"]:
self.itemListElse.CheckItemById(aId, False)
def OnCheckItemElse(self, index, flag):
"""Item in else-block checked/unchecked"""
if flag is False:
return
aId = int(self.itemListElse.GetItem(index, 0).GetText())
if aId in self.itemListIf.GetItems()["checked"]:
self.itemListIf.CheckItemById(aId, False)
def GetItems(self):
"""Get items"""
return {"if": self.itemListIf.GetItems(), "else": self.itemListElse.GetItems()}
class ModelListCtrl(ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.TextEditMixin):
def __init__(
self,
parent,
columns,
frame,
id=wx.ID_ANY,
columnsNotEditable=[],
style=wx.LC_REPORT | wx.BORDER_NONE | wx.LC_HRULES | wx.LC_VRULES,
**kwargs,
):
"""List of model variables"""
self.parent = parent
self.columns = columns
self.shape = None
self.frame = frame
self.columnNotEditable = columnsNotEditable
ListCtrl.__init__(self, parent, id=id, style=style, **kwargs)
listmix.ListCtrlAutoWidthMixin.__init__(self)
listmix.TextEditMixin.__init__(self)
i = 0
for col in columns:
self.InsertColumn(i, col)
self.SetColumnWidth(i, wx.LIST_AUTOSIZE_USEHEADER)
i += 1
self.itemDataMap = {} # requested by sorter
self.itemCount = 0
self.Bind(wx.EVT_LIST_BEGIN_LABEL_EDIT, self.OnBeginEdit)
self.Bind(wx.EVT_LIST_END_LABEL_EDIT, self.OnEndEdit)
self.Bind(wx.EVT_LIST_COL_CLICK, self.OnColClick)
self.Bind(wx.EVT_COMMAND_RIGHT_CLICK, self.OnRightUp) # wxMSW
self.Bind(wx.EVT_RIGHT_UP, self.OnRightUp) # wxGTK
def OnBeginEdit(self, event):
"""Editing of item started"""
column = event.GetColumn()
if self.columnNotEditable and column in self.columnNotEditable:
event.Veto()
self.SetItemState(
event.GetIndex(),
wx.LIST_STATE_SELECTED,
wx.LIST_STATE_SELECTED | wx.LIST_STATE_FOCUSED,
)
else:
event.Allow()
def OnEndEdit(self, event):
"""Finish editing of item"""
pass
def GetListCtrl(self):
"""Used by ColumnSorterMixin"""
return self
def OnColClick(self, event):
"""Click on column header (order by)"""
event.Skip()
class VariableListCtrl(ModelListCtrl):
def __init__(self, parent, columns, **kwargs):
"""List of model variables"""
ModelListCtrl.__init__(self, parent, columns, **kwargs)
self.SetColumnWidth(2, 200) # default value
def GetData(self):
"""Get list data"""
return self.itemDataMap
def Populate(self, data):
"""Populate the list"""
self.itemDataMap = dict()
i = 0
for name, values in data.items():
self.itemDataMap[i] = [
name,
values["type"],
values.get("value", ""),
values.get("description", ""),
]
i += 1
self.itemCount = len(self.itemDataMap.keys())
self.DeleteAllItems()
i = 0
for name, vtype, value, desc in self.itemDataMap.values():
index = self.InsertItem(i, name)
self.SetItem(index, 0, name)
self.SetItem(index, 1, vtype)
self.SetItem(index, 2, value)
self.SetItem(index, 3, desc)
self.SetItemData(index, i)
i += 1
def Append(self, name, vtype, value, desc):
"""Append new item to the list
:return: None on success
:return: error string
"""
for iname, ivtype, ivalue, idesc in self.itemDataMap.values():
if iname == name:
return (
_(
"Variable <%s> already exists in the model. "
"Adding variable failed."
)
% name
)
index = self.InsertItem(self.GetItemCount(), name)
self.SetItem(index, 0, name)
self.SetItem(index, 1, vtype)
self.SetItem(index, 2, value)
self.SetItem(index, 3, desc)
self.SetItemData(index, self.itemCount)
self.itemDataMap[self.itemCount] = [name, vtype, value, desc]
self.itemCount += 1
return None
def OnRemove(self, event):
"""Remove selected variable(s) from the model"""
item = self.GetFirstSelected()
while item != -1:
self.DeleteItem(item)
del self.itemDataMap[item]
item = self.GetFirstSelected()
self.parent.UpdateModelVariables()
event.Skip()
def OnRemoveAll(self, event):
"""Remove all variable(s) from the model"""
dlg = wx.MessageBox(
parent=self,
message=_("Do you want to delete all variables from " "the model?"),
caption=_("Delete variables"),
style=wx.YES_NO | wx.CENTRE,
)
if dlg != wx.YES:
return
self.DeleteAllItems()
self.itemDataMap = dict()
self.parent.UpdateModelVariables()
def OnEndEdit(self, event):
"""Finish editing of item"""
itemIndex = event.GetIndex()
columnIndex = event.GetColumn()
if columnIndex == 0: # TODO
event.Veto()
self.itemDataMap[itemIndex][columnIndex] = event.GetText()
self.parent.UpdateModelVariables()
def OnReload(self, event):
"""Reload list of variables"""
self.Populate(self.parent.parent.GetModel().GetVariables())
def OnRightUp(self, event):
"""Mouse right button up"""
if not hasattr(self, "popupID1"):
self.popupID1 = NewId()
self.popupID2 = NewId()
self.popupID3 = NewId()
self.Bind(wx.EVT_MENU, self.OnRemove, id=self.popupID1)
self.Bind(wx.EVT_MENU, self.OnRemoveAll, id=self.popupID2)
self.Bind(wx.EVT_MENU, self.OnReload, id=self.popupID3)
# generate popup-menu
menu = Menu()
menu.Append(self.popupID1, _("Delete selected"))
menu.Append(self.popupID2, _("Delete all"))
if self.GetFirstSelected() == -1:
menu.Enable(self.popupID1, False)
menu.Enable(self.popupID2, False)
menu.AppendSeparator()
menu.Append(self.popupID3, _("Reload"))
self.PopupMenu(menu)
menu.Destroy()
class ItemListCtrl(ModelListCtrl):
def __init__(self, parent, columns, frame, disablePopup=False, **kwargs):
"""List of model actions"""
self.disablePopup = disablePopup
ModelListCtrl.__init__(self, parent, columns, frame, **kwargs)
self.itemIdMap = list()
self.SetColumnWidth(0, 100)
self.SetColumnWidth(1, 75)
if len(self.columns) >= 3:
self.SetColumnWidth(2, 100)
def GetData(self):
"""Get list data"""
return self.itemDataMap
def Populate(self, data):
"""Populate the list"""
self.itemDataMap = dict()
self.itemIdMap = list()
if self.shape:
items = self.frame.GetModel().GetItems(objType=ModelAction)
if isinstance(self.shape, ModelCondition):
if self.GetLabel() == "ElseBlockList":
shapeItems = map(
lambda x: x.GetId(), self.shape.GetItems(items)["else"]
)
else:
shapeItems = map(
lambda x: x.GetId(), self.shape.GetItems(items)["if"]
)
else:
shapeItems = map(lambda x: x.GetId(), self.shape.GetItems(items))
else:
shapeItems = list()
i = 0
if len(self.columns) == 2: # ItemCheckList
checked = list()
for action in data:
if isinstance(action, ModelData) or action == self.shape:
continue
self.itemIdMap.append(action.GetId())
if len(self.columns) == 2:
self.itemDataMap[i] = [action.GetLabel(), action.GetLog()]
aId = action.GetBlockId()
if action.GetId() in shapeItems:
checked.append(aId)
else:
checked.append(None)
else:
bId = action.GetBlockId()
if not bId:
bId = _("No")
else:
bId = _("Yes")
options = action.GetParameterizedParams()
params = []
for f in options["flags"]:
params.append("-{0}".format(f["name"]))
for p in options["params"]:
params.append(p["name"])
self.itemDataMap[i] = [
action.GetLabel(),
bId,
",".join(params),
action.GetLog(),
]
i += 1
self.itemCount = len(self.itemDataMap.keys())
self.DeleteAllItems()
i = 0
if len(self.columns) == 2:
for name, desc in self.itemDataMap.values():
index = self.InsertItem(i, str(i))
self.SetItem(index, 0, name)
self.SetItem(index, 1, desc)
self.SetItemData(index, i)
if checked[i]:
self.CheckItem(index, True)
i += 1
else:
for name, inloop, param, desc in self.itemDataMap.values():
index = self.InsertItem(i, str(i))
self.SetItem(index, 0, name)
self.SetItem(index, 1, inloop)
self.SetItem(index, 2, param)
self.SetItem(index, 3, desc)
self.SetItemData(index, i)
i += 1
def OnRemove(self, event):
"""Remove selected action(s) from the model"""
model = self.frame.GetModel()
canvas = self.frame.GetCanvas()
item = self.GetFirstSelected()
while item != -1:
self.DeleteItem(item)
del self.itemDataMap[item]
action = model.GetItem(item + 1) # action indices starts at 1
if not action:
item = self.GetFirstSelected()
continue
canvas.RemoveShapes([action])
self.frame.ModelChanged()
item = self.GetFirstSelected()
canvas.Refresh()
event.Skip()
def OnEndEdit(self, event):
"""Finish editing of item"""
itemIndex = event.GetIndex()
columnIndex = event.GetColumn()
self.itemDataMap[itemIndex][columnIndex] = event.GetText()
action = self.frame.GetModel().GetItem(itemIndex + 1)
if not action:
event.Veto()
return
action.SetLabel(label=event.GetText())
self.frame.ModelChanged()
def OnReload(self, event=None):
"""Reload list of actions"""
self.Populate(self.frame.GetModel().GetItems(objType=ModelAction))
def OnRightUp(self, event):
"""Mouse right button up"""
if self.disablePopup:
return
if not hasattr(self, "popupId"):
self.popupID = dict()
self.popupID["remove"] = NewId()
self.popupID["reload"] = NewId()
self.Bind(wx.EVT_MENU, self.OnRemove, id=self.popupID["remove"])
self.Bind(wx.EVT_MENU, self.OnReload, id=self.popupID["reload"])
# generate popup-menu
menu = Menu()
menu.Append(self.popupID["remove"], _("Delete selected"))
if self.GetFirstSelected() == -1:
menu.Enable(self.popupID["remove"], False)
menu.AppendSeparator()
menu.Append(self.popupID["reload"], _("Reload"))
self.PopupMenu(menu)
menu.Destroy()
def MoveItems(self, items, up):
"""Move items in the list
:param items: list of items to move
:param up: True to move up otherwise down
"""
if len(items) < 1:
return
if items[0] == 0 and up:
del items[0]
if len(items) < 1:
return
if items[-1] == len(self.itemDataMap.keys()) - 1 and not up:
del items[-1]
if len(items) < 1:
return
model = self.frame.GetModel()
modelActions = model.GetItems(objType=ModelAction)
idxList = dict()
itemsToSelect = list()
for i in items:
if up:
idx = i - 1
else:
idx = i + 1
itemsToSelect.append(idx)
idxList[model.GetItemIndex(modelActions[i])] = model.GetItemIndex(
modelActions[idx]
)
# reorganize model items
model.ReorderItems(idxList)
model.Normalize()
self.Populate(model.GetItems(objType=ModelAction))
# re-selected originally selected item
for item in itemsToSelect:
self.SetItemState(
item,
wx.LIST_STATE_SELECTED,
wx.LIST_STATE_SELECTED | wx.LIST_STATE_FOCUSED,
)
class ItemCheckListCtrl(ItemListCtrl, CheckListCtrlMixin):
def __init__(self, parent, shape, columns, frame, **kwargs):
self.parent = parent
self.frame = frame
ItemListCtrl.__init__(self, parent, columns, frame, disablePopup=True, **kwargs)
CheckListCtrlMixin.__init__(self)
self.SetColumnWidth(0, 100)
self.shape = shape
def OnBeginEdit(self, event):
"""Disable editing"""
event.Veto()
def OnCheckItem(self, index, flag):
"""Item checked/unchecked"""
name = self.GetLabel()
if name == "IfBlockList" and self.window:
self.window.OnCheckItemIf(index, flag)
elif name == "ElseBlockList" and self.window:
self.window.OnCheckItemElse(index, flag)
def GetItems(self):
"""Get list of selected actions"""
ids = {"checked": list(), "unchecked": list()}
# action ids start at 1
for i in range(self.GetItemCount()):
if self.IsItemChecked(i):
ids["checked"].append(self.itemIdMap[i])
else:
ids["unchecked"].append(self.itemIdMap[i])
return ids
def CheckItemById(self, aId, flag):
"""Check/uncheck given item by id"""
for i in range(self.GetItemCount()):
iId = int(self.GetItem(i, 0).GetText())
if iId == aId:
self.CheckItem(i, flag)
break
|