GCC Code Coverage Report


Directory: plugins/
File: plugins/hppwidgetsplugin/ui_jointtreewidget.h
Date: 2024-12-13 15:51:58
Exec Total Coverage
Lines: 0 30 0.0%
Branches: 0 30 0.0%

Line Branch Exec Source
1 /********************************************************************************
2 ** Form generated from reading UI file 'jointtreewidget.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.15.3
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8
9 #ifndef UI_JOINTTREEWIDGET_H
10 #define UI_JOINTTREEWIDGET_H
11
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QHBoxLayout>
15 #include <QtWidgets/QHeaderView>
16 #include <QtWidgets/QPushButton>
17 #include <QtWidgets/QSpacerItem>
18 #include <QtWidgets/QTreeView>
19 #include <QtWidgets/QVBoxLayout>
20 #include <QtWidgets/QWidget>
21
22 QT_BEGIN_NAMESPACE
23
24 class Ui_JointTreeWidget
25 {
26 public:
27 QVBoxLayout *verticalLayout;
28 QHBoxLayout *horizontalLayout;
29 QSpacerItem *horizontalSpacer;
30 QPushButton *button_forceVelocity;
31 QTreeView *jointTree;
32
33 void setupUi(QWidget *JointTreeWidget)
34 {
35 if (JointTreeWidget->objectName().isEmpty())
36 JointTreeWidget->setObjectName(QString::fromUtf8("JointTreeWidget"));
37 JointTreeWidget->resize(400, 300);
38 verticalLayout = new QVBoxLayout(JointTreeWidget);
39 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
40 horizontalLayout = new QHBoxLayout();
41 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
42 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
43
44 horizontalLayout->addItem(horizontalSpacer);
45
46 button_forceVelocity = new QPushButton(JointTreeWidget);
47 button_forceVelocity->setObjectName(QString::fromUtf8("button_forceVelocity"));
48 button_forceVelocity->setCheckable(true);
49 button_forceVelocity->setChecked(false);
50
51 horizontalLayout->addWidget(button_forceVelocity);
52
53
54 verticalLayout->addLayout(horizontalLayout);
55
56 jointTree = new QTreeView(JointTreeWidget);
57 jointTree->setObjectName(QString::fromUtf8("jointTree"));
58 jointTree->setContextMenuPolicy(Qt::CustomContextMenu);
59 jointTree->setHeaderHidden(true);
60 jointTree->header()->setVisible(false);
61
62 verticalLayout->addWidget(jointTree);
63
64
65 retranslateUi(JointTreeWidget);
66
67 QMetaObject::connectSlotsByName(JointTreeWidget);
68 } // setupUi
69
70 void retranslateUi(QWidget *JointTreeWidget)
71 {
72 JointTreeWidget->setWindowTitle(QCoreApplication::translate("JointTreeWidget", "Joint tree", nullptr));
73 #if QT_CONFIG(tooltip)
74 button_forceVelocity->setToolTip(QCoreApplication::translate("JointTreeWidget", "<html><head/><body><p>When possible, force velocity mode.</p><p><br/></p><p>There are two modes available for editing the value of a joint:</p><p>- velocity: the user provides a speed to be integrated by HPP;</p><p>- position: the user provides the value of the joint.</p></body></html>", nullptr));
75 #endif // QT_CONFIG(tooltip)
76 button_forceVelocity->setText(QCoreApplication::translate("JointTreeWidget", "Force velocity", nullptr));
77 } // retranslateUi
78
79 };
80
81 namespace Ui {
82 class JointTreeWidget: public Ui_JointTreeWidget {};
83 } // namespace Ui
84
85 QT_END_NAMESPACE
86
87 #endif // UI_JOINTTREEWIDGET_H
88