18 lines
268 B
C
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;
|
||
|
};
|