ComplexPlotting/ComplexPlotting/PlotWindow.cpp

42 lines
591 B
C++
Raw Normal View History

2020-08-18 17:29:04 +00:00
#include "PlotWindow.hpp"
2020-08-27 12:48:35 +00:00
#include <iostream>
PlotWindow::PlotWindow(Uint32 id) :
2020-08-18 17:29:04 +00:00
IWindow::IWindow(
UnitVector2u * 400,
UnitVector2i * SDL_WINDOWPOS_UNDEFINED,
2020-08-27 12:48:35 +00:00
"Plot " + std::to_string(id),
NULL),
id(id)
2020-08-18 17:29:04 +00:00
{
}
2020-08-27 12:48:35 +00:00
bool PlotWindow::OnEvent(const SDL_Event& e)
2020-08-18 17:29:04 +00:00
{
if (e.window.windowID != m_uWindowID)
2020-08-27 12:48:35 +00:00
return true;
2020-08-18 17:29:04 +00:00
2020-08-27 12:48:35 +00:00
switch (e.window.event)
2020-08-18 17:29:04 +00:00
{
case SDL_WINDOWEVENT_CLOSE:
m_isWindowOpen = false;
2020-08-27 12:48:35 +00:00
return false;
default:
2020-08-18 17:29:04 +00:00
break;
}
2020-08-27 12:48:35 +00:00
return true;
2020-08-18 17:29:04 +00:00
}
bool PlotWindow::OnUpdate(double frametime)
{
return false;
}
void PlotWindow::OnRender(SDL_Renderer* renderer)
{
return;
}