Rename AppComponent classes (AppEntitySystemComponent => EntitySystemAppComponent)

This commit is contained in:
SirLynix
2024-01-24 16:50:04 +01:00
parent 3421c0f50b
commit bb3b28279b
25 changed files with 89 additions and 89 deletions

View File

@@ -4,8 +4,8 @@
#pragma once
#ifndef NAZARA_PLATFORM_APPWINDOWINGCOMPONENT_HPP
#define NAZARA_PLATFORM_APPWINDOWINGCOMPONENT_HPP
#ifndef NAZARA_PLATFORM_WINDOWINGAPPCOMPONENT_HPP
#define NAZARA_PLATFORM_WINDOWINGAPPCOMPONENT_HPP
#include <NazaraUtils/Prerequisites.hpp>
#include <Nazara/Core/ApplicationComponent.hpp>
@@ -14,13 +14,13 @@
namespace Nz
{
class NAZARA_PLATFORM_API AppWindowingComponent : public ApplicationComponent
class NAZARA_PLATFORM_API WindowingAppComponent : public ApplicationComponent
{
public:
inline AppWindowingComponent(ApplicationBase& app);
AppWindowingComponent(const AppWindowingComponent&) = delete;
AppWindowingComponent(AppWindowingComponent&&) = delete;
~AppWindowingComponent() = default;
inline WindowingAppComponent(ApplicationBase& app);
WindowingAppComponent(const WindowingAppComponent&) = delete;
WindowingAppComponent(WindowingAppComponent&&) = delete;
~WindowingAppComponent() = default;
template<typename... Args> Window& CreateWindow(Args&&... args);
@@ -31,8 +31,8 @@ namespace Nz
void Update(Time elapsedTime) override;
AppWindowingComponent& operator=(const AppWindowingComponent&) = delete;
AppWindowingComponent& operator=(AppWindowingComponent&&) = delete;
WindowingAppComponent& operator=(const WindowingAppComponent&) = delete;
WindowingAppComponent& operator=(WindowingAppComponent&&) = delete;
private:
std::vector<std::unique_ptr<Window>> m_windows;
@@ -40,6 +40,6 @@ namespace Nz
};
}
#include <Nazara/Platform/AppWindowingComponent.inl>
#include <Nazara/Platform/WindowingAppComponent.inl>
#endif // NAZARA_PLATFORM_APPWINDOWINGCOMPONENT_HPP
#endif // NAZARA_PLATFORM_WINDOWINGAPPCOMPONENT_HPP

View File

@@ -7,28 +7,28 @@
namespace Nz
{
template<typename... Args>
Window& AppWindowingComponent::CreateWindow(Args&&... args)
Window& WindowingAppComponent::CreateWindow(Args&&... args)
{
return *m_windows.emplace_back(std::make_unique<Window>(std::forward<Args>(args)...));
}
inline AppWindowingComponent::AppWindowingComponent(ApplicationBase& app) :
inline WindowingAppComponent::WindowingAppComponent(ApplicationBase& app) :
ApplicationComponent(app),
m_quitOnLastWindowClosed(true)
{
}
inline void AppWindowingComponent::DisableQuitOnLastWindowClosed()
inline void WindowingAppComponent::DisableQuitOnLastWindowClosed()
{
return EnableQuitOnLastWindowClosed(false);
}
inline void AppWindowingComponent::EnableQuitOnLastWindowClosed(bool enable)
inline void WindowingAppComponent::EnableQuitOnLastWindowClosed(bool enable)
{
m_quitOnLastWindowClosed = enable;
}
inline bool AppWindowingComponent::IsQuitOnLastWindowClosedEnabled() const
inline bool WindowingAppComponent::IsQuitOnLastWindowClosedEnabled() const
{
return m_quitOnLastWindowClosed;
}