Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nexus
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
nexus
Commits
4e3a0e69
Commit
4e3a0e69
authored
1 year ago
by
Destiny Kuehn
Committed by
Maeva Pourpoint
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
make sensor type a label and add value to be copied to text in popup
parent
7c3a30dd
No related branches found
No related tags found
1 merge request
!27
Fix to issue 34: Allow user to copy datalogger type, gain and sensor type to other stations
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
nexus/StationSelectDialog.py
+9
-6
9 additions, 6 deletions
nexus/StationSelectDialog.py
nexus/StationSelectDialog.ui
+4
-13
4 additions, 13 deletions
nexus/StationSelectDialog.ui
nexus/nexus.py
+18
-11
18 additions, 11 deletions
nexus/nexus.py
with
31 additions
and
30 deletions
nexus/StationSelectDialog.py
+
9
−
6
View file @
4e3a0e69
...
...
@@ -28,11 +28,12 @@ def load_ui(filename):
return
ret
class
StationSelectDialog
(
*
load_ui
(
'
StationSelectDialog.ui
'
)):
def
__init__
(
self
,
stations
,
copy
,
parent
=
None
):
def
__init__
(
self
,
stations
,
action
,
values
,
parent
=
None
):
super
().
__init__
(
parent
)
self
.
stations
=
stations
self
.
stat_map
=
{}
self
.
copy
=
copy
self
.
action
=
action
self
.
values
=
values
self
.
setupUi
()
def
accept
(
self
):
...
...
@@ -59,12 +60,14 @@ class StationSelectDialog(*load_ui('StationSelectDialog.ui')):
self
.
setWindowTitle
(
'
Select Stations
'
)
self
.
tableWidget
.
setSelectionMode
(
QAbstractItemView
.
ExtendedSelection
)
if
self
.
copy
==
'
type & gain
'
:
self
.
typeCB
.
setChecked
(
True
)
if
self
.
action
==
'
type & gain
'
:
self
.
gainCB
.
setChecked
(
True
)
self
.
sensorCB
.
setParent
(
None
)
self
.
gainCB
.
setText
(
f
"
Copy Datalogger Gain:
{
self
.
values
[
0
]
}
"
)
self
.
typeCB
.
setChecked
(
True
)
self
.
typeCB
.
setText
(
f
"
Copy Datalogger Type:
{
self
.
values
[
1
]
}
"
)
self
.
sensor_label
.
setParent
(
None
)
else
:
self
.
sensor
CB
.
setChecked
(
True
)
self
.
sensor
_label
.
setText
(
f
"
Copy Sensor Type:
{
self
.
values
[
0
]
}
"
)
self
.
typeCB
.
setParent
(
None
)
self
.
gainCB
.
setParent
(
None
)
...
...
This diff is collapsed.
Click to expand it.
nexus/StationSelectDialog.ui
+
4
−
13
View file @
4e3a0e69
...
...
@@ -22,11 +22,8 @@
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"text"
>
<string>
Copy Datalogger Type
</string>
</property>
<property
name=
"toolTip"
>
<string>
Copy datalogger type
from main window
to selected stations in table
</string>
<string>
Copy
stated
datalogger type to selected stations in table
</string>
</property>
</widget>
</item>
...
...
@@ -38,27 +35,21 @@
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"text"
>
<string>
Copy Datalogger Gain
</string>
</property>
<property
name=
"toolTip"
>
<string>
Copy datalogger gain
from main window
to selected stations in table
</string>
<string>
Copy
stated
datalogger gain to selected stations in table
</string>
</property>
</widget>
</item>
<item>
<widget
class=
"Q
CheckBox
"
name=
"sensor
CB
"
>
<widget
class=
"Q
Label
"
name=
"sensor
_label
"
>
<property
name=
"sizePolicy"
>
<sizepolicy
hsizetype=
"Expanding"
vsizetype=
"Preferred"
>
<horstretch>
0
</horstretch>
<verstretch>
0
</verstretch>
</sizepolicy>
</property>
<property
name=
"text"
>
<string>
Copy Sensor Type
</string>
</property>
<property
name=
"toolTip"
>
<string>
Copy sensor type
from main window
to selected stations in table
</string>
<string>
Copy
stated
sensor type to selected stations in table
</string>
</property>
</widget>
</item>
...
...
This diff is collapsed.
Click to expand it.
nexus/nexus.py
+
18
−
11
View file @
4e3a0e69
...
...
@@ -1289,26 +1289,34 @@ class StationWidget(WidgetBase, *load_ui("StationWidget.ui")):
def
copy_dltype_and_gain
(
self
):
stations
=
self
.
get_stations
()
self
.
copy_to_stations
(
stations
,
'
type & gain
'
)
self
.
copy_to_stations
(
stations
,
'
type & gain
'
,
[
self
.
uiDLGain
.
text
(),
self
.
uiDLType
.
currentText
()])
def
copy_sensor
(
self
):
stations
=
self
.
get_stations
()
self
.
copy_to_stations
(
stations
,
'
sensor
'
)
self
.
copy_to_stations
(
stations
,
'
sensor
'
,
[
self
.
uiSensorType
.
currentText
()])
def
copy_to_stations
(
self
,
stations
,
caller
):
dialog
=
StationSelectDialog
(
stations
,
caller
,
parent
=
self
)
def
copy_to_stations
(
self
,
stations
,
action
,
values
):
dialog
=
StationSelectDialog
(
stations
,
action
,
values
,
parent
=
self
)
if
dialog
.
exec_
():
checked_boxes
=
{
"
DLtype
"
:
dialog
.
typeCB
.
isChecked
(),
"
DLgain
"
:
dialog
.
gainCB
.
isChecked
(),
"
Stype
"
:
dialog
.
sensorCB
.
isChecked
()}
self
.
update_inventory
(
dialog
.
selected_stations
,
checked_boxes
)
if
dialog
.
sensor_label
.
parent
()
is
None
:
copy_this
=
{
"
DLtype
"
:
dialog
.
typeCB
.
isChecked
(),
"
DLgain
"
:
dialog
.
gainCB
.
isChecked
()}
else
:
copy_this
=
{
"
Stype
"
:
True
}
self
.
update_stations
(
dialog
.
selected_stations
,
copy_this
)
self
.
stat_node_to_obj_map
=
{}
def
update_
inventory
(
self
,
stations
,
c
hecked_boxe
s
):
def
update_
stations
(
self
,
stations
,
c
opy_thi
s
):
for
stat
in
stations
:
for
node
,
obj
in
self
.
stat_node_to_obj_map
.
items
():
if
stat
==
obj
:
for
key
,
value
in
c
hecked_boxe
s
.
items
():
for
key
,
value
in
c
opy_thi
s
.
items
():
if
value
:
if
key
==
"
DLtype
"
:
node
.
set_dl_type
(
self
.
uiDLType
.
currentIndex
())
...
...
@@ -1317,7 +1325,6 @@ class StationWidget(WidgetBase, *load_ui("StationWidget.ui")):
else
:
node
.
set_sensor_type
(
self
.
uiSensorType
.
currentIndex
())
def
get_stations
(
self
):
"""
Get all stations from inventory to
...
...
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