-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathButton.h
53 lines (40 loc) · 1.44 KB
/
Button.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
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef _BUTTON_H
#define _BUTTON_H
#include <string>
#include "Window.h"
#include <boost\function.hpp>
#include <boost\bind.hpp>
class Button : public Window
{
public:
Button(WindowHandler *handler, WindowID id, string display, int x, int y, int width, int height, D3DCOLOR color = D3DCOLOR_ARGB( 255, 230, 230, 230));
Button(WindowHandler *handler, WindowID id, string display, int x, int y, int width, int height, bool b,
char* normalTexture = (char*)NORMAL_BUTTON_SOURCE.c_str(), char* hooverTexture = (char*)HOOVER_BUTTON_SOURCE.c_str(),
bool font = false, D3DCOLOR color = D3DCOLOR_ARGB( 255, 230, 230, 230));
~Button();
void draw(void);
bool pressed(int mx, int my);
void hoover(int mx, int my);
void setPressSound(string source);
//boost::function<bool(WindowID id, bool value)> callback;
boost::function<bool(WindowID id, WindowMessage msg)> callback;
template <class T>
void connect(bool(T::*_callback)(WindowID id, WindowMessage msg), T* _object) { // hack?
callback = boost::bind(_callback, _object, _1, _2);
}
/*template <class T>
void connect(bool(T::*_callback)(WindowID id, bool value), T* _object) { // hack?
callback = boost::bind(_callback, _object, _1, _2);
}*/
//void setValue(bool value);
//bool getValue(void);
private:
//bool mValue;
bool mFont;
bool mMouseOver;
string mDisplayText;
IDirect3DTexture9* mNormalTexture;
IDirect3DTexture9* mHooverTexture;
string mSoundSource;
};
#endif