mirror of
https://github.com/modelec/ihm.git
synced 2026-01-18 16:47:32 +01:00
32 lines
603 B
C++
32 lines
603 B
C++
#pragma once
|
|
#include <qboxlayout.h>
|
|
#include <QPushButton>
|
|
#include <QWidget>
|
|
|
|
class TeamChooser : public QWidget {
|
|
Q_OBJECT
|
|
public:
|
|
explicit TeamChooser(QWidget* parent = nullptr);
|
|
|
|
private slots:
|
|
void spawnPointClicked(int nb);
|
|
|
|
signals:
|
|
void spawnPointChoose(int nb);
|
|
|
|
|
|
private:
|
|
QVBoxLayout* mainLayout;
|
|
QHBoxLayout* topLayout;
|
|
QHBoxLayout* middleLayout;
|
|
QHBoxLayout* bottomLayout;
|
|
|
|
QPushButton* spawnPoint1;
|
|
QPushButton* spawnPoint2;
|
|
QPushButton* spawnPoint3;
|
|
QPushButton* spawnPoint4;
|
|
QPushButton* spawnPoint5;
|
|
QPushButton* spawnPoint6;
|
|
|
|
};
|