-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEntityFrame.cpp
More file actions
41 lines (33 loc) · 772 Bytes
/
EntityFrame.cpp
File metadata and controls
41 lines (33 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "EntityFrame.h"
EntityFrame::EntityFrame()
{
entityView = new EntityViewWidget();
entityAttribute = new EntityAttributeWidget();
nnView = new NNViewWidget();
QVBoxLayout * layout = new QVBoxLayout();
layout->addWidget(entityView);
layout->addWidget(nnView);
layout->addWidget(entityAttribute);
this->setLayout(layout);
}
EntityFrame::~EntityFrame()
{
delete entityView;
delete nnView;
delete entityAttribute;
}
void EntityFrame::setAnimal(std::weak_ptr<Animal> a)
{
entityView->setAnimal(a);
nnView->setAnimal(a);
entityAttribute->setAnimal(a);
}
void EntityFrame::update()
{
entityView->updateView();
nnView->updateView();
entityAttribute->update();
}
void EntityFrame::resizeEvent(QResizeEvent *e)
{
}