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
!50
Changed from PyQt5 to PySide2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Changed from PyQt5 to PySide2
89-change-from-pyqt5-in-gui-for-mit-compliance
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
9
Merged
Jacob Wahlman
requested to merge
89-change-from-pyqt5-in-gui-for-mit-compliance
into
develop
4 years ago
Overview
0
Commits
1
Pipelines
1
Changes
9
Expand
Changed GUI library to PySide2 from PyQt5 for MIT compliance. Closes
#89 (closed)
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
da50656e
1 commit,
4 years ago
9 files
+
25
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
b_asic/GUI/arrow.py
+
3
−
3
Options
from
Py
Qt5
.QtWidgets
import
QApplication
,
QWidget
,
QMainWindow
,
QLabel
,
QAction
,
\
from
Py
Side2
.QtWidgets
import
QApplication
,
QWidget
,
QMainWindow
,
QLabel
,
QAction
,
\
QStatusBar
,
QMenuBar
,
QLineEdit
,
QPushButton
,
QSlider
,
QScrollArea
,
QVBoxLayout
,
\
QHBoxLayout
,
QDockWidget
,
QToolBar
,
QMenu
,
QLayout
,
QSizePolicy
,
QListWidget
,
QListWidgetItem
,
\
QGraphicsLineItem
,
QGraphicsWidget
from
Py
Qt5
.QtCore
import
Qt
,
QSize
,
QLineF
,
QPoint
,
QRectF
from
Py
Qt5
.QtGui
import
QIcon
,
QFont
,
QPainter
,
QPen
from
Py
Side2
.QtCore
import
Qt
,
QSize
,
QLineF
,
QPoint
,
QRectF
from
Py
Side2
.QtGui
import
QIcon
,
QFont
,
QPainter
,
QPen
class
Arrow
(
QGraphicsLineItem
):
Loading