PropertyDefinitionHelpFormatter.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package ArmarXCore::core
19  * @author Jan Issac (jan dot issac at gmx dot de)
20  * @date 2012
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 #pragma once
26 
28 
29 #include <string>
30 #include <vector>
31 
32 namespace armarx
33 {
34  /**
35  * @ingroup properties
36  *
37  * @class PropertyDefinitionHelpFormatter
38  * @brief PropertyDefinitionHelpFormatter
39  */
42  {
43  public:
44  std::string formatDefinition(
45  std::string name,
46  std::string description,
47  std::string min,
48  std::string max,
49  std::string default_,
50  std::string casesensitivity,
51  std::string requirement,
52  std::string reged,
53  std::vector<std::string> values,
54  std::string value) override;
55 
56  std::string formatName(std::string name) override;
57  std::string formatDescription(std::string description) override;
58  std::string formatBounds(std::string min, std::string max) override;
59  std::string formatDefault(std::string default_) override;
60  std::string formatCaseSensitivity(std::string caseSensitivity) override;
61  std::string formatRequirement(std::string requirement) override;
62  std::string formatRegex(std::string regex) override;
63  std::string formatValue(std::string value) override;
64  std::string formatValues(std::vector<std::string> values) override;
65  std::string formatAttribute(std::string name, std::string details) override;
66 
67  std::string formatHeader(std::string headerText) override;
68 
69  std::string getFormat() override;
70  };
71 }
72 
armarx::PropertyDefinitionHelpFormatter::formatDescription
std::string formatDescription(std::string description) override
Definition: PropertyDefinitionHelpFormatter.cpp:77
armarx::PropertyDefinitionHelpFormatter::formatValue
std::string formatValue(std::string value) override
Definition: PropertyDefinitionHelpFormatter.cpp:148
armarx::PropertyDefinitionHelpFormatter::formatName
std::string formatName(std::string name) override
Definition: PropertyDefinitionHelpFormatter.cpp:72
armarx::max
std::vector< T > max(const std::vector< T > &v1, const std::vector< T > &v2)
Definition: VectorHelpers.h:267
ProsthesisInterface.values
values
Definition: ProsthesisInterface.py:190
PropertyDefinitionFormatter.h
armarx::PropertyDefinitionHelpFormatter::formatDefinition
std::string formatDefinition(std::string name, std::string description, std::string min, std::string max, std::string default_, std::string casesensitivity, std::string requirement, std::string reged, std::vector< std::string > values, std::string value) override
Definition: PropertyDefinitionHelpFormatter.cpp:35
armarx::PropertyDefinitionHelpFormatter::formatHeader
std::string formatHeader(std::string headerText) override
Definition: PropertyDefinitionHelpFormatter.cpp:167
armarx::PropertyDefinitionHelpFormatter
PropertyDefinitionHelpFormatter.
Definition: PropertyDefinitionHelpFormatter.h:40
cxxopts::value
std::shared_ptr< Value > value()
Definition: cxxopts.hpp:926
armarx::PropertyDefinitionHelpFormatter::getFormat
std::string getFormat() override
Definition: PropertyDefinitionHelpFormatter.cpp:59
armarx::PropertyDefinitionHelpFormatter::formatRegex
std::string formatRegex(std::string regex) override
Definition: PropertyDefinitionHelpFormatter.cpp:117
armarx::PropertyDefinitionHelpFormatter::formatRequirement
std::string formatRequirement(std::string requirement) override
Definition: PropertyDefinitionHelpFormatter.cpp:112
armarx::PropertyDefinitionHelpFormatter::formatDefault
std::string formatDefault(std::string default_) override
Definition: PropertyDefinitionHelpFormatter.cpp:102
armarx::PropertyDefinitionHelpFormatter::formatValues
std::string formatValues(std::vector< std::string > values) override
Definition: PropertyDefinitionHelpFormatter.cpp:122
armarx::min
std::vector< T > min(const std::vector< T > &v1, const std::vector< T > &v2)
Definition: VectorHelpers.h:294
armarx::PropertyDefinitionHelpFormatter::formatCaseSensitivity
std::string formatCaseSensitivity(std::string caseSensitivity) override
Definition: PropertyDefinitionHelpFormatter.cpp:107
armarx::PropertyDefinitionHelpFormatter::formatBounds
std::string formatBounds(std::string min, std::string max) override
Definition: PropertyDefinitionHelpFormatter.cpp:82
armarx::PropertyDefinitionFormatter
PropertyDefinitionFormatter is the base class for all formatters of PropertyDefinitions.
Definition: PropertyDefinitionFormatter.h:38
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28
armarx::PropertyDefinitionHelpFormatter::formatAttribute
std::string formatAttribute(std::string name, std::string details) override
Definition: PropertyDefinitionHelpFormatter.cpp:153