mirror of
https://github.com/modelec/ihm.git
synced 2026-01-18 16:47:32 +01:00
28 lines
447 B
C++
28 lines
447 B
C++
#pragma once
|
|
#include <QPushButton>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
|
|
class Homologation : public QWidget {
|
|
Q_OBJECT
|
|
public:
|
|
Homologation(QWidget* parent = nullptr);
|
|
|
|
protected slots:
|
|
void onDeplierClicked();
|
|
|
|
void onReplierClicked();
|
|
|
|
signals:
|
|
void deplierClicked();
|
|
void replierClicked();
|
|
|
|
private:
|
|
QLayout* layout;
|
|
QLabel* text;
|
|
QPushButton* deplier;
|
|
QPushButton* replier;
|
|
|
|
};
|