-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathschemeedit.py
1846 lines (1522 loc) · 59.9 KB
/
schemeedit.py
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
"""
====================
Scheme Editor Widget
====================
"""
import sys
import logging
import itertools
import unicodedata
import copy
import os.path
from operator import attrgetter
from urllib.parse import urlencode
from AnyQt.QtWidgets import (
QWidget,
QVBoxLayout,
QInputDialog,
QMenu,
QAction,
QActionGroup,
QUndoStack,
QUndoCommand,
QGraphicsItem,
QGraphicsObject,
QGraphicsTextItem,
)
from AnyQt.QtGui import (
QKeySequence,
QCursor,
QFont,
QPainter,
QPixmap,
QColor,
QIcon,
QWhatsThisClickedEvent,
QPalette,
)
from AnyQt.QtCore import Qt, QObject, QEvent, QSignalMapper, QRectF, QCoreApplication
from AnyQt.QtCore import pyqtProperty as Property, pyqtSignal as Signal
from ..registry.qt import whats_this_helper
from ..gui.quickhelp import QuickHelpTipEvent
from ..gui.utils import message_information, disabled
from ..scheme import scheme, signalmanager, SchemeNode, SchemeLink, BaseSchemeAnnotation
from ..scheme import widgetsscheme
from ..canvas.scene import CanvasScene
from ..canvas.view import CanvasView
from ..canvas import items
from . import interactions
from . import commands
from . import quickmenu
sys.path.append("/coreutils")
import OWWidgetBuilder
log = logging.getLogger(__name__)
# TODO: Should this be moved to CanvasScene?
class GraphicsSceneFocusEventListener(QGraphicsObject):
itemFocusedIn = Signal(object)
itemFocusedOut = Signal(object)
def __init__(self, parent=None):
QGraphicsObject.__init__(self, parent)
self.setFlag(QGraphicsItem.ItemHasNoContents)
def sceneEventFilter(self, obj, event):
if (
event.type() == QEvent.FocusIn
and obj.flags() & QGraphicsItem.ItemIsFocusable
):
obj.focusInEvent(event)
if obj.hasFocus():
self.itemFocusedIn.emit(obj)
return True
elif event.type() == QEvent.FocusOut:
obj.focusOutEvent(event)
if not obj.hasFocus():
self.itemFocusedOut.emit(obj)
return True
return QGraphicsObject.sceneEventFilter(self, obj, event)
def boundingRect(self):
return QRectF()
class SchemeEditWidget(QWidget):
"""
A widget for editing a :class:`~.scheme.Scheme` instance.
"""
#: Undo command has become available/unavailable.
undoAvailable = Signal(bool)
#: Redo command has become available/unavailable.
redoAvailable = Signal(bool)
#: Document modified state has changed.
modificationChanged = Signal(bool)
#: Undo command was added to the undo stack.
undoCommandAdded = Signal()
#: Item selection has changed.
selectionChanged = Signal()
#: Document title has changed.
titleChanged = Signal(str)
#: Document path has changed.
pathChanged = Signal(str)
# Quick Menu triggers
(NoTriggers, RightClicked, DoubleClicked, SpaceKey, AnyKey) = [0, 1, 2, 4, 8]
def __init__(self, parent=None, canvasMainWindow=None):
QWidget.__init__(self, parent)
self.canvas = canvasMainWindow
self.__modified = False
self.__registry = None
self.__scheme = None
self.__path = ""
self.__quickMenuTriggers = (
SchemeEditWidget.SpaceKey | SchemeEditWidget.DoubleClicked
)
self.__emptyClickButtons = 0
self.__channelNamesVisible = True
self.__nodeAnimationEnabled = True
self.__possibleSelectionHandler = None
self.__possibleMouseItemsMove = False
self.__itemsMoving = {}
self.__contextMenuTarget = None
self.__quickMenu = None
self.__quickTip = ""
self.__undoStack = QUndoStack(self)
self.__undoStack.cleanChanged[bool].connect(self.__onCleanChanged)
# scheme node properties when set to a clean state
self.__cleanProperties = []
self.__editFinishedMapper = QSignalMapper(self)
self.__editFinishedMapper.mapped[QObject].connect(self.__onEditingFinished)
self.__annotationGeomChanged = QSignalMapper(self)
self.__setupActions()
self.__setupUi()
self.__editMenu = QMenu(self.tr("&Edit"), self)
self.__editMenu.addAction(self.__undoAction)
self.__editMenu.addAction(self.__redoAction)
self.__editMenu.addSeparator()
self.__editMenu.addAction(self.__duplicateSelectedAction)
self.__editMenu.addAction(self.__selectAllAction)
self.__widgetMenu = QMenu(self.tr("&Widget"), self)
self.__widgetMenu.addAction(self.__openSelectedAction)
self.__widgetMenu.addSeparator()
self.__widgetMenu.addAction(self.__exportAction)
self.__widgetMenu.addSeparator()
self.__widgetMenu.addAction(self.__renameAction)
self.__widgetMenu.addAction(self.__removeSelectedAction)
self.__widgetMenu.addSeparator()
# self.__widgetMenu.addAction(self.__editToolBoxAction)
self.__widgetMenu.addAction(self.__newWidgetAction)
self.__widgetMenu.addAction(self.__editWidgetAction)
self.__widgetMenu.addSeparator()
self.__widgetMenu.addAction(self.__helpAction)
if log.isEnabledFor(logging.DEBUG):
self.__widgetMenu.addSeparator()
self.__widgetMenu.addAction(self.__showSettingsAction)
self.__linkMenu = QMenu(self.tr("Link"), self)
self.__linkMenu.addAction(self.__linkEnableAction)
self.__linkMenu.addSeparator()
self.__linkMenu.addAction(self.__linkRemoveAction)
self.__linkMenu.addAction(self.__linkResetAction)
def __setupActions(self):
self.__cleanUpAction = QAction(
self.tr("Clean Up"),
self,
objectName="cleanup-action",
toolTip=self.tr("Align widgets to a grid."),
triggered=self.alignToGrid,
)
self.__newTextAnnotationAction = QAction(
self.tr("Text"),
self,
objectName="new-text-action",
toolTip=self.tr("Add a text annotation to the workflow."),
checkable=True,
toggled=self.__toggleNewTextAnnotation,
)
# Create a font size menu for the new annotation action.
self.__fontMenu = QMenu("Font Size", self)
self.__fontActionGroup = group = QActionGroup(
self, exclusive=True, triggered=self.__onFontSizeTriggered
)
def font(size):
f = QFont(self.font())
f.setPixelSize(size)
return f
for size in [12, 14, 16, 18, 20, 22, 24]:
action = QAction("%ipx" % size, group, checkable=True, font=font(size))
self.__fontMenu.addAction(action)
group.actions()[2].setChecked(True)
self.__newTextAnnotationAction.setMenu(self.__fontMenu)
self.__newArrowAnnotationAction = QAction(
self.tr("Arrow"),
self,
objectName="new-arrow-action",
toolTip=self.tr("Add an arrow annotation to the workflow."),
checkable=True,
toggled=self.__toggleNewArrowAnnotation,
)
# Create a color menu for the arrow annotation action
self.__arrowColorMenu = QMenu("Arrow Color")
self.__arrowColorActionGroup = group = QActionGroup(
self, exclusive=True, triggered=self.__onArrowColorTriggered
)
def color_icon(color):
icon = QIcon()
for size in [16, 24, 32]:
pixmap = QPixmap(size, size)
pixmap.fill(QColor(0, 0, 0, 0))
p = QPainter(pixmap)
p.setRenderHint(QPainter.Antialiasing)
p.setBrush(color)
p.setPen(Qt.NoPen)
p.drawEllipse(1, 1, size - 2, size - 2)
p.end()
icon.addPixmap(pixmap)
return icon
for color in ["#000", "#C1272D", "#662D91", "#1F9CDF", "#39B54A"]:
icon = color_icon(QColor(color))
action = QAction(group, icon=icon, checkable=True, iconVisibleInMenu=True)
action.setData(color)
self.__arrowColorMenu.addAction(action)
group.actions()[1].setChecked(True)
self.__newArrowAnnotationAction.setMenu(self.__arrowColorMenu)
self.__undoAction = self.__undoStack.createUndoAction(self)
self.__undoAction.setShortcut(QKeySequence.Undo)
self.__undoAction.setObjectName("undo-action")
self.__redoAction = self.__undoStack.createRedoAction(self)
self.__redoAction.setShortcut(QKeySequence.Redo)
self.__redoAction.setObjectName("redo-action")
self.__selectAllAction = QAction(
self.tr("Select All"),
self,
objectName="select-all-action",
toolTip=self.tr("Select all items."),
triggered=self.selectAll,
shortcut=QKeySequence.SelectAll,
)
self.__openSelectedAction = QAction(
self.tr("Open"),
self,
objectName="open-action",
toolTip=self.tr("Open selected widget"),
triggered=self.openSelected,
enabled=False,
)
self.__removeSelectedAction = QAction(
self.tr("Remove"),
self,
objectName="remove-selected",
toolTip=self.tr("Remove selected items"),
triggered=self.removeSelected,
enabled=False,
)
self.__newWidgetAction = QAction(
self.tr("New widget"),
self,
objectName="new-widget",
toolTip=self.tr("Make a new widget"),
triggered=self.newWidget,
enabled=True,
)
self.__editWidgetAction = QAction(
self.tr("Edit widget"),
self,
objectName="edit-widget",
toolTip=self.tr("Edit the widget"),
triggered=self.editWidget,
enabled=True,
)
self.__exportAction = QAction(
self.tr("Export workflow"),
self,
objectName="export-widget",
toolTip=self.tr("Export the workflow to a script starting at selected widget"),
triggered=self.export,
enabled=False,
)
# self.__editToolBoxAction = \
# QAction(self.tr("Edit ToolBox"), self,
# objectName="edit-toolbox",
# toolTip=self.tr("Edit the ToolBox"),
# triggered=self.editToolBox,
# enabled=True)
self.__showSettingsAction = QAction(
self.tr("Show settings"),
self,
objectName="show-settings",
toolTip=self.tr("Show widget settings"),
triggered=self.showSettings,
enabled=False,
)
shortcuts = [
Qt.Key_Backspace,
Qt.Key_Delete,
Qt.ControlModifier + Qt.Key_Backspace,
]
self.__removeSelectedAction.setShortcuts(shortcuts)
self.__renameAction = QAction(
self.tr("Rename"),
self,
objectName="rename-action",
toolTip=self.tr("Rename selected widget"),
triggered=self.__onRenameAction,
shortcut=QKeySequence(Qt.Key_F2),
enabled=False,
)
self.__helpAction = QAction(
self.tr("Help"),
self,
objectName="help-action",
toolTip=self.tr("Show widget help"),
triggered=self.__onHelpAction,
shortcut=QKeySequence("F1"),
enabled=False,
)
self.__linkEnableAction = QAction(
self.tr("Enabled"),
self,
objectName="link-enable-action",
triggered=self.__toggleLinkEnabled,
checkable=True,
)
self.__linkRemoveAction = QAction(
self.tr("Remove"),
self,
objectName="link-remove-action",
triggered=self.__linkRemove,
toolTip=self.tr("Remove link."),
)
self.__linkResetAction = QAction(
self.tr("Reset Signals"),
self,
objectName="link-reset-action",
triggered=self.__linkReset,
)
self.__duplicateSelectedAction = QAction(
self.tr("Duplicate Selected"),
self,
objectName="duplicate-action",
enabled=False,
shortcut=QKeySequence(Qt.ControlModifier + Qt.Key_D),
triggered=self.__duplicateSelected,
)
self.addActions(
[
self.__newTextAnnotationAction,
self.__newArrowAnnotationAction,
self.__linkEnableAction,
self.__linkRemoveAction,
self.__linkResetAction,
self.__duplicateSelectedAction,
]
)
# Actions which should be disabled while a multistep
# interaction is in progress.
self.__disruptiveActions = [
self.__undoAction,
self.__redoAction,
self.__removeSelectedAction,
self.__selectAllAction,
self.__duplicateSelectedAction,
]
def __setupUi(self):
layout = QVBoxLayout()
layout.setContentsMargins(0, 0, 0, 0)
layout.setSpacing(0)
scene = CanvasScene(self)
scene.setItemIndexMethod(CanvasScene.NoIndex)
self.__setupScene(scene)
view = CanvasView(scene)
view.setFrameStyle(CanvasView.NoFrame)
view.setRenderHint(QPainter.Antialiasing)
self.__view = view
self.__scene = scene
layout.addWidget(view)
self.setLayout(layout)
def __setupScene(self, scene):
"""
Set up a :class:`CanvasScene` instance for use by the editor.
.. note:: If an existing scene is in use it must be teared down using
__teardownScene
"""
scene.set_channel_names_visible(self.__channelNamesVisible)
scene.set_node_animation_enabled(self.__nodeAnimationEnabled)
scene.setFont(self.font())
scene.setPalette(self.palette())
scene.installEventFilter(self)
scene.set_registry(self.__registry)
# Focus listener
self.__focusListener = GraphicsSceneFocusEventListener()
self.__focusListener.itemFocusedIn.connect(self.__onItemFocusedIn)
self.__focusListener.itemFocusedOut.connect(self.__onItemFocusedOut)
scene.addItem(self.__focusListener)
scene.selectionChanged.connect(self.__onSelectionChanged)
scene.node_item_activated.connect(self.__onNodeActivate)
scene.annotation_added.connect(self.__onAnnotationAdded)
scene.annotation_removed.connect(self.__onAnnotationRemoved)
self.__annotationGeomChanged = QSignalMapper(self)
def __teardownScene(self, scene):
"""
Tear down an instance of :class:`CanvasScene` that was used by the
editor.
"""
# Clear the current item selection in the scene so edit action
# states are updated accordingly.
scene.clearSelection()
# Clear focus from any item.
scene.setFocusItem(None)
# Clear the annotation mapper
self.__annotationGeomChanged.deleteLater()
self.__annotationGeomChanged = None
self.__focusListener.itemFocusedIn.disconnect(self.__onItemFocusedIn)
self.__focusListener.itemFocusedOut.disconnect(self.__onItemFocusedOut)
scene.selectionChanged.disconnect(self.__onSelectionChanged)
scene.removeEventFilter(self)
# Clear all items from the scene
scene.blockSignals(True)
scene.clear_scene()
def toolbarActions(self):
"""
Return a list of actions that can be inserted into a toolbar.
At the moment these are:
- 'Clean up' action (align to grid)
- 'New text annotation' action (with a size menu)
- 'New arrow annotation' action (with a color menu)
"""
return [
self.__cleanUpAction,
self.__newTextAnnotationAction,
self.__newArrowAnnotationAction,
]
def menuBarActions(self):
"""
Return a list of actions that can be inserted into a `QMenuBar`.
"""
return [self.__editMenu.menuAction(), self.__widgetMenu.menuAction()]
def isModified(self):
"""
Is the document is a modified state.
"""
return self.__modified or not self.__undoStack.isClean()
def setModified(self, modified):
"""
Set the document modified state.
"""
if self.__modified != modified:
self.__modified = modified
if not modified:
self.__cleanProperties = node_properties(self.__scheme)
self.__undoStack.setClean()
else:
self.__cleanProperties = []
modified = Property(bool, fget=isModified, fset=setModified)
def isModifiedStrict(self):
"""
Is the document modified.
Run a strict check against all node properties as they were
at the time when the last call to `setModified(True)` was made.
"""
propertiesChanged = self.__cleanProperties != node_properties(self.__scheme)
log.debug(
"Modified strict check (modified flag: %s, "
"undo stack clean: %s, properties: %s)",
self.__modified,
self.__undoStack.isClean(),
propertiesChanged,
)
return self.isModified() or propertiesChanged
def setQuickMenuTriggers(self, triggers):
"""
Set quick menu trigger flags.
Flags can be a bitwise `or` of:
- `SchemeEditWidget.NoTrigeres`
- `SchemeEditWidget.RightClicked`
- `SchemeEditWidget.DoubleClicked`
- `SchemeEditWidget.SpaceKey`
- `SchemeEditWidget.AnyKey`
"""
if self.__quickMenuTriggers != triggers:
self.__quickMenuTriggers = triggers
def quickMenuTriggers(self):
"""
Return quick menu trigger flags.
"""
return self.__quickMenuTriggers
def setChannelNamesVisible(self, visible):
"""
Set channel names visibility state. When enabled the links
in the view will have a source/sink channel names displayed over
them.
"""
if self.__channelNamesVisible != visible:
self.__channelNamesVisible = visible
self.__scene.set_channel_names_visible(visible)
def channelNamesVisible(self):
"""
Return the channel name visibility state.
"""
return self.__channelNamesVisible
def setNodeAnimationEnabled(self, enabled):
"""
Set the node item animation enabled state.
"""
if self.__nodeAnimationEnabled != enabled:
self.__nodeAnimationEnabled = enabled
self.__scene.set_node_animation_enabled(enabled)
def nodeAnimationEnabled(self):
"""
Return the node item animation enabled state.
"""
return self.__nodeAnimationEnabled
def undoStack(self):
"""
Return the undo stack.
"""
return self.__undoStack
def setPath(self, path):
"""
Set the path associated with the current scheme.
.. note:: Calling `setScheme` will invalidate the path (i.e. set it
to an empty string)
"""
if self.__path != path:
self.__path = str(path)
self.pathChanged.emit(self.__path)
def path(self):
"""
Return the path associated with the scheme
"""
return self.__path
def setScheme(self, scheme):
"""
Set the :class:`~.scheme.Scheme` instance to display/edit.
"""
if self.__scheme is not scheme:
if self.__scheme:
self.__scheme.title_changed.disconnect(self.titleChanged)
self.__scheme.removeEventFilter(self)
sm = self.__scheme.findChild(signalmanager.SignalManager)
if sm:
sm.stateChanged.disconnect(self.__signalManagerStateChanged)
self.__scheme = scheme
self.setPath("")
if self.__scheme:
self.__scheme.title_changed.connect(self.titleChanged)
self.titleChanged.emit(scheme.title)
self.__cleanProperties = node_properties(scheme)
sm = scheme.findChild(signalmanager.SignalManager)
if sm:
sm.stateChanged.connect(self.__signalManagerStateChanged)
else:
self.__cleanProperties = []
self.__teardownScene(self.__scene)
self.__scene.deleteLater()
self.__undoStack.clear()
self.__scene = CanvasScene(self)
self.__scene.setItemIndexMethod(CanvasScene.NoIndex)
self.__setupScene(self.__scene)
self.__scene.set_scheme(scheme)
self.__view.setScene(self.__scene)
if self.__scheme:
self.__scheme.installEventFilter(self)
nodes = self.__scheme.nodes
if nodes:
self.ensureVisible(nodes[0])
def ensureVisible(self, node):
"""
Scroll the contents of the viewport so that `node` is visible.
Parameters
----------
node: SchemeNode
"""
if self.__scheme is None:
return
item = self.__scene.item_for_node(node)
self.__view.ensureVisible(item)
def scheme(self):
"""
Return the :class:`~.scheme.Scheme` edited by the widget.
"""
return self.__scheme
def scene(self):
"""
Return the :class:`QGraphicsScene` instance used to display the
current scheme.
"""
return self.__scene
def view(self):
"""
Return the :class:`QGraphicsView` instance used to display the
current scene.
"""
return self.__view
def setRegistry(self, registry):
# Is this method necessary?
# It should be removed when the scene (items) is fixed
# so all information regarding the visual appearance is
# included in the node/widget description.
self.__registry = registry
if self.__scene:
self.__scene.set_registry(registry)
self.__quickMenu = None
def quickMenu(self):
"""
Return a :class:`~.quickmenu.QuickMenu` popup menu instance for
new node creation.
"""
if self.__quickMenu is None:
menu = quickmenu.QuickMenu(self)
if self.__registry is not None:
menu.setModel(self.__registry.model())
self.__quickMenu = menu
return self.__quickMenu
def setTitle(self, title):
"""
Set the scheme title.
"""
self.__undoStack.push(commands.SetAttrCommand(self.__scheme, "title", title))
def setDescription(self, description):
"""
Set the scheme description string.
"""
self.__undoStack.push(
commands.SetAttrCommand(self.__scheme, "description", description)
)
def addNode(self, node):
"""
Add a new node (:class:`.SchemeNode`) to the document.
"""
command = commands.AddNodeCommand(self.__scheme, node)
self.__undoStack.push(command)
def createNewNode(self, description, title=None, position=None):
"""
Create a new :class:`.SchemeNode` and add it to the document.
The new node is constructed using :func:`newNodeHelper` method.
"""
node = self.newNodeHelper(description, title, position)
self.addNode(node)
return node
def newNodeHelper(self, description, title=None, position=None):
"""
Return a new initialized :class:`.SchemeNode`. If `title`
and `position` are not supplied they are initialized to sensible
defaults.
"""
if title is None:
title = self.enumerateTitle(description.name)
if position is None:
position = self.nextPosition()
return SchemeNode(description, title=title, position=position)
def enumerateTitle(self, title):
"""
Enumerate a `title` string (i.e. add a number in parentheses) so
it is not equal to any node title in the current scheme.
"""
curr_titles = set([node.title for node in self.scheme().nodes])
template = title + " ({0})"
enumerated = map(template.format, itertools.count(1))
candidates = itertools.chain([title], enumerated)
seq = itertools.dropwhile(curr_titles.__contains__, candidates)
return next(seq)
def nextPosition(self):
"""
Return the next default node position as a (x, y) tuple. This is
a position left of the last added node.
"""
nodes = self.scheme().nodes
if nodes:
x, y = nodes[-1].position
position = (x + 150, y)
else:
position = (150, 150)
return position
def removeNode(self, node):
"""
Remove a `node` (:class:`.SchemeNode`) from the scheme
"""
command = commands.RemoveNodeCommand(self.__scheme, node)
self.__undoStack.push(command)
def renameNode(self, node, title):
"""
Rename a `node` (:class:`.SchemeNode`) to `title`.
"""
command = commands.RenameNodeCommand(self.__scheme, node, title)
self.__undoStack.push(command)
def addLink(self, link):
"""
Add a `link` (:class:`.SchemeLink`) to the scheme.
"""
command = commands.AddLinkCommand(self.__scheme, link)
self.__undoStack.push(command)
def removeLink(self, link):
"""
Remove a link (:class:`.SchemeLink`) from the scheme.
"""
command = commands.RemoveLinkCommand(self.__scheme, link)
self.__undoStack.push(command)
def addAnnotation(self, annotation):
"""
Add `annotation` (:class:`.BaseSchemeAnnotation`) to the scheme
"""
command = commands.AddAnnotationCommand(self.__scheme, annotation)
self.__undoStack.push(command)
def removeAnnotation(self, annotation):
"""
Remove `annotation` (:class:`.BaseSchemeAnnotation`) from the scheme.
"""
command = commands.RemoveAnnotationCommand(self.__scheme, annotation)
self.__undoStack.push(command)
def removeSelected(self):
"""
Remove all selected items in the scheme.
"""
selected = self.scene().selectedItems()
if not selected:
return
scene = self.scene()
self.__undoStack.beginMacro(self.tr("Remove"))
for item in selected:
if isinstance(item, items.NodeItem):
node = self.scene().node_for_item(item)
self.__undoStack.push(commands.RemoveNodeCommand(self.__scheme, node))
elif isinstance(item, items.annotationitem.Annotation):
if item.hasFocus() or item.isAncestorOf(scene.focusItem()):
# Clear input focus from the item to be removed.
scene.focusItem().clearFocus()
annot = self.scene().annotation_for_item(item)
self.__undoStack.push(
commands.RemoveAnnotationCommand(self.__scheme, annot)
)
self.__undoStack.endMacro()
def showSettings(self):
"""
Dump settings of selected items to the standard output.
"""
selected = self.scene().selectedItems()
for item in selected:
node = self.scene().node_for_item(item)
self.scheme().dump_settings(node)
def selectAll(self):
"""
Select all selectable items in the scheme.
"""
for item in self.__scene.items():
if item.flags() & QGraphicsItem.ItemIsSelectable:
item.setSelected(True)
def alignToGrid(self):
"""
Align nodes to a grid.
"""
# TODO: The the current layout implementation is BAD (fix is urgent).
tile_size = 150
tiles = {}
nodes = sorted(self.scheme().nodes, key=attrgetter("position"))
if nodes:
self.__undoStack.beginMacro(self.tr("Align To Grid"))
for node in nodes:
x, y = node.position
x = int(round(float(x) / tile_size) * tile_size)
y = int(round(float(y) / tile_size) * tile_size)
while (x, y) in tiles:
x += tile_size
self.__undoStack.push(
commands.MoveNodeCommand(self.scheme(), node, node.position, (x, y))
)
tiles[x, y] = node
self.__scene.item_for_node(node).setPos(x, y)
self.__undoStack.endMacro()
def focusNode(self):
"""
Return the current focused :class:`.SchemeNode` or ``None`` if no
node has focus.
"""
focus = self.__scene.focusItem()
node = None
if isinstance(focus, items.NodeItem):
try:
node = self.__scene.node_for_item(focus)
except KeyError:
# in case the node has been removed but the scene was not
# yet fully updated.
node = None
return node
def selectedNodes(self):
"""
Return all selected :class:`.SchemeNode` items.
"""
return list(map(self.scene().node_for_item, self.scene().selected_node_items()))
def selectedAnnotations(self):
"""
Return all selected :class:`.BaseSchemeAnnotation` items.
"""
return list(
map(
self.scene().annotation_for_item,
self.scene().selected_annotation_items(),
)
)
def openSelected(self):
"""
Open (show and raise) all widgets for the current selected nodes.
"""
selected = self.scene().selected_node_items()
for item in selected:
self.__onNodeActivate(item)
def export(self):
"""
Export workflow starting from selected node
"""
selected = self.scene().selected_node_items()
node=selected[0]
self.__onNodeExport(node)
self.canvas.reload_last()
def editNodeTitle(self, node):
"""
Edit (rename) the `node`'s title. Opens an input dialog.
"""
name, ok = QInputDialog.getText(
self,
self.tr("Rename"),
str(self.tr("Enter a new name for the '%s' widget")) % node.title,
text=node.title,
)
if ok:
self.__undoStack.push(
commands.RenameNodeCommand(self.__scheme, node, node.title, str(name))