Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Commits
e60aea65
Commit
e60aea65
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Enable moving operations in y-direction
parent
f00c98f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!147
Enable moving operations in y-direction
Pipeline
#88700
passed
2 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/scheduler_gui/scheduler_event.py
+22
-12
22 additions, 12 deletions
b_asic/scheduler_gui/scheduler_event.py
with
22 additions
and
12 deletions
b_asic/scheduler_gui/scheduler_event.py
+
22
−
12
View file @
e60aea65
...
...
@@ -20,6 +20,7 @@ from qtpy.QtWidgets import (
)
from
b_asic.schedule
import
Schedule
from
b_asic.scheduler_gui._preferences
import
OPERATION_GAP
,
OPERATION_HEIGHT
from
b_asic.scheduler_gui.axes_item
import
AxesItem
from
b_asic.scheduler_gui.operation_item
import
OperationItem
from
b_asic.scheduler_gui.timeline_item
import
TimelineItem
...
...
@@ -193,19 +194,28 @@ class SchedulerEvent: # PyQt5
horizontally in x-axis scale steps.
"""
def
update_pos
(
item
,
dx
):
pos
=
item
.
x
()
+
dx
if
self
.
is_component_valid_pos
(
item
,
pos
):
item
.
setX
(
pos
)
def
update_pos
(
item
,
dx
,
dy
):
posx
=
item
.
x
()
+
dx
posy
=
item
.
y
()
+
dy
*
(
OPERATION_GAP
+
OPERATION_HEIGHT
)
if
self
.
is_component_valid_pos
(
item
,
posx
):
item
.
setX
(
posx
)
item
.
setY
(
posy
)
self
.
_current_pos
.
setX
(
self
.
_current_pos
.
x
()
+
dx
)
self
.
_current_pos
.
setY
(
self
.
_current_pos
.
y
()
+
dy
)
self
.
_redraw_lines
(
item
)
self
.
_schedule
.
_y_locations
[
item
.
operation
.
graph_id
]
+=
dy
item
:
OperationItem
=
self
.
scene
().
mouseGrabberItem
()
delta_x
=
(
item
.
mapToParent
(
event
.
pos
())
-
self
.
_current_pos
).
x
()
delta_y
=
(
item
.
mapToParent
(
event
.
pos
())
-
self
.
_current_pos
).
y
()
delta_y_steps
=
round
(
delta_y
/
(
OPERATION_GAP
+
OPERATION_HEIGHT
))
if
delta_x
>
0.505
:
update_pos
(
item
,
1
)
update_pos
(
item
,
1
,
delta_y_steps
)
elif
delta_x
<
-
0.505
:
update_pos
(
item
,
-
1
)
update_pos
(
item
,
-
1
,
delta_y_steps
)
elif
delta_y_steps
!=
0
:
update_pos
(
item
,
0
,
delta_y_steps
)
def
comp_mousePressEvent
(
self
,
event
:
QGraphicsSceneMouseEvent
)
->
None
:
"""
...
...
@@ -225,16 +235,16 @@ class SchedulerEvent: # PyQt5
item
:
OperationItem
=
self
.
scene
().
mouseGrabberItem
()
self
.
set_item_inactive
(
item
)
self
.
set_new_starttime
(
item
)
pos
=
item
.
x
()
pos
x
=
item
.
x
()
redraw
=
False
if
pos
<
0
:
pos
+=
self
.
_schedule
.
schedule_time
if
pos
x
<
0
:
pos
x
+=
self
.
_schedule
.
schedule_time
redraw
=
True
if
pos
>
self
.
_schedule
.
schedule_time
:
pos
=
pos
%
self
.
_schedule
.
schedule_time
if
pos
x
>
self
.
_schedule
.
schedule_time
:
pos
x
=
pos
x
%
self
.
_schedule
.
schedule_time
redraw
=
True
if
redraw
:
item
.
setX
(
pos
)
item
.
setX
(
pos
x
)
self
.
_redraw_lines
(
item
)
def
comp_mouseDoubleClickEvent
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment