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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Evan Edmond
fslpy
Commits
6ba8fbd3
Commit
6ba8fbd3
authored
10 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Startred documentation for properties_types.py
parent
a8e772e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fsl/props/properties.py
+18
-4
18 additions, 4 deletions
fsl/props/properties.py
fsl/props/properties_types.py
+56
-16
56 additions, 16 deletions
fsl/props/properties_types.py
with
74 additions
and
20 deletions
fsl/props/properties.py
+
18
−
4
View file @
6ba8fbd3
...
...
@@ -270,10 +270,13 @@ class PropertyBase(object):
def
validate
(
self
,
instance
,
attributes
,
value
):
"""
Called when an attempt is made to set the property value on the
given instance. The sole purpose of :meth:`validate` is to determine
whether a given value is valid or invalid; it should not do anything
else. In particular, it should not modify any other property values
on the instance, as bad things will probably happen.
given instance.
Called by :class:`PropertyValue` objects when their value changes. The
sole purpose of :meth:`validate` is to determine whether a given value
is valid or invalid; it should not do anything else. In particular, it
should not modify any other property values on the instance, as bad
things will probably happen.
If the given value is invalid, subclass implementations should raise a
:exc:`ValueError` containing a useful message as to why the value is
...
...
@@ -288,6 +291,17 @@ class PropertyBase(object):
Subclasses which override this method should therefore call this
superclass implementation in addition to performing their own
validation.
:param instance: The :class:`HasProperties` instance which
owns this :class:`PropertyBase` instance,
or ``None`` for an unbound property value.
:param dict attributes: Attributes of the :class:`PropertyValue`
object, which are used to store type-specific
constraints for :class:`PropertyBase`
subclasses.
:param value: The value to be validated.
"""
# a value is required
...
...
This diff is collapsed.
Click to expand it.
fsl/props/properties_types.py
+
56
−
16
View file @
6ba8fbd3
#!/usr/bin/env python
#
# properties_types.py - Definitions for different property types - see
# properties.py for more information.
# properties_types.py - Definitions for different property types.
#
# Author: Paul McCarthy <pauldmccarthy@gmail.com>
#
"""
Definitions for different property types.
This module provides a number of :class:`~fsl.props.properties.PropertyBase`
subclasses which define properties of different types.
"""
import
os.path
as
op
...
...
@@ -14,25 +18,37 @@ import matplotlib.cm as mplcm
import
properties
as
props
import
properties_value
as
propvals
class
Boolean
(
props
.
PropertyBase
):
"""
A property which encapsulates a boolean value.
"""
"""
A property which encapsulates a ``bool`` value.
"""
def
__init__
(
self
,
**
kwargs
):
"""
Create a :class:`Boolean` property.
If the ``default`` ``kwarg`` is not provided, a default value of
``False`` is used.
:param kwargs: All passed through to the
:class:`~fsl.props.properties.PropertyBase`
constructor.
"""
kwargs
[
'
default
'
]
=
kwargs
.
get
(
'
default
'
,
False
)
props
.
PropertyBase
.
__init__
(
self
,
**
kwargs
)
def
cast
(
self
,
instance
,
attributes
,
value
):
"""
Overrides :class:`~fsl.props.properties.PropertyBase.cast`.
Casts the given value to a ``bool``.
"""
return
bool
(
value
)
class
Number
(
props
.
PropertyBase
):
"""
Base class for the Int and Real classes. Don
'
t
use/subclass this, use/subclass one of Int or Real.
"""
Base class for the :class:`Int` and :class:`Real` classes.
A property which represents a number. Don
'
t use/subclass this,
use/subclass one of :class:`Int` or :class:`Real`.
"""
def
__init__
(
self
,
...
...
@@ -41,14 +57,22 @@ class Number(props.PropertyBase):
clamped
=
False
,
editLimits
=
False
,
**
kwargs
):
"""
Optional parameters:
- minval: Minimum value
- maxval: Maximum value
- clamped: If True, the value will be clamped to its min/max
bounds.
- editLimits: If True, widgets created to modify Number properties
will allow the user to change the min/max limits.
"""
Define a Number property.
:param number minval: Minimum valid value
:param number maxval: Maximum valid value
:param bool clamped: If ``True``, the value will be clamped to its
min/max bounds.
:param bool editLimits: If ``True``, widgets created to modify
:class:`Number` properties will allow the user
to change the min/max values.
:param kwargs: Passed through to the
:class:`~fsl.props.properties.PropertyBase`
constructor. If a ``default`` value is not
provided, it is set to something sensible.
"""
default
=
kwargs
.
get
(
'
default
'
,
None
)
...
...
@@ -72,6 +96,22 @@ class Number(props.PropertyBase):
def
validate
(
self
,
instance
,
attributes
,
value
):
"""
Overrides :meth:`~fsl.props.properties.PropertyBase.validate`.
Validates the given number.
Calls the :meth:`~fsl.props.properties.PropertyBase.validate` method.
Then, if the ``minval`` and/or ``maxval`` constraints have been set,
and the given value is not within those values, a :exc:`ValueError` is
raised.
:param instance: The owning
:class:`~fsl.props.properties.HasProperties`
instance (or ``None``.
:param dict attributes: Dictionary containing property constraints.
:param number value: The value to validate.
"""
props
.
PropertyBase
.
validate
(
self
,
instance
,
attributes
,
value
)
...
...
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