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
Merge requests
!39
Resolve "Implement a workspace in the GUI"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Implement a workspace in the GUI"
65-implement-a-workspace-in-the-gui
into
develop
Overview
0
Commits
34
Pipelines
1
Changes
4
Merged
Adam Jakobsson
requested to merge
65-implement-a-workspace-in-the-gui
into
develop
5 years ago
Overview
0
Commits
34
Pipelines
1
Changes
4
Expand
Closes
#65 (closed)
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
9f2cb4df
34 commits,
5 years ago
4 files
+
79
−
44
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
b_asic/GUI/arrow.py
+
4
−
2
Options
@@ -28,5 +28,7 @@ class Arrow(QGraphicsLineItem):
@@ -28,5 +28,7 @@ class Arrow(QGraphicsLineItem):
def
moveLine
(
self
):
def
moveLine
(
self
):
self
.
setPen
(
QPen
(
Qt
.
black
,
3
))
self
.
setPen
(
QPen
(
Qt
.
black
,
3
))
self
.
setLine
(
QLineF
(
self
.
source
.
x
()
+
50
,
self
.
source
.
y
()
+
25
,
\
self
.
setLine
(
QLineF
(
self
.
source
.
operation
.
x
()
+
self
.
source
.
x
()
+
14
,
\
self
.
destination
.
x
(),
self
.
destination
.
y
()
+
25
))
self
.
source
.
operation
.
y
()
+
self
.
source
.
y
()
+
7.5
,
\
\ No newline at end of file
self
.
destination
.
operation
.
x
()
+
self
.
destination
.
x
(),
\
self
.
destination
.
operation
.
y
()
+
self
.
destination
.
y
()
+
7.5
))
Loading