Fixed Window
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
# include "PlanGrid.hpp"
|
||||
|
||||
PlanGrid::PlanGrid(QWidget* parent)
|
||||
:QWidget(parent)
|
||||
{
|
||||
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
# pragma once
|
||||
# include <QWidget>
|
||||
|
||||
class PlanGrid : QWidget{
|
||||
Q_OBJECT
|
||||
protected:
|
||||
public:
|
||||
PlanGrid(QWidget* parent = nullptr);
|
||||
|
||||
Reference in New Issue
Block a user