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
13b52f73
Commit
13b52f73
authored
2 years ago
by
Olle Hansson
Committed by
Oscar Gustafsson
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Portconnection
parent
4766320f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!193
Portconnection
Pipeline
#89839
passed
2 years ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
b_asic/GUI/main_window.py
+5
-2
5 additions, 2 deletions
b_asic/GUI/main_window.py
b_asic/GUI/port_button.py
+44
-3
44 additions, 3 deletions
b_asic/GUI/port_button.py
with
49 additions
and
5 deletions
b_asic/GUI/main_window.py
+
5
−
2
View file @
13b52f73
...
...
@@ -11,7 +11,7 @@ import sys
from
pprint
import
pprint
from
qtpy.QtCore
import
QFileInfo
,
QSize
,
Qt
from
qtpy.QtGui
import
QIcon
,
QKeySequence
,
QPainter
from
qtpy.QtGui
import
QCursor
,
QIcon
,
QKeySequence
,
QPainter
from
qtpy.QtWidgets
import
(
QAction
,
QApplication
,
...
...
@@ -67,7 +67,8 @@ class MainWindow(QMainWindow):
self
.
operationItemSceneList
=
[]
self
.
signalList
=
[]
self
.
mouse_pressed
=
False
self
.
mouse_draggin
=
False
self
.
mouse_dragging
=
False
self
.
starting_port
=
[]
self
.
pressed_operations
=
[]
self
.
portDict
=
{}
self
.
signalPortDict
=
{}
...
...
@@ -134,6 +135,8 @@ class MainWindow(QMainWindow):
"
section on the toolbar.
"
)
self
.
cursor
=
QCursor
()
def
init_ui
(
self
):
self
.
create_toolbar_view
()
self
.
create_graphics_view
()
...
...
This diff is collapsed.
Click to expand it.
b_asic/GUI/port_button.py
+
44
−
3
View file @
13b52f73
"""
B-ASIC port button module.
"""
from
qtpy.QtCore
import
Qt
,
Signal
from
qtpy.QtCore
import
QMimeData
,
Qt
,
Signal
from
qtpy.QtGui
import
QDrag
from
qtpy.QtWidgets
import
QMenu
,
QPushButton
...
...
@@ -30,9 +31,11 @@ class PortButton(QPushButton):
self
.
clicked
=
0
self
.
_m_drag
=
False
self
.
_m_press
=
False
self
.
setAcceptDrops
(
True
)
self
.
setCursor
(
Qt
.
ArrowCursor
)
self
.
setStyleSheet
(
"
background-color: white
"
)
self
.
connectionRequested
.
connect
(
self
.
_window
.
_connect_
button
)
self
.
connectionRequested
.
connect
(
self
.
_window
.
_connect_
callback
)
def
contextMenuEvent
(
self
,
event
):
menu
=
QMenu
()
...
...
@@ -41,13 +44,51 @@ class PortButton(QPushButton):
def
mousePressEvent
(
self
,
event
):
if
event
.
button
()
==
Qt
.
MouseButton
.
LeftButton
:
self
.
_window
.
mouse_pressed
=
True
self
.
select_port
(
event
.
modifiers
())
super
().
mousePressEvent
(
event
)
def
mouseReleaseEvent
(
self
,
event
):
if
(
event
.
button
()
==
Qt
.
MouseButton
.
LeftButton
and
self
.
_window
.
mouse_pressed
):
self
.
_window
.
mouse_pressed
=
False
if
self
.
_window
.
mouse_dragging
:
self
.
_window
.
mouse_dragging
=
False
super
().
mouseReleaseEvent
(
event
)
def
mouseMoveEvent
(
self
,
event
):
if
self
.
_window
.
mouse_pressed
:
self
.
_window
.
mouse_draggin
=
True
self
.
_window
.
starting_port
=
self
data
=
QMimeData
()
drag
=
QDrag
(
self
)
drag
.
setMimeData
(
data
)
drag
.
exec
()
super
().
mouseMoveEvent
(
event
)
def
dragEnterEvent
(
self
,
event
):
event
.
acceptProposedAction
()
self
.
update
()
super
().
dragEnterEvent
(
event
)
def
dragLeaveEvent
(
self
,
event
):
self
.
update
()
super
().
dragLeaveEvent
(
event
)
def
dragMoveEvent
(
self
,
event
):
event
.
acceptProposedAction
()
super
().
dragMoveEvent
(
event
)
def
dropEvent
(
self
,
event
):
event
.
acceptProposedAction
()
if
self
!=
self
.
_window
.
starting_port
:
self
.
select_port
(
Qt
.
KeyboardModifier
.
ControlModifier
)
self
.
_window
.
_connect_callback
()
self
.
update
()
super
().
dropEvent
(
event
)
def
_toggle_port
(
self
,
pressed
=
False
):
self
.
pressed
=
not
pressed
self
.
setStyleSheet
(
...
...
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