aboutsummaryrefslogtreecommitdiff
path: root/util/win32/Win32Window.h
blob: 2429f339d23893693dcaeef75211321124f1d1ab (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
//
// Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

#ifndef SAMPLE_UTIL_WIN32_WINDOW_H
#define SAMPLE_UTIL_WIN32_WINDOW_H

#include "OSWindow.h"
#include <string>
#include <windows.h>

class Win32Window : public OSWindow
{
  public:
    Win32Window();
    ~Win32Window();

    bool initialize(const std::string &name, size_t width, size_t height);
    void destroy();

    EGLNativeWindowType getNativeWindow() const;
    EGLNativeDisplayType getNativeDisplay() const;

    void messageLoop();

    bool popEvent(Event *event);
    void pushEvent(Event event);

    void setMousePosition(int x, int y);
    bool resize(int width, int height);
    bool setVisible(bool isVisible);

  private:
    std::string mClassName;

    EGLNativeWindowType mNativeWindow;
    EGLNativeDisplayType mNativeDisplay;
};

#endif // SAMPLE_UTIL_WINDOW_H