Skip to content
Snippets Groups Projects
Commit 3028d03d authored by Oscar Gustafsson's avatar Oscar Gustafsson :bicyclist:
Browse files

Cleaning up code

parent 912318a4
No related branches found
No related tags found
1 merge request!128Cleaning up code
Pipeline #88447 passed
...@@ -49,8 +49,8 @@ class AxesItem(QGraphicsItemGroup): ...@@ -49,8 +49,8 @@ class AxesItem(QGraphicsItemGroup):
def __init__( def __init__(
self, self,
width: float, width: int,
height: float, height: int,
width_indent: float = 0.2, width_indent: float = 0.2,
height_indent: float = 0.2, height_indent: float = 0.2,
width_padding: float = 0.6, width_padding: float = 0.6,
......
...@@ -19,13 +19,12 @@ from qtpy.QtWidgets import ( ...@@ -19,13 +19,12 @@ from qtpy.QtWidgets import (
QGraphicsSceneWheelEvent, QGraphicsSceneWheelEvent,
) )
from b_asic.schedule import Schedule
from b_asic.scheduler_gui.axes_item import AxesItem from b_asic.scheduler_gui.axes_item import AxesItem
from b_asic.scheduler_gui.operation_item import OperationItem from b_asic.scheduler_gui.operation_item import OperationItem
from b_asic.scheduler_gui.timeline_item import TimelineItem from b_asic.scheduler_gui.timeline_item import TimelineItem
# sys.settrace
# class SchedulerEvent(QGraphicsItemGroup, QObject): # PySide2
class SchedulerEvent: # PyQt5 class SchedulerEvent: # PyQt5
"""Event filter and handlers for SchedulerItem""" """Event filter and handlers for SchedulerItem"""
...@@ -39,30 +38,26 @@ class SchedulerEvent: # PyQt5 ...@@ -39,30 +38,26 @@ class SchedulerEvent: # PyQt5
_current_pos: QPointF _current_pos: QPointF
_delta_time: int _delta_time: int
_signals: Signals # PyQt5 _signals: Signals # PyQt5
# component_selected = Signal(str) # PySide2 _schedule: Schedule
# schedule_time_changed = Signal() # PySide2
def __init__(self, parent: Optional[QGraphicsItem] = None): # PyQt5
super().__init__(parent=parent)
self._signals = self.Signals()
# @overload
def is_component_valid_pos(self, item: OperationItem, pos: float) -> bool: def is_component_valid_pos(self, item: OperationItem, pos: float) -> bool:
... raise NotImplementedError
# @overload
def is_valid_delta_time(self, delta_time: int) -> bool: def is_valid_delta_time(self, delta_time: int) -> bool:
... raise NotImplementedError
# @overload
def set_schedule_time(self, delta_time: int) -> None: def set_schedule_time(self, delta_time: int) -> None:
... raise NotImplementedError
# def __init__(self, parent: Optional[QGraphicsItem] = None): # PySide2 def set_item_active(self, item: OperationItem) -> None:
# QObject.__init__(self) raise NotImplementedError
# QGraphicsItemGroup.__init__(self, parent)
def __init__(self, parent: Optional[QGraphicsItem] = None): # PyQt5 def set_item_inactive(self, item: OperationItem) -> None:
# QGraphicsItemGroup.__init__(self, parent) raise NotImplementedError
# QObject.__init__(self)
super().__init__(parent=parent)
self._signals = self.Signals()
################# #################
#### Filters #### #### Filters ####
...@@ -78,9 +73,11 @@ class SchedulerEvent: # PyQt5 ...@@ -78,9 +73,11 @@ class SchedulerEvent: # PyQt5
... ...
def installSceneEventFilters(self, filterItems) -> None: def installSceneEventFilters(self, filterItems) -> None:
"""Installs an event filter for 'filterItems' on 'self', causing all events """
for 'filterItems' to first pass through 'self's sceneEventFilter() Installs an event filter for *filterItems* on 'self', causing all events
function. 'filterItems' can be one object or a list of objects.""" for *filterItems* to first pass through 'self's ``sceneEventFilter()``
method. *filterItems* can be one object or a list of objects.
"""
item: OperationItem item: OperationItem
for item in filterItems: for item in filterItems:
item.installSceneEventFilter(self) item.installSceneEventFilter(self)
...@@ -103,9 +100,11 @@ class SchedulerEvent: # PyQt5 ...@@ -103,9 +100,11 @@ class SchedulerEvent: # PyQt5
item.removeSceneEventFilter(self) item.removeSceneEventFilter(self)
def sceneEventFilter(self, item: QGraphicsItem, event: QEvent) -> bool: def sceneEventFilter(self, item: QGraphicsItem, event: QEvent) -> bool:
"""Returns true if the event was filtered (i.e. stopped), otherwise false. """
If false is returned, the event is forwarded to the appropriate child in Returns True if the event was filtered (i.e. stopped), otherwise False.
the event chain.""" If False is returned, the event is forwarded to the appropriate child in
the event chain.
"""
handler = None handler = None
if isinstance(item, OperationItem): # one component if isinstance(item, OperationItem): # one component
...@@ -187,13 +186,13 @@ class SchedulerEvent: # PyQt5 ...@@ -187,13 +186,13 @@ class SchedulerEvent: # PyQt5
... ...
def comp_mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None: def comp_mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None:
"""Set the position of the graphical element in the graphic scene, """
Set the position of the graphical element in the graphic scene,
translate coordinates of the cursor within the graphic element in the translate coordinates of the cursor within the graphic element in the
coordinate system of the parent object. The object can only move coordinate system of the parent object. The object can only move
horizontally in x-axis scale steps.""" horizontally in x-axis scale steps.
"""
# Qt.DragMoveCursor
# button = event.button()
def update_pos(item, dx): def update_pos(item, dx):
pos = item.x() + dx pos = item.x() + dx
if self.is_component_valid_pos(item, pos): if self.is_component_valid_pos(item, pos):
...@@ -209,30 +208,30 @@ class SchedulerEvent: # PyQt5 ...@@ -209,30 +208,30 @@ class SchedulerEvent: # PyQt5
update_pos(item, -1) update_pos(item, -1)
def comp_mousePressEvent(self, event: QGraphicsSceneMouseEvent) -> None: def comp_mousePressEvent(self, event: QGraphicsSceneMouseEvent) -> None:
"""Changes the cursor to ClosedHandCursor when grabbing an object and """
Changes the cursor to ClosedHandCursor when grabbing an object and
stores the current position in item's parent coordinates. 'event' will stores the current position in item's parent coordinates. 'event' will
by default be accepted, and this item is then the mouse grabber. This by default be accepted, and this item is then the mouse grabber. This
allows the item to receive future move, release and double-click events. allows the item to receive future move, release and double-click events.
""" """
item: OperationItem = self.scene().mouseGrabberItem() item: OperationItem = self.scene().mouseGrabberItem()
self._signals.component_selected.emit(item.op_id) self._signals.component_selected.emit(item.op_id)
# self.component_selected.emit(item.op_id)
self._current_pos = item.mapToParent(event.pos()) self._current_pos = item.mapToParent(event.pos())
self.set_item_active(item) self.set_item_active(item)
event.accept() event.accept()
def comp_mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent) -> None: def comp_mouseReleaseEvent(self, event: QGraphicsSceneMouseEvent) -> None:
"""Changes the cursor to OpenHandCursor when releasing an object.""" """Change the cursor to OpenHandCursor when releasing an object."""
item: OperationItem = self.scene().mouseGrabberItem() item: OperationItem = self.scene().mouseGrabberItem()
self.set_item_inactive(item) self.set_item_inactive(item)
self.set_new_starttime(item) self.set_new_starttime(item)
pos = item.x() pos = item.x()
redraw = False redraw = False
if pos < 0: if pos < 0:
pos += self.schedule.schedule_time pos += self._schedule.schedule_time
redraw = True redraw = True
if pos > self.schedule.schedule_time: if pos > self._schedule.schedule_time:
pos = pos % self.schedule.schedule_time pos = pos % self._schedule.schedule_time
redraw = True redraw = True
if redraw: if redraw:
item.setX(pos) item.setX(pos)
...@@ -250,17 +249,16 @@ class SchedulerEvent: # PyQt5 ...@@ -250,17 +249,16 @@ class SchedulerEvent: # PyQt5
#### Event Handlers: GraphicsLineTem #### #### Event Handlers: GraphicsLineTem ####
############################################### ###############################################
def timeline_mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None: def timeline_mouseMoveEvent(self, event: QGraphicsSceneMouseEvent) -> None:
"""Set the position of the graphical element in the graphic scene, """
Set the position of the graphical element in the graphic scene,
translate coordinates of the cursor within the graphic element in the translate coordinates of the cursor within the graphic element in the
coordinate system of the parent object. The object can only move coordinate system of the parent object. The object can only move
horizontally in x-axis scale steps.""" horizontally in x-axis scale steps.
"""
# Qt.DragMoveCursor
# button = event.button()
def update_pos(item, dx): def update_pos(item, dx):
pos = item.x() + dx pos = item.x() + dx
if self.is_valid_delta_time(self._delta_time + dx): if self.is_valid_delta_time(self._delta_time + dx):
# self.prepareGeometryChange()
item.setX(pos) item.setX(pos)
self._current_pos.setX(self._current_pos.x() + dx) self._current_pos.setX(self._current_pos.x() + dx)
self._delta_time += dx self._delta_time += dx
...@@ -276,7 +274,7 @@ class SchedulerEvent: # PyQt5 ...@@ -276,7 +274,7 @@ class SchedulerEvent: # PyQt5
def timeline_mousePressEvent( def timeline_mousePressEvent(
self, event: QGraphicsSceneMouseEvent self, event: QGraphicsSceneMouseEvent
) -> None: ) -> None:
"""Stores the current position in item's parent coordinates. 'event' will """Store the current position in item's parent coordinates. 'event' will
by default be accepted, and this item is then the mouse grabber. This by default be accepted, and this item is then the mouse grabber. This
allows the item to receive future move, release and double-click events. allows the item to receive future move, release and double-click events.
""" """
......
...@@ -24,13 +24,14 @@ from b_asic.scheduler_gui.signal_item import SignalItem ...@@ -24,13 +24,14 @@ from b_asic.scheduler_gui.signal_item import SignalItem
class SchedulerItem(SchedulerEvent, QGraphicsItemGroup): # PySide2 / PyQt5 class SchedulerItem(SchedulerEvent, QGraphicsItemGroup): # PySide2 / PyQt5
# class SchedulerItem(QGraphicsItemGroup, SchedulerEvent): # PyQt5 """
"""A class to represent a graph in a QGraphicsScene. This class is a A class to represent a graph in a QGraphicsScene. This class is a
subclass of QGraphicsItemGroup and contains the objects, axes from subclass of QGraphicsItemGroup and contains the objects, axes from
AxesItem, as well as components from OperationItem. It AxesItem, as well as components from OperationItem. It
also inherits from SchedulerEvent, which acts as a filter for events also inherits from SchedulerEvent, which acts as a filter for events
to OperationItem objects.""" to OperationItem objects.
_schedule: Schedule """
_axes: Optional[AxesItem] _axes: Optional[AxesItem]
_components: List[OperationItem] _components: List[OperationItem]
_components_height: float _components_height: float
...@@ -184,7 +185,9 @@ class SchedulerItem(SchedulerEvent, QGraphicsItemGroup): # PySide2 / PyQt5 ...@@ -184,7 +185,9 @@ class SchedulerItem(SchedulerEvent, QGraphicsItemGroup): # PySide2 / PyQt5
# build axes # build axes
schedule_time = self.schedule.schedule_time schedule_time = self.schedule.schedule_time
self._axes = AxesItem(schedule_time, self._components_height - spacing) self._axes = AxesItem(
schedule_time, int(self._components_height - spacing)
)
self._axes.setPos(0, self._components_height + spacing * 2) self._axes.setPos(0, self._components_height + spacing * 2)
self._event_items += self._axes.event_items self._event_items += self._axes.event_items
# self._axes.width = schedule_time # self._axes.width = schedule_time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment