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
13f5b30d
Commit
13f5b30d
authored
2 years ago
by
Petter Källström
Committed by
Oscar Gustafsson
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
changing to private functions, and adding docstring
parent
d4b6da4d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!209
changing to private functions, and adding docstring
Pipeline
#90028
passed
2 years ago
Stage: test
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/gui_utils/about_window.py
+10
-7
10 additions, 7 deletions
b_asic/gui_utils/about_window.py
with
10 additions
and
7 deletions
b_asic/gui_utils/about_window.py
+
10
−
7
View file @
13f5b30d
...
...
@@ -18,6 +18,8 @@ from b_asic._version import __version__
class
AboutWindow
(
QDialog
):
"""
About window.
"""
def
__init__
(
self
,
window
):
super
().
__init__
()
self
.
_window
=
window
...
...
@@ -27,16 +29,16 @@ class AboutWindow(QDialog):
self
.
dialog_layout
=
QVBoxLayout
()
self
.
setLayout
(
self
.
dialog_layout
)
self
.
add_information_to_layout
()
self
.
_
add_information_to_layout
()
def
hover
T
ext
(
self
,
url
):
def
_
hover
_t
ext
(
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
):
# |1 Title |2 |
# | License | Logo | <- layout12
# | Version | |
...
...
@@ -60,7 +62,7 @@ class AboutWindow(QDialog):
label1
.
setTextFormat
(
Qt
.
MarkdownText
)
label1
.
setWordWrap
(
True
)
label1
.
setOpenExternalLinks
(
True
)
label1
.
linkHovered
.
connect
(
self
.
hover
T
ext
)
label1
.
linkHovered
.
connect
(
self
.
_
hover
_t
ext
)
self
.
logo2
=
QLabel
(
self
)
self
.
logo2
.
setPixmap
(
...
...
@@ -77,7 +79,7 @@ class AboutWindow(QDialog):
"""
<a href=
"
https://gitlab.liu.se/da/B-ASIC/-/issues
"
>report issues and suggestions</a>.
"""
)
label3
.
setOpenExternalLinks
(
True
)
label3
.
linkHovered
.
connect
(
self
.
hover
T
ext
)
label3
.
linkHovered
.
connect
(
self
.
_
hover
_t
ext
)
button4
=
QPushButton
()
button4
.
setText
(
"
OK
"
)
...
...
@@ -105,7 +107,8 @@ class AboutWindow(QDialog):
# ONLY FOR DEBUG below
def
start_about_window
():
def
show_about_window
():
"""
Simply show the about window.
"""
app
=
QApplication
(
sys
.
argv
)
window
=
AboutWindow
(
QDialog
)
window
.
show
()
...
...
@@ -113,4 +116,4 @@ def start_about_window():
if
__name__
==
"
__main__
"
:
s
tart
_about_window
()
s
how
_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