extended_tree_widget.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 <QHeaderView>
27 
28 #include <algorithm>
29 
30 namespace corbo {
31 namespace gui {
32 
33 ExtendedTreeWidget::ExtendedTreeWidget(QWidget* parent) : QTreeWidget(parent)
34 {
35  connect(this, SIGNAL(itemExpanded(QTreeWidgetItem*)), this, SLOT(updateSizeHint()));
36  connect(this, SIGNAL(itemCollapsed(QTreeWidgetItem*)), this, SLOT(updateSizeHint()));
37 
38  // it is convenient for the user to also expand the child tree if only a single child is present:
39  connect(this, &ExtendedTreeWidget::itemExpanded, [](QTreeWidgetItem* item) {
40  if (item->childCount() == 1) item->child(0)->setExpanded(true);
41  });
42 }
43 
44 QSize ExtendedTreeWidget::sizeHint() const
45 {
46  QSize size = QTreeWidget::sizeHint();
47  int height = 2 * frameWidth();
48  if (!isHeaderHidden() && header()) height += header()->sizeHint().height();
49 
50  for (int i = 0; i < topLevelItemCount(); ++i) height += recursiveHeightHint(topLevelItem(i));
51 
52  size.setHeight(height);
53  return size;
54 }
55 
56 int ExtendedTreeWidget::recursiveHeightHint(QTreeWidgetItem* item) const
57 {
58  int item_height = 0;
59  int item_widget_height = 0;
60  // get highest column
61  for (int col_idx = 0; col_idx < item->columnCount(); ++col_idx)
62  {
63  // take font size into account for plain text items
64  // hack: we add 5 for the rest of the frame
65  // FIXME(roesmann)
66  // int item_height_aux = std::max(item->sizeHint(col_idx).height(), item->font(col_idx).pointSize() + 5);
67  int item_height_aux = visualItemRect(item).height();
68 
69  item_height = std::max(item_height, item_height_aux);
70  }
71  QWidget* item_widget = itemWidget(item, 0); // note, itemWidget does not imply a positive item->columnCount() !
72  if (item_widget) item_widget_height = std::max(item_widget_height, item_widget->geometry().height());
73  // TODO(roesmann) or item_widget->sizeHint().height()
74 
75  int height = std::max(item_height, item_widget_height);
76 
77  if (item->isExpanded())
78  {
79  int num_children = item->childCount();
80  for (int child_idx = 0; child_idx < num_children; ++child_idx) height += recursiveHeightHint(item->child(child_idx));
81  }
82  return height;
83 }
84 
85 void ExtendedTreeWidget::mousePressEvent(QMouseEvent* event)
86 {
87  clearSelection();
88  // QModelIndex item = indexAt(event->pos());
89  // bool selected = selectionModel()->isSelected(item);
90  QTreeWidget::mousePressEvent(event);
91  // if (selected) selectionModel()->select(item, QItemSelectionModel::Deselect);
92 }
93 
94 } // namespace gui
95 } // namespace corbo
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::gui::ExtendedTreeWidget::ExtendedTreeWidget
ExtendedTreeWidget(QWidget *parent=nullptr)
Definition: extended_tree_widget.cpp:77
extended_tree_widget.h
utility::tuple::size
static constexpr size_t size(Tuple< Args... > &)
Provides access to the number of elements in a tuple as a compile-time constant expression.
Definition: TensorSyclTuple.h:143
max
#define max(a, b)
Definition: datatypes.h:20


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