Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
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
FSL
fslpy
Commits
efd7d9a5
Commit
efd7d9a5
authored
9 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
TimeSeries/Histogram control panels put plot-specific settings into
their own group
parent
94f5f898
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
fsl/data/strings.py
+5
-2
5 additions, 2 deletions
fsl/data/strings.py
fsl/fslview/controls/histogramcontrolpanel.py
+5
-1
5 additions, 1 deletion
fsl/fslview/controls/histogramcontrolpanel.py
fsl/fslview/controls/timeseriescontrolpanel.py
+6
-1
6 additions, 1 deletion
fsl/fslview/controls/timeseriescontrolpanel.py
with
16 additions
and
4 deletions
fsl/data/strings.py
+
5
−
2
View file @
efd7d9a5
...
...
@@ -213,8 +213,11 @@ labels = TypeDict({
'
PlotPanel.xlabel
'
:
'
X
'
,
'
PlotPanel.ylabel
'
:
'
Y
'
,
'
TimeSeriesControlPanel.currentSettings
'
:
'
Settings for current
'
'
voxel time course
'
,
'
HistogramControlPanel.histSettings
'
:
'
Histogram plot settings
'
,
'
TimeSeriesControlPanel.tsSettings
'
:
'
Time series plot settings
'
,
'
TimeSeriesControlPanel.currentSettings
'
:
'
Settings for current
'
'
voxel time course
'
,
'
TimeSeriesControlPanel.currentFEATSettings
'
:
'
FEAT settings for
'
'
selected overlay ({})
'
,
...
...
This diff is collapsed.
Click to expand it.
fsl/fslview/controls/histogramcontrolpanel.py
+
5
−
1
View file @
efd7d9a5
...
...
@@ -38,10 +38,14 @@ class HistogramControlPanel(fslpanel.FSLViewPanel):
'
grid
'
,
'
autoScale
'
]
self
.
__widgets
.
AddGroup
(
'
histSettings
'
,
strings
.
labels
[
self
,
'
histSettings
'
])
for
prop
in
histProps
:
self
.
__widgets
.
AddWidget
(
props
.
makeWidget
(
self
.
__widgets
,
hsPanel
,
prop
),
displayName
=
strings
.
properties
[
hsPanel
,
prop
])
displayName
=
strings
.
properties
[
hsPanel
,
prop
],
groupName
=
'
histSettings
'
)
self
.
__widgets
.
AddGroup
(
'
plotSettings
'
,
...
...
This diff is collapsed.
Click to expand it.
fsl/fslview/controls/timeseriescontrolpanel.py
+
6
−
1
View file @
efd7d9a5
...
...
@@ -38,10 +38,15 @@ class TimeSeriesControlPanel(fslpanel.FSLViewPanel):
'
grid
'
,
'
autoScale
'
]
self
.
__widgets
.
AddGroup
(
'
tsSettings
'
,
strings
.
labels
[
self
,
'
tsSettings
'
])
for
prop
in
tsProps
:
self
.
__widgets
.
AddWidget
(
props
.
makeWidget
(
self
.
__widgets
,
tsPanel
,
prop
),
displayName
=
strings
.
properties
[
tsPanel
,
prop
])
displayName
=
strings
.
properties
[
tsPanel
,
prop
],
groupName
=
'
tsSettings
'
)
self
.
__widgets
.
AddGroup
(
'
plotSettings
'
,
...
...
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