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
a5af5e02
Commit
a5af5e02
authored
2 years ago
by
Petter Källström
Committed by
Oscar Gustafsson
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
About window
parent
dc630d82
No related branches found
No related tags found
1 merge request
!182
About window
Pipeline
#89621
passed
2 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/GUI/about_window.py
+78
-21
78 additions, 21 deletions
b_asic/GUI/about_window.py
with
78 additions
and
21 deletions
b_asic/GUI/about_window.py
+
78
−
21
View file @
a5af5e02
import
sys
# ONLY FOR DEBUG
from
qtpy.QtCore
import
Qt
from
qtpy.QtCore
import
Qt
from
qtpy.QtGui
import
QCursor
,
QPixmap
from
qtpy.QtWidgets
import
QApplication
# ONLY FOR DEBUG
from
qtpy.QtWidgets
import
(
from
qtpy.QtWidgets
import
(
QDialog
,
QDialog
,
QFrame
,
QFrame
,
QHBoxLayout
,
QHBoxLayout
,
QLabel
,
QLabel
,
QPushButton
,
QScrollArea
,
QScrollArea
,
QToolTip
,
QVBoxLayout
,
QVBoxLayout
,
)
)
from
b_asic._version
import
__version__
QUESTIONS
=
{
QUESTIONS
=
{
"
Adding operations
"
:
(
"
Adding operations
"
:
(
"
Select an operation under
'
Special operations
'
or
'
Core operations
'
"
"
Select an operation under
'
Special operations
'
or
'
Core operations
'
"
...
@@ -119,35 +127,70 @@ class AboutWindow(QDialog):
...
@@ -119,35 +127,70 @@ class AboutWindow(QDialog):
self
.
add_information_to_layout
()
self
.
add_information_to_layout
()
def
hoverText
(
self
,
url
):
# self.setWindowTitle(url) # When removing mouse, the title gets "B-ASIC Scheduler". Where does THAT come from?
if
url
:
QToolTip
.
showText
(
QCursor
.
pos
(),
url
)
else
:
QToolTip
.
hideText
()
def
add_information_to_layout
(
self
):
def
add_information_to_layout
(
self
):
information_layout
=
QVBoxLayout
()
# |1 Title |2 |
# | License | Logo | <- layout12
# | Version | |
# ----------------------
# |3 links |4 OK | <- layout34
label1
=
QLabel
(
"
# B-ASIC / Better ASIC Toolbox
\n
*Construct, simulate and analyze
"
"
components of an ASIC.*
\n\n
B-ASIC is an open source tool using
"
"
the B-ASIC library to construct, simulate and analyze
"
"
ASICs.
\n\n
B-ASIC is developed under the MIT-license and any
"
"
extension to the program should follow that same license.
\n\n
To
"
"
read more about how the GUI works please refer to the FAQ under
"
f
"
'
Help
'
.
\n\n
*Version:
{
__version__
}
*
"
)
label1
.
setTextFormat
(
Qt
.
MarkdownText
)
label1
.
setWordWrap
(
True
)
label1
.
setOpenExternalLinks
(
True
)
label1
.
linkHovered
.
connect
(
self
.
hoverText
)
self
.
logo2
=
QLabel
(
self
)
self
.
logo2
.
setPixmap
(
QPixmap
(
"
../../small_logo.png
"
).
scaledToWidth
(
100
)
)
self
.
logo2
.
setFixedWidth
(
100
)
title_label
=
QLabel
(
"
B-ASIC / Better ASIC Toolbox
"
)
label3
=
QLabel
(
subtitle_label
=
QLabel
(
"""
See: <a href=
"
https://da.gitlab-pages.liu.se/B-ASIC/
"
>documentation</a>,
"""
"
Construct, simulate and analyze components of an ASIC.
"
"""
<a href=
"
https://gitlab.liu.se/da/B-ASIC/
"
>git</a>,
"""
"""
<a href=
"
https://www.liu.se/?l=en
"
>liu.se</a>,
"""
"""
<a href=
"
https://liu.se/organisation/liu/isy/da
"
>Computer Engineering</a>.
"""
)
)
label3
.
setOpenExternalLinks
(
True
)
label3
.
linkHovered
.
connect
(
self
.
hoverText
)
frame
=
QFrame
()
button4
=
QPushButton
()
frame
.
setFrameShape
(
QFrame
.
HLine
)
button4
.
setText
(
"
OK
"
)
frame
.
setFrameShadow
(
QFrame
.
Sunken
)
button4
.
setFixedWidth
(
80
)
self
.
dialog_layout
.
addWidget
(
fram
e
)
button4
.
clicked
.
connect
(
self
.
clos
e
)
about_label
=
QLabel
(
layout12
=
QHBoxLayout
()
"
B-ASIC is an open source tool using the B-ASIC library to
"
layout34
=
QHBoxLayout
()
"
construct, simulate and analyze ASICs.
\n
"
"
B-ASIC is developed under the MIT-license and any extension to
"
"
the program should follow that same license.
\n
"
"
To read more about how the GUI works please refer to the FAQ
"
"
under
'
Help
'
.
"
)
information_
layout
.
addWidget
(
title_
label
)
layout
12
.
addWidget
(
label
1
)
information_
layout
.
addWidget
(
s
ubtitle_label
)
layout
12
.
addWidget
(
s
elf
.
logo2
)
self
.
dialog_layout
.
addLayout
(
information_layout
)
layout34
.
addWidget
(
label3
)
self
.
dialog_layout
.
addWidget
(
frame
)
layout34
.
addWidget
(
button4
)
hline
=
QFrame
()
hline
.
setFrameShape
(
QFrame
.
HLine
)
hline
.
setFrameShadow
(
QFrame
.
Sunken
)
self
.
dialog_layout
.
addWidget
(
about_label
)
self
.
dialog_layout
.
addLayout
(
layout12
)
self
.
dialog_layout
.
addWidget
(
hline
)
self
.
dialog_layout
.
addLayout
(
layout34
)
class
FaqWindow
(
QDialog
):
class
FaqWindow
(
QDialog
):
...
@@ -183,3 +226,17 @@ class FaqWindow(QDialog):
...
@@ -183,3 +226,17 @@ class FaqWindow(QDialog):
question_layout
.
addLayout
(
answer_layout
)
question_layout
.
addLayout
(
answer_layout
)
self
.
dialog_layout
.
addLayout
(
question_layout
)
self
.
dialog_layout
.
addLayout
(
question_layout
)
# ONLY FOR DEBUG below
def
start_about_window
():
app
=
QApplication
(
sys
.
argv
)
window
=
AboutWindow
(
QDialog
)
window
.
show
()
sys
.
exit
(
app
.
exec_
())
if
__name__
==
"
__main__
"
:
start_about_window
()
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