diff --git a/source/ArmarXGui/libraries/ArmarXGuiBase/CMakeLists.txt b/source/ArmarXGui/libraries/ArmarXGuiBase/CMakeLists.txt index 3cd4e6e26538d7f5d6de369bd884301ace663474..490f81b9599062c444a8ca006d1c5895309b1ea5 100644 --- a/source/ArmarXGui/libraries/ArmarXGuiBase/CMakeLists.txt +++ b/source/ArmarXGui/libraries/ArmarXGuiBase/CMakeLists.txt @@ -28,6 +28,7 @@ set(FILES ArmarXWidgetController.cpp widgets/InfixCompleter.cpp widgets/RegExpValidatedInputDialog.cpp widgets/PeriodicUpdateWidget.cpp + widgets/StatusLabel.cpp ) set(HEADERS ArmarXGuiInterface.h @@ -55,6 +56,7 @@ set(HEADERS ArmarXGuiInterface.h SpinBoxToPose.h SpinBoxToVector.h widgets/PeriodicUpdateWidget.h + widgets/StatusLabel.h ) set(GUI_UIS diff --git a/source/ArmarXGui/libraries/ArmarXGuiBase/widgets/StatusLabel.cpp b/source/ArmarXGui/libraries/ArmarXGuiBase/widgets/StatusLabel.cpp new file mode 100644 index 0000000000000000000000000000000000000000..6b65f166aa9677f0eed55b95436a1a76777471f3 --- /dev/null +++ b/source/ArmarXGui/libraries/ArmarXGuiBase/widgets/StatusLabel.cpp @@ -0,0 +1,52 @@ +#include "StatusLabel.h" + +#include <QHBoxLayout> + +namespace armarx::skills::gui +{ + + StatusLabel::StatusLabel() + { + this->label = new QLabel(""); + this->resetButton = new QPushButton(""); + this->setupUi(); + } + + void + StatusLabel::handleMessage(const std::string& message, std::string const& error) + { + this->label->setText(QString::fromStdString(message)); + this->resetButton->setHidden(false); + label->setToolTip(QString::fromStdString(error)); + } + + void + StatusLabel::resetLabel() + { + this->label->setText(QString::fromStdString("")); + this->resetButton->setHidden(true); + } + + void + StatusLabel::setupUi() + { + QHBoxLayout* layout = new QHBoxLayout(); + layout->addWidget(resetButton); + layout->addWidget(label); + this->setLayout(layout); + layout->setStretch(1, 2); + label->setStyleSheet("QLabel { color : red; }"); + this->resetButton->setHidden(true); + + label->setMinimumHeight(35); + label->setMaximumHeight(35); + + QPixmap pixmap(":/icons/delete.ico"); + QIcon ButtonIcon(pixmap); + resetButton->setIcon(ButtonIcon); + resetButton->setIconSize(pixmap.rect().size() / 2); + + connect(this->resetButton, &QPushButton::clicked, this, &StatusLabel::resetLabel); + } + +} // namespace armarx::skills::gui diff --git a/source/ArmarXGui/libraries/ArmarXGuiBase/widgets/StatusLabel.h b/source/ArmarXGui/libraries/ArmarXGuiBase/widgets/StatusLabel.h new file mode 100644 index 0000000000000000000000000000000000000000..b8e0f91e425e3715d5d5f617f877cfeeceee9a39 --- /dev/null +++ b/source/ArmarXGui/libraries/ArmarXGuiBase/widgets/StatusLabel.h @@ -0,0 +1,35 @@ +#pragma once + +#include <QLabel> +#include <QPushButton> + +namespace armarx::skills::gui +{ + class StatusLabel : public QWidget + { + public: + /** + * @brief Constructor for StatusLabel + */ + StatusLabel(); + + public slots: + /** + * @brief Display a message to indicate an update. + */ + void handleMessage(std::string const& message, std::string const& error); + + private slots: + /** + * @brief Reset the label to default state. + */ + void resetLabel(); + + private: + void setupUi(); + + // contents + QLabel* label = nullptr; + QPushButton* resetButton = nullptr; + }; +} // namespace armarx::skills::gui