-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWindowHandler.h
41 lines (31 loc) · 1.1 KB
/
WindowHandler.h
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
#ifndef WINDOWHANDLER_H
#define WIDNOWHANDLER_H
#include "Window.h"
#include <vector>
using namespace std;
class WindowHandler
{
public:
WindowHandler(); // for a window that covers the whole screen
WindowHandler(int x, int y, int width, int height); // for a window that is local
~WindowHandler();
bool update(double dt); // updates the active window, checks for mouse presses/hoovers
void draw(void); // draw all windows in the list
void addWindow(Window* window); // adds window to list
void removeWindow(Window* window); // deletes window with same ID
RECT getRect(void); // returns the rect, used to set windows positions
void keyPressed(WPARAM wParam); // keyboard input
void setBackground(string source); // sets a background, default is none
void setVisible(bool b); // decides if the handler and its components should be drawn or not
private:
vector<Window*> mWindowList;
Window* mActiveWindow;
IDirect3DTexture9* mBackground;
int mNextPrimaryID;
int mX;
int mY;
int mWidth;
int mHeight;
bool mVisible;
};
#endif