horizontal_button_group.cpp
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 
26 #include <QCheckBox>
27 #include <QRadioButton>
28 
29 namespace corbo {
30 namespace gui {
31 
32 HoriontalButtonGroup::HoriontalButtonGroup(const QString& label, bool exclusive, QWidget* parent) : QWidget(parent)
33 {
34  setSizePolicy(QSizePolicy::Policy::Maximum, QSizePolicy::Policy::Maximum);
35 
36  _exclusive = exclusive;
37  _layout = new QHBoxLayout(this);
38  _layout->setContentsMargins(0, 0, 0, 0);
39  _layout->setAlignment(Qt::AlignLeft);
40  _label = new QLabel(label);
41  _layout->addWidget(_label);
42  _layout->addSpacing(15);
43 }
44 
45 QAbstractButton* HoriontalButtonGroup::addButton(bool checked, const QString& cb_label)
46 {
47  if (!_exclusive)
48  {
49  QCheckBox* cb = new QCheckBox(cb_label);
50  cb->setChecked(checked);
51  _layout->addWidget(cb);
52  _boxes.push_back(cb);
53  return cb;
54  }
55  QRadioButton* cb = new QRadioButton(cb_label);
56  cb->setChecked(checked);
57  _layout->addWidget(cb);
58  _boxes.push_back(cb);
59  return cb;
60 }
61 
62 QAbstractButton* HoriontalButtonGroup::widgetButton(int idx)
63 {
64  if (idx >= _boxes.size()) return nullptr;
65  return _boxes[idx];
66 }
67 QVector<bool> HoriontalButtonGroup::buttonStates() const
68 {
69  QVector<bool> states;
70  for (QAbstractButton* btn : _boxes)
71  {
72  states.push_back(btn->isChecked());
73  }
74  return states;
75 }
76 void HoriontalButtonGroup::setButtonStates(const QVector<bool>& states)
77 {
78  if (states.size() != noButtons())
79  {
80  // PRINT_INFO("Cannot set button states: number of buttons does not correspond to number of input states");
81  return;
82  }
83  int idx = 0;
84  for (bool state : states)
85  {
86  _boxes[idx]->setChecked(state);
87  ++idx;
88  }
89 }
90 
91 QSize HoriontalButtonGroup::sizeHint() const { return QSize(50, 5); }
92 
93 } // namespace gui
94 } // namespace corbo
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::gui::HoriontalButtonGroup::HoriontalButtonGroup
HoriontalButtonGroup(bool exclusive, QWidget *parent=0)
Definition: horizontal_button_group.h:105
horizontal_button_group.h


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