Fixed Window

This commit is contained in:
AJ
2024-06-24 07:58:30 +02:00
parent aeccd1dccf
commit c8843c685a
9 changed files with 1733 additions and 99 deletions

View File

@@ -1,6 +1,8 @@
# include "EinsatzplanFrame.hpp"
EinsatzplanFrame::EinsatzplanFrame(QWidget* parent, QString id, bool admin){
EinsatzplanFrame::EinsatzplanFrame(QWidget* parent, QString id, bool admin)
:QFrame(parent)
{
setFrameStyle(QFrame::Box);
profileImg_m = new QLabel(this);

View File

@@ -1,9 +1,11 @@
# pragma once
# include <QFrame>
# include <QLabel>
# include <QPushButton>
# include "../PlanGrid/PlanGrid.hpp"
class EinsatzplanFrame : public QFrame{
Q_OBJECT
protected:
QLabel* profileImg_m;
QLabel* id_m;

View File

@@ -0,0 +1,7 @@
# include "PlanGrid.hpp"
PlanGrid::PlanGrid(QWidget* parent)
:QWidget(parent)
{
}

View File

@@ -1,6 +1,8 @@
# pragma once
# include <QWidget>
class PlanGrid : QWidget{
Q_OBJECT
protected:
public:
PlanGrid(QWidget* parent = nullptr);