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
28e6c3a5
Commit
28e6c3a5
authored
1 year ago
by
Oscar Gustafsson
Browse files
Options
Downloads
Patches
Plain Diff
Add color button (for later use in preferences)
parent
3d1d34ef
No related branches found
No related tags found
1 merge request
!324
Add color button (for later use in preferences)
Pipeline
#96042
passed
1 year ago
Stage: test
Stage: deploy
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
b_asic/gui_utils/color_button.py
+62
-0
62 additions, 0 deletions
b_asic/gui_utils/color_button.py
docs_sphinx/gui_utils.rst
+6
-0
6 additions, 0 deletions
docs_sphinx/gui_utils.rst
with
68 additions
and
0 deletions
b_asic/gui_utils/color_button.py
0 → 100644
+
62
−
0
View file @
28e6c3a5
"""
Qt button for use in preference dialogs, selecting color.
"""
from
qtpy.QtCore
import
Qt
,
Signal
from
qtpy.QtGui
import
QColor
from
qtpy.QtWidgets
import
QColorDialog
,
QPushButton
class
ColorButton
(
QPushButton
):
"""
Button to select color.
Parameters
----------
color : QColor
The initial color of the button.
*args, **kwargs
Additional arguments are passed to QPushButton.
"""
_color_changed
=
Signal
(
QColor
)
def
__init__
(
self
,
color
:
QColor
,
*
args
,
**
kwargs
):
super
().
__init__
(
*
args
,
**
kwargs
)
self
.
_color
=
None
self
.
_default
=
color
self
.
pressed
.
connect
(
self
.
pick_color
)
# Set the initial/default state.
self
.
set_color
(
self
.
_default
)
def
set_color
(
self
,
color
:
QColor
):
"""
Set new color.
"""
if
color
!=
self
.
_color
:
self
.
_color
=
color
self
.
_color_changed
.
emit
(
color
)
if
self
.
_color
:
self
.
setStyleSheet
(
"
background-color: %s;
"
%
self
.
_color
)
else
:
self
.
setStyleSheet
(
""
)
@property
def
color
(
self
):
"""
Current color.
"""
return
self
.
_color
def
pick_color
(
self
):
"""
Show color-picker dialog to select color.
"""
dlg
=
QColorDialog
(
self
)
if
self
.
_color
:
dlg
.
setCurrentColor
(
self
.
_color
)
if
dlg
.
exec_
():
self
.
set_color
(
dlg
.
currentColor
())
def
mousePressEvent
(
self
,
e
):
if
e
.
button
()
==
Qt
.
RightButton
:
self
.
set_color
(
self
.
_default
)
return
super
().
mousePressEvent
(
e
)
This diff is collapsed.
Click to expand it.
docs_sphinx/gui_utils.rst
+
6
−
0
View file @
28e6c3a5
...
...
@@ -20,6 +20,12 @@ gui\_utils.about\_window module
:members:
:undoc-members:
gui\_utils.color\_button module
-------------------------------
.. automodule:: b_asic.gui_utils.color_button
:members:
:undoc-members:
gui\_utils.plot\_window module
-------------------------------
...
...
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