configurator/dialogs/ServicesDialog.h

31 lines
628 B
C
Raw Normal View History

2024-09-03 13:40:08 +00:00
#pragma once
#include <QDialog>
#include <QGridLayout>
#include <QLabel>
#include <QPushButton>
#include <QResizeEvent>
#include <QScrollArea>
#include <lib/ButtonRow.h>
class ServicesDialog:public QDialog {
Q_OBJECT
public:
2024-09-03 16:59:36 +00:00
ServicesDialog(QWidget *parent=nullptr);
protected Q_SLOTS:
void configureService();
void serviceHelp();
2024-09-03 13:40:08 +00:00
protected:
void resizeEvent(QResizeEvent *e) override;
protected:
QGridLayout _layout;
QLabel * _welcome;
QScrollArea * _knownServicesScroller;
QWidget * _knownServices;
QLabel * _usLabel;
QScrollArea * _unknownServicesScroller;
QWidget * _unknownServices;
ButtonRow * _buttons;
};