forked from lfeng1420/BrickGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVolumeLayer.h
62 lines (45 loc) · 977 Bytes
/
VolumeLayer.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
54
55
56
57
58
59
60
61
62
#pragma once
class CBarrierLayer;
class CVolumeLayer : public Layer
{
public:
CVolumeLayer();
virtual ~CVolumeLayer();
// Init
virtual bool init();
// CREATE_FUNC macro
CREATE_FUNC(CVolumeLayer);
// Init UI
virtual void InitUI();
private:
// Create UI
void __CreateUI();
// Slider value change
void __OnSliderValueChanged(Ref* pSender, Control::EventType enEvent);
// Click button
void __OnButtonEvent(Ref* pSender);
protected:
enum
{
DEFAULT_HEIGHT = 150,
LABEL_FONT_SIZE = 24,
VALUE_FONT_SIZE = 24,
X_PADDING = 25,
};
protected:
// Slider
ControlSlider* m_pBGMSlider;
ControlSlider* m_pEffectSlider;
// Label
Label* m_pBGMVolume;
Label* m_pEffetVolume;
Label* m_pBGMLabel;
Label* m_pEffectLabel;
// Background layer
Sprite* m_pBGSprite;
// Close button
MenuItemSprite* m_pCloseMenuItem;
Menu* m_pMenu;
// Barrier layer
CBarrierLayer* m_pBarrierLayer;
};