StatechartEditorParameterEditor.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
19  * @author
20  * @date
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 #pragma once
26 #include <QComboBox>
27 #include <QStyledItemDelegate>
28 #include <QTableWidget>
29 #include <QToolButton>
30 
33 
35 
36 namespace armarx
37 {
38  class AnimatedToolButton : public QToolButton
39  {
40 
41  Q_OBJECT
42  Q_PROPERTY(QColor color READ color WRITE setColor)
43 
44  public:
45  AnimatedToolButton(QWidget* parent = 0) : QToolButton(parent)
46  {
47  }
48 
49  void setColor(QColor color);
50 
51  QColor
53  {
54  return Qt::black; // getter is not really needed for now
55  }
56  };
57 
58  class StatechartEditorParameterEditor : public QTableWidget
59  {
60  Q_OBJECT
61  public:
64  QWidget* parent = 0,
68  // void buildFromMap(const statechartmodel::StateParameterMap& map);
69  protected slots:
70  void addCustomColumn(int row);
71  void fillCustomColumn(int row, const QString& key);
72  void showHelpDialog();
73  void addInputToParent();
74  void init(const statechartmodel::StateParameterMap& params);
75 
76  protected:
79 
80 
81  // ###### StateParameterEditor: ######
82  public:
83  enum ColumnIds
84  {
91  };
92 
93  //explicit StateParameterEditor(QWidget *parent = 0, const StateParameterMap& params = StateParameterMap());
94 
95  void
97  {
98  this->communicator = communicator;
99  }
100 
101  void
103  {
104  this->variantInfo = variantInfo;
105  }
106 
107  void
109  {
110  this->currentProfile = currentProfile;
111  setColumnCount(eEditableValue + getRelevantProfiles().size());
112  }
113 
114  void setKeyBlackList(const QSet<QString>& keyBlackList);
115  QSet<QString> getKeys() const;
116  QSet<QString> getTypes() const;
119 
120  QMap<QString, QString> getValuesAsString(int row) const;
121  QMap<QString, VariantContainerBasePtr> getProfileVariantContainerMap(int row) const;
122  QMap<QString, QString> getProfileJsonMap(QString key) const;
123  QString getKey(int row) const;
124  QString getType(int row) const;
125  QString getType(QString key) const;
126  int getRow(const QString& key) const;
127  bool getIsOptional(int row) const;
128 
129  void addParameterRow(QString key,
130  QString variantIdStr,
131  QVector<QString> values,
132  bool optional = false);
133  void setHeaders();
134  Qt::CheckState getDefaultValueState() const;
135  void setDefaultValueState(const Qt::CheckState& value);
136  void hideValueColumns();
137 
139  signals:
141  void rowAdded(int rowId);
142  void rowFilled(int rowId, const QString& key);
143  void typeChanged(int row, const QString& newType);
144  public slots:
146  int addParameterRow();
147  void typeCbChanged(const QString&);
148  void deleteRow();
149  void checkAndUpdateRowCount(int row, int column);
150  void refreshVariantTypes();
151  private slots:
152  void __buildFromMap(const statechartmodel::StateParameterMap& map);
153 
154  private:
155  QVector<QString> getRelevantProfiles() const;
156  void connectUserEditSlots();
157  QStringList addVariantTypesToComboBox(QComboBox* combo);
158  QString getHumanNameFromBaseName(QString variantBaseTypeName) const;
159  QString getBaseNameFromHumanName(QString humanName) const;
160  static bool compareVariantNames(const QString& a, const QString& b);
161 
162  class LineEditDelegate : public QStyledItemDelegate
163  {
164  QWidget* createEditor(QWidget* parent,
165  const QStyleOptionViewItem& option,
166  const QModelIndex& index) const override;
167  };
168 
169  LineEditDelegate delegate;
170  Ice::CommunicatorPtr communicator;
171  VariantInfoPtr variantInfo;
172  Qt::CheckState defaultValueState;
173  QSet<QString> keyBlackList;
174  StatechartProfilePtr currentProfile;
175  };
176 
177 } // namespace armarx
armarx::StatechartEditorParameterEditor::getIsOptional
bool getIsOptional(int row) const
Definition: StatechartEditorParameterEditor.cpp:518
armarx::StatechartEditorParameterEditor::getKey
QString getKey(int row) const
Definition: StatechartEditorParameterEditor.cpp:454
armarx::StatechartEditorParameterEditor::setCurrentProfile
void setCurrentProfile(StatechartProfilePtr currentProfile)
Definition: StatechartEditorParameterEditor.h:108
armarx::StatechartEditorParameterEditor::state
statechartmodel::StateInstancePtr state
Definition: StatechartEditorParameterEditor.h:77
armarx::StatechartEditorParameterEditor::getProfileVariantContainerMap
QMap< QString, VariantContainerBasePtr > getProfileVariantContainerMap(int row) const
Definition: StatechartEditorParameterEditor.cpp:432
armarx::StatechartEditorParameterEditor::fillCustomColumn
void fillCustomColumn(int row, const QString &key)
Definition: StatechartEditorParameterEditor.cpp:157
armarx::AnimatedToolButton::setColor
void setColor(QColor color)
Definition: StatechartEditorParameterEditor.cpp:1011
index
uint8_t index
Definition: EtherCATFrame.h:59
armarx::StatechartEditorParameterEditor::originalParamMap
statechartmodel::StateParameterMap originalParamMap
Definition: StatechartEditorParameterEditor.h:78
armarx::StatechartEditorParameterEditor::getProfileJsonMap
QMap< QString, QString > getProfileJsonMap(QString key) const
Definition: StatechartEditorParameterEditor.cpp:395
armarx::StatechartEditorParameterEditor::eEditableValue
@ eEditableValue
Definition: StatechartEditorParameterEditor.h:90
armarx::StatechartEditorParameterEditor::setDefaultValueState
void setDefaultValueState(const Qt::CheckState &value)
Definition: StatechartEditorParameterEditor.cpp:896
armarx::StatechartEditorParameterEditor::getDefaultValueState
Qt::CheckState getDefaultValueState() const
Definition: StatechartEditorParameterEditor.cpp:890
ProsthesisInterface.values
values
Definition: ProsthesisInterface.py:190
armarx::AnimatedToolButton::AnimatedToolButton
AnimatedToolButton(QWidget *parent=0)
Definition: StatechartEditorParameterEditor.h:45
armarx::StatechartProfilePtr
std::shared_ptr< class StatechartProfile > StatechartProfilePtr
Definition: StatechartContext.h:51
armarx::StatechartEditorParameterEditor::buildRequested
void buildRequested(const statechartmodel::StateParameterMap &map)
armarx::StatechartEditorParameterEditor::rowAdded
void rowAdded(int rowId)
armarx::StatechartEditorParameterEditor::setStateInstance
void setStateInstance(statechartmodel::StateInstancePtr state)
Definition: StatechartEditorParameterEditor.cpp:68
armarx::AnimatedToolButton::color
QColor color
Definition: StatechartEditorParameterEditor.h:42
armarx::StatechartEditorParameterEditor::getKeys
QSet< QString > getKeys() const
Definition: StatechartEditorParameterEditor.cpp:286
armarx::StatechartEditorParameterEditor::eKey
@ eKey
Definition: StatechartEditorParameterEditor.h:85
armarx::statechartmodel::StateInstancePtr
std::shared_ptr< StateInstance > StateInstancePtr
Definition: StateInstance.h:146
armarx::StatechartEditorParameterEditor::setCommunicator
void setCommunicator(Ice::CommunicatorPtr communicator)
Definition: StatechartEditorParameterEditor.h:96
armarx::StatechartEditorParameterEditor::checkAndUpdateRowCount
void checkAndUpdateRowCount(int row, int column)
Definition: StatechartEditorParameterEditor.cpp:668
armarx::StatechartEditorParameterEditor::addCustomColumn
void addCustomColumn(int row)
Definition: StatechartEditorParameterEditor.cpp:120
IceInternal::Handle<::Ice::Communicator >
armarx::StatechartEditorParameterEditor::setKeyBlackList
void setKeyBlackList(const QSet< QString > &keyBlackList)
Definition: StatechartEditorParameterEditor.cpp:280
armarx::StatechartEditorParameterEditor::getStateParametersWithoutValue
statechartmodel::StateParameterMap getStateParametersWithoutValue() const
armarx::ctrlutil::a
double a(double t, double a0, double j)
Definition: CtrlUtil.h:45
armarx::StatechartEditorParameterEditor::hideValueColumns
void hideValueColumns()
Definition: StatechartEditorParameterEditor.cpp:902
cxxopts::value
std::shared_ptr< Value > value()
Definition: cxxopts.hpp:855
armarx::StatechartEditorParameterEditor::typeChanged
void typeChanged(int row, const QString &newType)
armarx::StatechartEditorParameterEditor::getStateParameters
statechartmodel::StateParameterMap getStateParameters() const
Definition: StatechartEditorParameterEditor.cpp:342
armarx::statechartmodel::StateParameterMap
QMap< QString, StateParameterPtr > StateParameterMap
Definition: StateParameter.h:46
armarx::StatechartEditorParameterEditor::deleteRow
void deleteRow()
Definition: StatechartEditorParameterEditor.cpp:649
StatechartProfiles.h
armarx::StatechartEditorParameterEditor::showHelpDialog
void showHelpDialog()
Definition: StatechartEditorParameterEditor.cpp:200
armarx::StatechartEditorParameterEditor::eDeleteButton
@ eDeleteButton
Definition: StatechartEditorParameterEditor.h:88
armarx::statechartmodel::StateParameterPtr
std::shared_ptr< StateParameter > StateParameterPtr
Definition: StateParameter.h:45
armarx::StatechartEditorParameterEditor::eAdditionalButtons
@ eAdditionalButtons
Definition: StatechartEditorParameterEditor.h:89
armarx::StatechartEditorParameterEditor::getRow
int getRow(const QString &key) const
Definition: StatechartEditorParameterEditor.cpp:496
armarx::StatechartEditorParameterEditor::addInputToParent
void addInputToParent()
Definition: StatechartEditorParameterEditor.cpp:227
armarx::StatechartEditorParameterEditor::buildFromMap
void buildFromMap(const statechartmodel::StateParameterMap &map)
Definition: StatechartEditorParameterEditor.cpp:935
armarx::StatechartEditorParameterEditor::getStateParameter
statechartmodel::StateParameterPtr getStateParameter(int row) const
Definition: StatechartEditorParameterEditor.cpp:313
option
#define option(type, fn)
armarx::StatechartEditorParameterEditor
Definition: StatechartEditorParameterEditor.h:58
armarx::StatechartEditorParameterEditor::eOptional
@ eOptional
Definition: StatechartEditorParameterEditor.h:87
armarx::StatechartEditorParameterEditor::addParameterRow
int addParameterRow()
Definition: StatechartEditorParameterEditor.cpp:530
armarx::StatechartEditorParameterEditor::getValuesAsString
QMap< QString, QString > getValuesAsString(int row) const
Definition: StatechartEditorParameterEditor.cpp:369
armarx::VariantInfoPtr
std::shared_ptr< VariantInfo > VariantInfoPtr
Definition: VariantInfo.h:39
armarx::StatechartEditorParameterEditor::getType
QString getType(int row) const
Definition: StatechartEditorParameterEditor.cpp:470
armarx::StatechartEditorParameterEditor::getTypes
QSet< QString > getTypes() const
Definition: StatechartEditorParameterEditor.cpp:302
armarx::StatechartEditorParameterEditor::eType
@ eType
Definition: StatechartEditorParameterEditor.h:86
armarx::StatechartEditorParameterEditor::rowFilled
void rowFilled(int rowId, const QString &key)
armarx::StatechartEditorParameterEditor::StatechartEditorParameterEditor
StatechartEditorParameterEditor(QWidget *parent=0, statechartmodel::StateInstancePtr state=statechartmodel::StateInstancePtr(), const statechartmodel::StateParameterMap &params=statechartmodel::StateParameterMap())
Definition: StatechartEditorParameterEditor.cpp:73
State.h
armarx::StatechartEditorParameterEditor::setVariantInfo
void setVariantInfo(VariantInfoPtr variantInfo)
Definition: StatechartEditorParameterEditor.h:102
armarx::StatechartEditorParameterEditor::refreshVariantTypes
void refreshVariantTypes()
Definition: StatechartEditorParameterEditor.cpp:715
armarx::StatechartEditorParameterEditor::setHeaders
void setHeaders()
Definition: StatechartEditorParameterEditor.cpp:913
armarx::StatechartEditorParameterEditor::init
void init(const statechartmodel::StateParameterMap &params)
Definition: StatechartEditorParameterEditor.cpp:253
armarx::StatechartEditorParameterEditor::ColumnIds
ColumnIds
Definition: StatechartEditorParameterEditor.h:83
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::AnimatedToolButton
Definition: StatechartEditorParameterEditor.h:38
armarx::AnimatedToolButton::color
QColor color()
Definition: StatechartEditorParameterEditor.h:52
armarx::StatechartEditorParameterEditor::typeCbChanged
void typeCbChanged(const QString &)
Definition: StatechartEditorParameterEditor.cpp:616
VariantInfo.h