NasNas
An intuitive and beginner friendly 2D game framework for C++
Window.hpp
1 
6 #pragma once
7 
8 #include <SFML/Graphics/Color.hpp>
9 #include <SFML/Graphics/RenderWindow.hpp>
10 #include <SFML/Graphics/View.hpp>
11 
12 namespace ns {
13 
14  class AppWindow : public sf::RenderWindow {
15  public:
21  auto getAppView() const -> const sf::View&;
22 
28  auto getScreenView() const -> const sf::View&;
29 
35  auto getClearColor() const -> const sf::Color&;
36 
42  void setClearColor(const sf::Color& color);
43 
44  private:
45  sf::Color m_clear_color;
46  sf::View m_app_view;
47  sf::View m_screen_view;
48 
49  void onCreate() override;
50  void onResize() override;
51 
55  void scaleView();
56  };
57 
58 }
auto getScreenView() const -> const sf::View &
Get Screen View, has same size as the current window size.
void setClearColor(const sf::Color &color)
Set clear color of the window.
auto getClearColor() const -> const sf::Color &
Get clear color of the window.
auto getAppView() const -> const sf::View &
Get App View defined by user.