-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettingswindow.cpp
More file actions
39 lines (30 loc) · 1011 Bytes
/
settingswindow.cpp
File metadata and controls
39 lines (30 loc) · 1011 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
#include "settingswindow.h"
#include "ui_settingswindow.h"
#include "fish.h"
#include "shark.h"
using namespace GameOfLifeCore;
SettingsWindow::SettingsWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::SettingsWindow)
{
ui->setupUi(this);
}
SettingsWindow::~SettingsWindow()
{
delete ui;
}
void SettingsWindow::showEvent(QShowEvent *event)
{
ui->spinBoxFishReproductiveAge->setValue(Fish::s_reproductionTicks);
ui->spinBoxFishLifetime->setValue(Fish::s_maxAge);
ui->spinBoxSharkReproductiveAge->setValue(Shark::s_reproductionTicks);
ui->spinBoxSharkLifetime->setValue(Shark::s_maxAge);
QDialog::showEvent(event); // Call the base class implementation
}
void SettingsWindow::on_buttonBox_accepted()
{
Fish::s_reproductionTicks = ui->spinBoxFishReproductiveAge->value();
Fish::s_maxAge = ui->spinBoxFishLifetime->value();
Shark::s_reproductionTicks = ui->spinBoxSharkReproductiveAge->value();
Shark::s_maxAge = ui->spinBoxSharkLifetime->value();
}