Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
SOHViewer
Commits
dfa911d6
Commit
dfa911d6
authored
2 months ago
by
Kien Le
Browse files
Options
Downloads
Patches
Plain Diff
Show when checkbox is changed
parent
90e2c066
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conda.recipe/meta.yaml
+1
-1
1 addition, 1 deletion
conda.recipe/meta.yaml
sohstationviewer/view/db_config/channel_dialog.py
+54
-8
54 additions, 8 deletions
sohstationviewer/view/db_config/channel_dialog.py
with
55 additions
and
9 deletions
conda.recipe/meta.yaml
+
1
−
1
View file @
dfa911d6
...
@@ -20,7 +20,7 @@ requirements:
...
@@ -20,7 +20,7 @@ requirements:
-
python >=3.9
-
python >=3.9
-
numpy >=1.23.0,<2.0
-
numpy >=1.23.0,<2.0
-
obspy >=1.3.0
-
obspy >=1.3.0
-
PySide6>=6.
5.2
-
PySide6>=6.
7
-
matplotlib>=3.6.2
-
matplotlib>=3.6.2
test
:
test
:
...
...
This diff is collapsed.
Click to expand it.
sohstationviewer/view/db_config/channel_dialog.py
+
54
−
8
View file @
dfa911d6
...
@@ -5,34 +5,48 @@ GUI to add/edit/remove channels
...
@@ -5,34 +5,48 @@ GUI to add/edit/remove channels
from
typing
import
List
,
Union
from
typing
import
List
,
Union
from
PIL.ImageOps
import
contain
from
PIL.ImageOps
import
contain
from
PySide6.QtCore
import
Qt
from
PySide6.QtCore
import
Qt
,
Signal
,
Slot
from
PySide6.QtWidgets
import
(
from
PySide6.QtWidgets
import
(
QMessageBox
,
QCheckBox
,
QWidget
,
QBoxLayout
,
QMessageBox
,
QCheckBox
,
QWidget
,
QBoxLayout
,
QHBoxLayout
,
QHBoxLayout
,
)
)
from
sohstationviewer.view.db_config.db_config_dialog
import
UiDBInfoDialog
from
sohstationviewer.view.db_config.db_config_dialog
import
(
UiDBInfoDialog
,
set_widget_color
,
)
from
sohstationviewer.database.process_db
import
execute_db
from
sohstationviewer.database.process_db
import
execute_db
class
CenteredCheckbox
(
QWidget
):
class
CenteredCheckBox
(
QWidget
):
checkStateChanged
=
Signal
(
Qt
.
CheckState
)
"""
"""
A checkbox that is centered horizontally and vertically.
A checkbox that is centered horizontally and vertically.
Implementation-wise, this puts a QCheckBox into a layout and centers it in
Implementation-wise, this widget contains a layout, which contains a
there. Method calls are then passed on to the internal QCheckBox for
centered QCheckBox. This is simply the standard method to center a widget
processing.
without having to use stylesheets. The main bulk of the custom code is to
pass to the internal QCheckBox for processing.
This wrapper is intended to provide a more convenient way to work with a
centered checkbox. Without it, the internal QCheckBox has to be retrieved
every time we want to use it. This can become annoying to do, especially
since there is no convenient method provided to retrieve the checkbox.
"""
"""
def
__init__
(
self
,
parent
=
None
):
def
__init__
(
self
,
parent
=
None
):
super
(
CenteredCheck
b
ox
,
self
).
__init__
(
parent
)
super
(
CenteredCheck
B
ox
,
self
).
__init__
(
parent
)
layout
=
QHBoxLayout
()
layout
=
QHBoxLayout
()
self
.
setLayout
(
layout
)
self
.
setLayout
(
layout
)
self
.
checkbox
=
QCheckBox
()
self
.
checkbox
=
QCheckBox
()
layout
.
addWidget
(
self
.
checkbox
)
layout
.
addWidget
(
self
.
checkbox
)
self
.
setAutoFillBackground
(
True
)
layout
.
setContentsMargins
(
0
,
0
,
0
,
0
)
layout
.
setContentsMargins
(
0
,
0
,
0
,
0
)
layout
.
setAlignment
(
Qt
.
AlignmentFlag
.
AlignCenter
)
layout
.
setAlignment
(
Qt
.
AlignmentFlag
.
AlignCenter
)
self
.
checkbox
.
checkStateChanged
.
connect
(
self
.
checkStateChanged
)
def
isChecked
(
self
)
->
bool
:
def
isChecked
(
self
)
->
bool
:
return
self
.
checkbox
.
isChecked
()
return
self
.
checkbox
.
isChecked
()
...
@@ -77,11 +91,43 @@ class ChannelDialog(UiDBInfoDialog):
...
@@ -77,11 +91,43 @@ class ChannelDialog(UiDBInfoDialog):
"""
"""
checked
=
(
self
.
database_rows
[
row_idx
][
col_idx
-
1
]
checked
=
(
self
.
database_rows
[
row_idx
][
col_idx
-
1
]
if
row_idx
<
len
(
self
.
database_rows
)
else
False
)
if
row_idx
<
len
(
self
.
database_rows
)
else
False
)
checkbox
=
CenteredCheck
b
ox
(
self
.
data_table_widget
)
checkbox
=
CenteredCheck
B
ox
(
self
.
data_table_widget
)
checkbox
.
setChecked
(
checked
)
checkbox
.
setChecked
(
checked
)
set_widget_color
(
checkbox
)
checkbox
.
checkStateChanged
.
connect
(
lambda
check_state
:
self
.
on_checkbox_toggle
(
bool
(
check_state
.
value
),
checkbox
)
)
self
.
data_table_widget
.
setCellWidget
(
row_idx
,
col_idx
,
checkbox
)
self
.
data_table_widget
.
setCellWidget
(
row_idx
,
col_idx
,
checkbox
)
return
checkbox
return
checkbox
@Slot
()
def
on_checkbox_toggle
(
self
,
checked
:
bool
,
checkbox
:
CenteredCheckBox
):
"""
Called when a checkbox is toggled. Store whether the toggle reverts the
checkbox to its original state and style the checkbox accordingly.
:param checked: whether the checkbox is checked after the toggle
:param checkbox: the widget whose content was changed.
"""
# Because this method is used in a lambda, passing the column and row
# indices directly would cause their value to be bound at the lambda's
# definition time. This causes problems when the checkbox is moved to a
# different row.
checkbox_x
,
checkbox_y
=
checkbox
.
pos
().
toTuple
()
col_idx
=
self
.
data_table_widget
.
columnAt
(
checkbox_x
)
row_idx
=
self
.
data_table_widget
.
rowAt
(
checkbox_y
)
if
row_idx
==
-
1
:
return
changed
=
False
if
row_idx
<
len
(
self
.
database_rows
):
if
checked
!=
self
.
database_rows
[
row_idx
][
col_idx
-
1
]:
changed
=
True
set_widget_color
(
checkbox
,
changed
=
changed
)
else
:
changed
=
True
self
.
changes_array
[
row_idx
][
col_idx
-
1
]
=
changed
def
update_data_table_widget_items
(
self
):
def
update_data_table_widget_items
(
self
):
"""
"""
Create list of parameters to used in widget for selecting parameters
Create list of parameters to used in widget for selecting parameters
...
...
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