configurator/lib/ServiceWidget.h
Bernhard Rosenkränzer 32af5c8e93 Service selection dialog
2024-09-03 15:40:08 +02:00

18 lines
268 B
C++

#pragma once
#include <QWidget>
#include <QBoxLayout>
#include <QLabel>
#include "Service.h"
class ServiceWidget:public QWidget {
Q_OBJECT
public:
ServiceWidget(Service &s, QWidget *parent=0);
protected:
QBoxLayout _layout;
QLabel * _icon;
QLabel * _label;
};