aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/window.hpp
blob: c2003a9490e0be643ce3112e25c48c6e1d618958 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
/* ----------------------------------------------------------------------------
 * window.hpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#ifndef WINDOW_HPP
#define WINDOW_HPP

#include <SDL2/SDL.h>

#include <string>

namespace yage {

// window flags that can change it's appearance
enum WindowFlags : unsigned {
    SHOWN = 0x1,
    HIDDEN = 0x2,
    FULLSCREEN = 0x4,
    BORDERLESS = 0x8,
};

// window wrapper around SDL_Window pointer
class Window {
private:
    /// window handle
    SDL_Window* window_ = nullptr;

public:
    Window();
    Window(const Window&) = delete;
    Window(Window&&) = delete;
    /// destroys the window handle
    ~Window();

    Window& operator=(const Window&) = delete;
    Window& operator=(Window&&) = delete;

    /// create the window, initialize the handle and update the width and height
    void create(const std::string& window_name, int width, int height,
                unsigned flags = WindowFlags::SHOWN);
    /// swap the buffer
    void swapBuffer();
    /// clear buffer
    void clearBuffer();
};

}  // namespace yage

#endif