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
!55
Resolve "Show PC in GUI"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Show PC in GUI"
90-show-pc-in-gui
into
develop
Overview
0
Commits
3
Pipelines
2
Changes
3
Merged
Adam Jakobsson
requested to merge
90-show-pc-in-gui
into
develop
4 years ago
Overview
0
Commits
3
Pipelines
2
Changes
3
Expand
Closes
#90 (closed)
Edited
4 years ago
by
Adam Jakobsson
0
0
Merge request reports
Compare
develop
version 1
2527a40e
4 years ago
develop (base)
and
latest version
latest version
73b45df2
3 commits,
4 years ago
version 1
2527a40e
2 commits,
4 years ago
3 files
+
63
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
b_asic/GUI/gui_interface.py
+
4
−
0
Options
@@ -241,6 +241,8 @@ class Ui_main_window(object):
self
.
actionRedo
.
setObjectName
(
"
actionRedo
"
)
self
.
actionSimulateSFG
=
QtWidgets
.
QAction
(
main_window
)
self
.
actionSimulateSFG
.
setObjectName
(
"
actionSimulateSFG
"
)
self
.
actionShowPC
=
QtWidgets
.
QAction
(
main_window
)
self
.
actionShowPC
.
setObjectName
(
"
actionShowPC
"
)
self
.
aboutBASIC
=
QtWidgets
.
QAction
(
main_window
)
self
.
aboutBASIC
.
setObjectName
(
"
aboutBASIC
"
)
self
.
faqBASIC
=
QtWidgets
.
QAction
(
main_window
)
@@ -256,6 +258,7 @@ class Ui_main_window(object):
self
.
edit_menu
.
addAction
(
self
.
actionUndo
)
self
.
edit_menu
.
addAction
(
self
.
actionRedo
)
self
.
view_menu
.
addAction
(
self
.
actionToolbar
)
self
.
run_menu
.
addAction
(
self
.
actionShowPC
)
self
.
run_menu
.
addAction
(
self
.
actionSimulateSFG
)
self
.
help_menu
.
addAction
(
self
.
aboutBASIC
)
self
.
help_menu
.
addAction
(
self
.
faqBASIC
)
@@ -288,6 +291,7 @@ class Ui_main_window(object):
self
.
edit_menu
.
setTitle
(
_translate
(
"
main_window
"
,
"
Edit
"
))
self
.
view_menu
.
setTitle
(
_translate
(
"
main_window
"
,
"
View
"
))
self
.
run_menu
.
setTitle
(
_translate
(
"
main_window
"
,
"
Run
"
))
self
.
actionShowPC
.
setText
(
_translate
(
"
main_window
"
,
"
Show PC
"
))
self
.
help_menu
.
setTitle
(
_translate
(
"
main_window
"
,
"
Help
"
))
self
.
actionSimulateSFG
.
setText
(
_translate
(
"
main_window
"
,
"
Simulate SFG
"
))
self
.
aboutBASIC
.
setText
(
_translate
(
"
main_window
"
,
"
About B-ASIC
"
))
Loading