-
Notifications
You must be signed in to change notification settings - Fork 0
/
iconset.h
32 lines (23 loc) · 919 Bytes
/
iconset.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
#ifndef __ICONSET_H__
#define __ICONSET_H__
#include <SDL.h>
class IconSet
{
private:
SDL_Surface *smallIcons[6][6][2];
SDL_Surface *largeIcons[6][6][2];
SDL_Surface *emptyFieldIcon, *emptyHintIcon, *nearHintIcon[2];
SDL_Surface *sideHintIcon[2], *betweenArrow[2];
public:
IconSet();
virtual ~IconSet();
public:
SDL_Surface* getLargeIcon(int row, int num, bool highlighted);
SDL_Surface* getSmallIcon(int row, int num, bool highlighted);
SDL_Surface* getEmptyFieldIcon() { return emptyFieldIcon; };
SDL_Surface* getEmptyHintIcon() { return emptyHintIcon; };
SDL_Surface* getNearHintIcon(bool h) { return nearHintIcon[h ? 1 : 0]; };
SDL_Surface* getSideHintIcon(bool h) { return sideHintIcon[h ? 1 : 0]; };
SDL_Surface* getBetweenArrow(bool h) { return betweenArrow[h ? 1 : 0]; };
};
#endif