signal_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 
27 #include <QApplication>
28 #include <QDrag>
29 #include <QLabel>
30 #include <QMimeData>
31 #include <QMouseEvent>
32 #include <QStyleHints>
33 
34 #include <corbo-core/console.h>
35 
36 namespace corbo {
37 namespace gui {
38 
39 SignalWidget::SignalWidget(const QString& title, const QString& key, int value_idx, QWidget* parent)
40  : QWidget(parent), _key(key), _value_idx(value_idx)
41 {
42  setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
43 
44  _layout = new QHBoxLayout(this);
45  _layout->setContentsMargins(0, 0, 0, 0);
46  _layout->setAlignment(Qt::AlignTop | Qt::AlignLeft);
47 
48  QLabel* label = new QLabel(title);
49  _layout->addWidget(label);
50 }
51 
52 SignalWidget::~SignalWidget() {}
53 
54 QSize SignalWidget::sizeHint() const { return QSize(200, 15); }
55 
56 void SignalWidget::mousePressEvent(QMouseEvent* event)
57 {
58  if (event->button() == Qt::LeftButton) _drag_start_position = event->pos();
59 
60  QWidget::mousePressEvent(event);
61 }
62 
63 void SignalWidget::mouseMoveEvent(QMouseEvent* event)
64 {
65  if (!(event->buttons() & Qt::LeftButton)) return;
66  if ((event->pos() - _drag_start_position).manhattanLength() < QApplication::startDragDistance()) return;
67 
68  // drag and drop action detected:
69  QDrag* drag = new QDrag(this);
70  QMimeData* mime_data = new QMimeData;
71  mime_data->setText(_key + "::" + QString::number(_value_idx));
72  drag->setMimeData(mime_data);
73 
74  Qt::DropAction drop_action = drag->exec();
75 }
76 
77 } // namespace gui
78 } // namespace corbo
corbo
Definition: communication/include/corbo-communication/utilities.h:37
signal_widget.h
console.h
corbo::gui::SignalWidget::SignalWidget
SignalWidget(const QString &title, const QString &key, int value_idx, QWidget *parent=0)
Definition: signal_widget.cpp:83


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