label_edit_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_LABEL_EDIT_WIDGET_H_
26 #define SRC_GUI_INCLUDE_CORBO_GUI_LABEL_EDIT_WIDGET_H_
27 
28 #include <QLabel>
29 #include <QLineEdit>
30 
31 namespace corbo {
32 namespace gui {
33 
34 class LabelEditWidget : public QWidget
35 {
36  Q_OBJECT
37 
38  public:
39  explicit LabelEditWidget(QWidget* parent = 0) : LabelEditWidget("", "", parent) {}
40  explicit LabelEditWidget(const QString& label, const QString& default_text, QWidget* parent = 0);
41  ~LabelEditWidget() {}
42 
43  QSize sizeHint() const override;
44 
45  void setLabel(const QString& label) { _label->setText(label); }
46  void setText(const QString& text) { _edit->setText(text); }
47 
48  QLineEdit* widgetLineEdit() { return _edit; }
49  const QLineEdit* widgetLineEdit() const { return _edit; }
50 
51  QLabel* widgetLabel() { return _label; }
52  const QLabel* widgetLabel() const { return _label; }
53 
54  protected:
55  private:
56  QLineEdit* _edit;
57  QLabel* _label;
58 };
59 
60 } // namespace gui
61 } // namespace corbo
62 
63 #endif // SRC_GUI_INCLUDE_CORBO_GUI_LABEL_EDIT_WIDGET_H_
corbo::gui::LabelEditWidget::_label
QLabel * _label
Definition: label_edit_widget.h:123
corbo::gui::LabelEditWidget::widgetLabel
QLabel * widgetLabel()
Definition: label_edit_widget.h:117
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::gui::LabelEditWidget::~LabelEditWidget
~LabelEditWidget()
Definition: label_edit_widget.h:107
corbo::gui::LabelEditWidget::widgetLineEdit
QLineEdit * widgetLineEdit()
Definition: label_edit_widget.h:114
corbo::gui::LabelEditWidget::LabelEditWidget
LabelEditWidget(QWidget *parent=0)
Definition: label_edit_widget.h:105
corbo::gui::LabelEditWidget::setLabel
void setLabel(const QString &label)
Definition: label_edit_widget.h:111
corbo::gui::LabelEditWidget::sizeHint
QSize sizeHint() const override
Definition: label_edit_widget.cpp:91
corbo::gui::LabelEditWidget::setText
void setText(const QString &text)
Definition: label_edit_widget.h:112
corbo::gui::LabelEditWidget::_edit
QLineEdit * _edit
Definition: label_edit_widget.h:122
relicense.text
text
Definition: relicense.py:59


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