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
f00c98f9
Commit
f00c98f9
authored
2 years ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Add ctrl + wheel zoom to scheduler GUI
parent
e1a6bfb4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!146
Add ctrl + wheel zoom to scheduler GUI
Pipeline
#88662
passed
2 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
b_asic/scheduler_gui/main_window.py
+9
-0
9 additions, 0 deletions
b_asic/scheduler_gui/main_window.py
with
9 additions
and
0 deletions
b_asic/scheduler_gui/main_window.py
+
9
−
0
View file @
f00c98f9
...
...
@@ -97,6 +97,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
_debug_rects
:
QGraphicsItemGroup
_splitter_pos
:
int
_splitter_min
:
int
_zoom
:
float
def
__init__
(
self
):
"""
Initialize Scheduler-gui.
"""
...
...
@@ -105,6 +106,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
self
.
_graph
=
None
self
.
_scale
=
75.0
self
.
_debug_rects
=
None
self
.
_zoom
=
1.0
self
.
setupUi
(
self
)
self
.
_read_settings
()
...
...
@@ -186,6 +188,13 @@ class MainWindow(QMainWindow, Ui_MainWindow):
self
.
_graph
.
_redraw_from_start
()
# self._printButtonPressed('callback_pushButton()')
def
wheelEvent
(
self
,
event
):
if
event
.
modifiers
()
==
Qt
.
KeyboardModifier
.
ControlModifier
:
old_zoom
=
self
.
_zoom
self
.
_zoom
+=
event
.
angleDelta
().
y
()
/
2500
self
.
view
.
scale
(
self
.
_zoom
,
self
.
_zoom
)
self
.
_zoom
=
old_zoom
@Slot
()
def
_load_schedule_from_pyfile
(
self
)
->
None
:
"""
SLOT() for SIGNAL(menu_load_from_file.triggered)
...
...
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