one_of_param_widget.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_GUI_INCLUDE_CORBO_GUI_ONE_OF_PARAM_WIDGET_H_
26 #define SRC_GUI_INCLUDE_CORBO_GUI_ONE_OF_PARAM_WIDGET_H_
27 
30 
32 
33 #include <QHash>
34 #include <QPair>
35 #include <QSet>
36 #include <QString>
37 #include <QVBoxLayout>
38 
39 #include <list>
40 #include <string>
41 
42 namespace corbo {
43 namespace gui {
44 
45 class OneOfParamWidget : public QWidget
46 {
47  Q_OBJECT
48 
49  public:
50  explicit OneOfParamWidget(ParameterCache* cache = nullptr, QWidget* parent = nullptr) : OneOfParamWidget("", cache, parent) {}
51  explicit OneOfParamWidget(const QString& label, ParameterCache* cache = nullptr, QWidget* parent = nullptr);
52  virtual ~OneOfParamWidget();
53 
54  QSize sizeHint() const override;
55 
56  const std::list<std::string>& nestedFieldName() const { return _nested_field_name; }
57  std::list<std::string>& nestedFieldName() { return _nested_field_name; }
58  std::string nestedFieldNameUnrolled(const std::string& delimiter);
59 
60  void addDescription(const QString& description);
61 
62  public slots:
63 
64  void registerParameter(const QString& label, const MessageParser::FieldInformation& info);
65  void selectParameter(const QString& label);
66 
67  signals:
68  void currentParameterChanged(const QString& label);
69  void signalUpdateRequested();
70 
71  protected:
72  void addParametersToCache();
74 
75  private:
76  QVBoxLayout* _layout;
77  QWidget* _param_widget = nullptr;
78  LabelComboBoxWidget* _combobox;
79 
80  std::list<std::string> _nested_field_name;
81 
82  google::protobuf::Message* _message = nullptr;
83  QHash<QString, const google::protobuf::FieldDescriptor*> _fields;
84 
85  QString _selected_item;
86 
87  bool _selected_item_parsed = false;
88 
90 };
91 
92 } // namespace gui
93 } // namespace corbo
94 
95 #endif // SRC_GUI_INCLUDE_CORBO_GUI_ONE_OF_PARAM_WIDGET_H_
corbo::gui::OneOfParamWidget::registerParameter
void registerParameter(const QString &label, const MessageParser::FieldInformation &info)
Definition: one_of_param_widget.cpp:101
corbo::gui::OneOfParamWidget::_combobox
LabelComboBoxWidget * _combobox
Definition: one_of_param_widget.h:144
corbo
Definition: communication/include/corbo-communication/utilities.h:37
label_combobox_widget.h
corbo::gui::OneOfParamWidget::nestedFieldName
const std::list< std::string > & nestedFieldName() const
Definition: one_of_param_widget.h:122
corbo::gui::ParameterCache
Definition: parameter_cache.h:82
corbo::gui::OneOfParamWidget::_message
google::protobuf::Message * _message
Definition: one_of_param_widget.h:148
info
else if n * info
Definition: cholesky.cpp:18
corbo::gui::OneOfParamWidget::currentParameterChanged
void currentParameterChanged(const QString &label)
corbo::gui::OneOfParamWidget::nestedFieldNameUnrolled
std::string nestedFieldNameUnrolled(const std::string &delimiter)
Definition: one_of_param_widget.cpp:200
corbo::gui::OneOfParamWidget::restoreParametersFromCache
bool restoreParametersFromCache()
Definition: one_of_param_widget.cpp:183
corbo::gui::OneOfParamWidget::selectParameter
void selectParameter(const QString &label)
Definition: one_of_param_widget.cpp:124
corbo::gui::OneOfParamWidget::signalUpdateRequested
void signalUpdateRequested()
parameter_cache.h
corbo::gui::OneOfParamWidget::addDescription
void addDescription(const QString &description)
Definition: one_of_param_widget.cpp:208
corbo::gui::OneOfParamWidget::_selected_item
QString _selected_item
Definition: one_of_param_widget.h:151
corbo::gui::OneOfParamWidget::_fields
QHash< QString, const google::protobuf::FieldDescriptor * > _fields
Definition: one_of_param_widget.h:149
corbo::gui::OneOfParamWidget::sizeHint
QSize sizeHint() const override
Definition: one_of_param_widget.cpp:99
corbo::gui::OneOfParamWidget::_param_cache
ParameterCache * _param_cache
Definition: one_of_param_widget.h:155
corbo::gui::OneOfParamWidget::_layout
QVBoxLayout * _layout
Definition: one_of_param_widget.h:142
corbo::gui::OneOfParamWidget::_selected_item_parsed
bool _selected_item_parsed
Keep track if we have already parsed the selected item to avoid expanding a wrong protobuf message.
Definition: one_of_param_widget.h:153
corbo::gui::OneOfParamWidget::_nested_field_name
std::list< std::string > _nested_field_name
Definition: one_of_param_widget.h:146
corbo::gui::OneOfParamWidget::OneOfParamWidget
OneOfParamWidget(ParameterCache *cache=nullptr, QWidget *parent=nullptr)
Definition: one_of_param_widget.h:116
corbo::gui::OneOfParamWidget::_param_widget
QWidget * _param_widget
Definition: one_of_param_widget.h:143
corbo::gui::OneOfParamWidget::~OneOfParamWidget
virtual ~OneOfParamWidget()
Definition: one_of_param_widget.cpp:97
corbo::gui::OneOfParamWidget::addParametersToCache
void addParametersToCache()
Definition: one_of_param_widget.cpp:166
message_parser.h


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:58