casacore
|
#include <Choice.h>
Public Types | |
typedef String | ChoiceFunc(const String &descriptiveText, const Vector< String > &choices) |
Define the signature of the choice function. More... | |
Static Public Member Functions | |
static String | choice (const String &descriptiveText, const Vector< String > &choices) |
Get a choice from the user. More... | |
static ChoiceFunc * | setChoiceFunc (ChoiceFunc *func) |
Set the choice function. More... | |
static String | stderrChoice (const String &descriptiveText, const Vector< String > &choices) |
A choice function asking on stderr. More... | |
static String | stdoutChoice (const String &descriptiveText, const Vector< String > &choices) |
A choice function asking on stdout. More... | |
Static Private Member Functions | |
static String | ostreamChoice (std::ostream &, const String &descriptiveText, const Vector< String > &choices) |
Ask on an ostream. More... | |
Static Private Attributes | |
static ChoiceFunc * | theirChoiceFunc |
Class to ask a user a choice
|
static |
Get a choice from the user.
The choice function to be used can be set using setChoiceFunc. It can, for instance, be done by ObjectController. Initially no choice function is set. In that case it returns the first choice (so that should be the default choice). If choices is zero length, an empty string is returned.
|
staticprivate |
Ask on an ostream.
Referenced by stderrChoice(), and stdoutChoice().
|
static |
Set the choice function.
It returns the old choice function.
|
inlinestatic |
A choice function asking on stderr.
Definition at line 78 of file Choice.h.
References ostreamChoice().
|
inlinestatic |
A choice function asking on stdout.
It outputs the descriptiveText followed by a blank, the options (enclosed in parentheses) and a colon. The default option is shown in square brackets.
Definition at line 86 of file Choice.h.
References ostreamChoice().
|
staticprivate |