SPH
|
Helper object, allowing to add units, tooltips and additional properties into the entry created with VirtualSettings::Category::connect. More...
#include <VirtualSettings.h>
Public Types | |
using | Enabler = Function< bool()> |
using | Accessor = Function< void(const Value &newValue)> |
using | Validator = Function< bool(const Value &newValue)> |
![]() | |
enum class | Type { BOOL , INT , FLOAT , VECTOR , INTERVAL , STRING , PATH , ENUM , EXTRA , FLAGS } |
enum class | PathType { DIRECTORY , INPUT_FILE , OUTPUT_FILE } |
using | Value = Variant< bool, int, Float, Vector, Interval, std::string, Path, EnumWrapper, ExtraEntry > |
Public Member Functions | |
EntryControl & | setTooltip (const std::string &newTooltip) |
Adds or replaces the previous tooltip associanted with the entry. More... | |
EntryControl & | setUnits (const Float newMult) |
Sets units in which the entry is stored. More... | |
EntryControl & | setEnabler (const Enabler &newEnabler) |
Adds or replaces the enabler functor of the entry. More... | |
EntryControl & | addAccessor (const SharedToken &owner, const Accessor &accessor) |
Adds a functor called when the entry changes, i.e. when set function is called. More... | |
EntryControl & | setValidator (const Validator &newValidator) |
Adds or replaces the functor called to validate the new value. More... | |
EntryControl & | setSideEffect () |
Specifies that the entry has a side effect, i.e. in changes values of other entries. More... | |
EntryControl & | setPathType (const PathType &newType) |
Sets the type of the path. More... | |
EntryControl & | setFileFormats (Array< FileFormat > &&formats) |
Sets the allowed file formats. More... | |
![]() | |
virtual Value | get () const =0 |
Returns the currently stored value. More... | |
virtual Type | getType () const =0 |
Returns the type of this entry. More... | |
virtual std::string | getName () const =0 |
Returns a descriptive name of the entry. More... | |
![]() | |
virtual | ~Polymorphic () |
Protected Member Functions | |
virtual bool | enabled () const override final |
Returns if this entry is currently enabled. More... | |
virtual std::string | getTooltip () const override final |
Returns an optional description of the entry. More... | |
virtual bool | hasSideEffect () const override final |
Returns true if the entry can modify multiple values simultaneously. More... | |
virtual Optional< PathType > | getPathType () const override final |
Returns the type of the path. More... | |
virtual Array< FileFormat > | getFileFormats () const override final |
Returns the allowed file format for this file entry. More... | |
virtual bool | isValid (const Value &value) const override final |
Checks if the given value is a valid input for this entry. More... | |
virtual void | setImpl (const Value &value)=0 |
Protected Attributes | |
std::string | tooltip |
Float | mult = 1._f |
Optional< PathType > | pathType = NOTHING |
Array< FileFormat > | fileFormats |
Enabler | enabler = nullptr |
CallbackSet< Accessor > | accessors |
Validator | validator = nullptr |
bool | sideEffect = false |
Helper object, allowing to add units, tooltips and additional properties into the entry created with VirtualSettings::Category::connect.
Each member function returns a reference to the object in order to allow queuing the calls, such as
It partially implements the IVirtualEntry interface to avoid code duplication.
Definition at line 149 of file VirtualSettings.h.
using EntryControl::Accessor = Function<void(const Value& newValue)> |
Definition at line 152 of file VirtualSettings.h.
using EntryControl::Enabler = Function<bool()> |
Definition at line 151 of file VirtualSettings.h.
using EntryControl::Validator = Function<bool(const Value& newValue)> |
Definition at line 153 of file VirtualSettings.h.
EntryControl & EntryControl::addAccessor | ( | const SharedToken & | owner, |
const Accessor & | accessor | ||
) |
Adds a functor called when the entry changes, i.e. when set function is called.
There can be any number of accessors set for each property.
owner Owner that registered the accessor. When expired, the accessor is no longer called.
accessor New functor to be added.
Definition at line 20 of file VirtualSettings.cpp.
|
finaloverrideprotectedvirtual |
Returns if this entry is currently enabled.
Implementation may return false if the entry does not have any effect for current setup of the job, for example if the entry is associated with a parameter of a solver which is not being used.
Implements IVirtualEntry.
Definition at line 57 of file VirtualSettings.cpp.
|
finaloverrideprotectedvirtual |
Returns the allowed file format for this file entry.
Used only for file entry (i.e. getPathType returns INPUT_FILE or OUTPUT_FILE). The returned array contains pairs of the file format description and the corresponding extension (i.e. 'txt').
Reimplemented from IVirtualEntry.
Definition at line 49 of file VirtualSettings.cpp.
|
finaloverrideprotectedvirtual |
Returns the type of the path.
Used only if type of the entry is PATH, otherwise returns NOTHING.
Reimplemented from IVirtualEntry.
Definition at line 45 of file VirtualSettings.cpp.
|
finaloverrideprotectedvirtual |
Returns an optional description of the entry.
Reimplemented from IVirtualEntry.
Definition at line 61 of file VirtualSettings.cpp.
|
finaloverrideprotectedvirtual |
Returns true if the entry can modify multiple values simultaneously.
Usually, there is a 1-1 correspondence between entries and values (stored either in Settings or directly in the job). However, an entry can modify other values as well, in which case it should signal this by returning true from this function.
Reimplemented from IVirtualEntry.
Definition at line 65 of file VirtualSettings.cpp.
|
finaloverrideprotectedvirtual |
Checks if the given value is a valid input for this entry.
Implements IVirtualEntry.
Definition at line 53 of file VirtualSettings.cpp.
EntryControl & EntryControl::setEnabler | ( | const Enabler & | newEnabler | ) |
Adds or replaces the enabler functor of the entry.
Enabler specifies whether the entry is accessible or not. The user can still call the member function set or get of the entry even if the functor returns false, but it indicates that the entry has no meaning in the context of the current settings. For example, enabler should returns false for entries associated with parameters of the boundary if there are no boundary conditions in the simulations.
Definition at line 15 of file VirtualSettings.cpp.
EntryControl & EntryControl::setFileFormats | ( | Array< FileFormat > && | formats | ) |
Sets the allowed file formats.
Definition at line 40 of file VirtualSettings.cpp.
|
protectedpure virtual |
Implemented in Detail::SettingsEntry< Path, TEnum >, Detail::SettingsEntry< TValue, TEnum, std::enable_if_t< FlagsTraits< TValue >::isFlags > >, Detail::SettingsEntry< TValue, TEnum, TEnabler >, Detail::ValueEntry< TValue, std::enable_if_t< FlagsTraits< TValue >::isFlags > >, and Detail::ValueEntry< TValue, typename >.
EntryControl & EntryControl::setPathType | ( | const PathType & | newType | ) |
Sets the type of the path.
Definition at line 35 of file VirtualSettings.cpp.
EntryControl & EntryControl::setSideEffect | ( | ) |
Specifies that the entry has a side effect, i.e. in changes values of other entries.
Definition at line 30 of file VirtualSettings.cpp.
NAMESPACE_SPH_BEGIN EntryControl & EntryControl::setTooltip | ( | const std::string & | newTooltip | ) |
Adds or replaces the previous tooltip associanted with the entry.
Definition at line 5 of file VirtualSettings.cpp.
EntryControl & EntryControl::setUnits | ( | const Float | newMult | ) |
Sets units in which the entry is stored.
Note that the units are currently only applied for Float or Vector entries. Other entries ignore the value.
Definition at line 10 of file VirtualSettings.cpp.
EntryControl & EntryControl::setValidator | ( | const Validator & | newValidator | ) |
Adds or replaces the functor called to validate the new value.
If the functor returns false, the value is unchanged.
Definition at line 25 of file VirtualSettings.cpp.
|
protected |
Definition at line 161 of file VirtualSettings.h.
|
protected |
Definition at line 160 of file VirtualSettings.h.
|
protected |
Definition at line 159 of file VirtualSettings.h.
|
protected |
Definition at line 157 of file VirtualSettings.h.
Definition at line 158 of file VirtualSettings.h.
|
protected |
Definition at line 163 of file VirtualSettings.h.
|
protected |
Definition at line 156 of file VirtualSettings.h.
|
protected |
Definition at line 162 of file VirtualSettings.h.