真彩色静态框CColorStatic类的设计实现
关于cstatic控件的自绘,网上也有很多的代码及文章,更有其界面画得很漂亮的、多种多样的功能。近来我自行封装实现了一个真彩色静态框类,目标初衷是从颜色、字体、光标入手,改变原始标准cstatic的色彩风格,使界面初步美化,具有好看的效果。同时作为一个基础简单的类来维护,为后续的功能增强及美化提供参考扩展,这个CColorStatic类的特点及功能如下:
(1)文本、文本背景、控件背景的颜色,支持3种状态(正常时、鼠标在上、鼠标按下)下不同颜色的设定,具体实现使用了掩码机制,形如SetXXXColor名称的函数接口,每种函数对不同状态下颜色的设定是很灵活的。
(2)字体设定,提供粗体、斜体、下划线基本属性,能调整字体名称和大小。
(3)光标设定,支持自定义光标(资源ID或名称)、系统光标。具体实现使用带LR_SHARED标志的LoadImage来装载光标,因此对于共享光标不能调用DestroyCursor销毁,也不必在这里销毁。
(4)透明设定,支持文本背景和控件背景的透明。
(5)只是绘制文本(凡和文本有关的样式都考虑进该类中实现),不考虑边框、形状及图形图像的绘制。
(6)绘制工作在WM_PAINT而非WM_CTLCOLOR消息中实现。
实现效果如下截图,从左到右依次是正常、鼠标在上、鼠标按下、文本背景透明、控件背景透明5种情况。
![](http://img.e-com-net.com/image/product/04ba767823024e398dafa80104f7d72f.png)
![](http://img.e-com-net.com/image/product/5196960305584004a82f2e712f1a0be9.png)
![](http://img.e-com-net.com/image/product/0db76f2a327e43a98f1e49615b239a13.png)
![](http://img.e-com-net.com/image/product/d47c8a19f02644fdbe3aa21e25a9002a.png)
![](http://img.e-com-net.com/image/product/514651957e7841689cc71031f220a81d.png)
下面来看看该类的接口代码,如下所示
1
class
CColorStatic :
public
CStatic
2![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
3
DECLARE_DYNAMIC(CColorStatic)
4![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
5
enum
6![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
7
COLOR_NORMAL=0,
8
COLOR_HOVER,
9
COLOR_PRESSED,
10
COLOR_MAX_NUM
11
};
12
enum
13![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
14
BOLD_MASK=1,
15
ITALIC_MASK=2,
16
UNDERLINE_MASK=4
17
};
18![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
19
public:
20
enum
21![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
22
stateNormal=1,
23
stateHover=2,
24
statePressed=4,
25
stateAll=7
26
};
27![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
28
public:
29
CColorStatic();
30
virtual ~CColorStatic();
31![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
32
public:
33
void SetTextColor(COLORREF color,UINT uStateFlag=stateAll);
34
void SetTextBkColor(COLORREF color,UINT uStateFlag=stateAll);
35
void SetBkColor(COLORREF color,UINT uStateFlag=stateAll);
36
37
void GetTextColor(COLORREF* color,UINT uStateFlag=stateAll);
38
void GetTextBkColor(COLORREF* color,UINT uStateFlag=stateAll);
39
void GetBkColor(COLORREF* color,UINT uStateFlag=stateAll);
40![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
41
BOOL SetBold(BOOL bBold,BOOL bRedraw=TRUE);
42
BOOL SetItalic(BOOL bItalic,BOOL bRedraw=TRUE);
43
BOOL SetUnderline(BOOL bUnderline,BOOL bRedraw=TRUE);
44
BOOL SetFont(LOGFONT& logFont,BOOL bRedraw=TRUE);
45
BOOL SetFont(CFont& font,BOOL bRedraw=TRUE);
46
BOOL SetFont(LPCTSTR lpFaceName,int nPointSize,BOOL bRedraw=TRUE);
47
48
BOOL IsBold() const
49![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ return m_mask&BOLD_MASK; }
50![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
51
BOOL IsItalic() const
52![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ return m_mask&ITALIC_MASK; }
53![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
54
BOOL IsUnderline() const
55![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ return m_mask&UNDERLINE_MASK; }
56![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
57
CFont* GetFont()
58![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ return &m_font; }
59![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
60
const CFont* GetFont() const
61![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ return &m_font; }
62![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
63
BOOL SetCursor(LPCTSTR lpName);
64
BOOL SetCursor(UINT uID);
65
void SetCursor(HCURSOR hCursor)
66![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ m_hCursor = hCursor; }
67![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
68
HCURSOR GetCursor() const
69![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{ return m_hCursor; }
70![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
71
void SetTextBkTransparent(BOOL bTransparent);
72
void SetBkTransparent(BOOL bTransparent);
73![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
74
protected:
75
DECLARE_MESSAGE_MAP()
76
afx_msg void OnMouseMove(UINT nFlags, CPoint point);
77
afx_msg void OnPaint();
78
afx_msg BOOL OnStnClicked();
79
afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
80![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
81
protected:
82
virtual void PreSubclassWindow();
83
virtual void PaintBk(CDC* pDC);
84
virtual void DrawText(CDC* pDC);
85
virtual void DrawTextColor(CDC* pDC);
86
virtual void DrawTextBkColor(CDC* pDC);
87
virtual void DrawBkColor(CDC* pDC);
88![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
89
protected:
90
COLORREF m_crText[COLOR_MAX_NUM];
91
COLORREF m_crTextBk[COLOR_MAX_NUM];
92
COLORREF m_crBk[COLOR_MAX_NUM];
93![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
94
CFont m_font;
95
HCURSOR m_hCursor;
96
UINT m_mask;
97
BOOL m_bHover;
98
BOOL m_bPressed;
99
BOOL m_bTextBkTransparent;
100
BOOL m_bBkTransparent;
101![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
102
CDC m_dcBk;
103
CBitmap m_bmpBk;
104
CBitmap* m_pbmpOldBk;
105
}
;
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
2
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
3
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
4
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
5
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
6
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
7
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
8
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
9
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
10
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
11
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
12
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
13
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
14
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
15
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
16
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
17
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
18
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
19
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
20
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
21
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
22
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
23
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
24
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
25
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
26
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
27
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
28
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
29
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
30
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
31
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
32
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
33
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
34
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
35
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
36
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
37
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
38
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
39
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
40
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
41
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
42
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
43
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
44
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
45
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
46
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
47
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
48
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
49
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
50
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
51
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
52
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
53
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
54
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
55
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
56
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
57
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
58
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
59
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
60
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
61
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
62
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
63
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
64
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
65
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
66
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
67
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
68
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
69
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
70
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
71
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
72
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
73
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
74
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
75
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
76
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
77
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
78
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
79
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
80
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
81
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
82
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
83
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
84
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
85
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
86
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
87
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
88
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
89
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
90
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
91
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
92
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
93
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
94
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
95
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
96
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
97
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
98
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
99
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
100
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
101
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
102
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
103
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
104
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
105
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
1
IMPLEMENT_DYNAMIC(CColorStatic, CStatic)
2![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
3
CColorStatic::CColorStatic()
4
:m_mask(
0
)
5
,m_bHover(FALSE)
6
,m_bPressed(FALSE)
7
,m_bTextBkTransparent(FALSE)
8
,m_bBkTransparent(FALSE)
9
,m_hCursor(NULL)
10![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
11
for(int i=0;i<COLOR_MAX_NUM;++i)
12![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
13
m_crText[i]=GetSysColor(COLOR_BTNTEXT);
14
m_crTextBk[i]=GetSysColor(COLOR_BTNFACE);
15
m_crBk[i]=GetSysColor(COLOR_BTNFACE);
16
}
17
}
18![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
19
CColorStatic::
~
CColorStatic()
20![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
21
if (m_dcBk.m_hDC && m_pbmpOldBk)
22
m_dcBk.SelectObject(m_pbmpOldBk);
23
}
24![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
25
BEGIN_MESSAGE_MAP(CColorStatic, CStatic)
26
ON_CONTROL_REFLECT_EX(STN_CLICKED,OnStnClicked)
27
ON_WM_MOUSEMOVE()
28
ON_WM_PAINT()
29
ON_WM_SETCURSOR()
30
END_MESSAGE_MAP()
31![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
32
void
CColorStatic::SetTextColor(COLORREF color,UINT uStatusFlag)
33![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
34
if (uStatusFlag&stateNormal)
35
m_crText[COLOR_NORMAL] = color;
36
if (uStatusFlag&stateHover)
37
m_crText[COLOR_HOVER] = color;
38
if (uStatusFlag&statePressed)
39
m_crText[COLOR_PRESSED] = color;
40
}
41![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
42
void
CColorStatic::SetTextBkColor(COLORREF color,UINT uStatusFlag)
43![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
44
if (uStatusFlag&stateNormal)
45
m_crTextBk[COLOR_NORMAL] = color;
46
if (uStatusFlag&stateHover)
47
m_crTextBk[COLOR_HOVER] = color;
48
if (uStatusFlag&statePressed)
49
m_crTextBk[COLOR_PRESSED] = color;
50
}
51![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
52
void
CColorStatic::SetBkColor(COLORREF color,UINT uStatusFlag)
53![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
54
if (uStatusFlag&stateNormal)
55
m_crBk[COLOR_NORMAL] = color;
56
if (uStatusFlag&stateHover)
57
m_crBk[COLOR_HOVER] = color;
58
if (uStatusFlag&statePressed)
59
m_crBk[COLOR_PRESSED] = color;
60
}
61![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
62
void
CColorStatic::GetTextColor(COLORREF
*
color,UINT uStateFlag)
63![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
64
if (uStateFlag&stateNormal)
65
*color++ = m_crText[COLOR_NORMAL];
66
if (uStateFlag&stateHover)
67
*color++ = m_crText[COLOR_HOVER];
68
if (uStateFlag&statePressed)
69
*color = m_crText[COLOR_PRESSED];
70
}
71![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
72
void
CColorStatic::GetTextBkColor(COLORREF
*
color,UINT uStateFlag)
73![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
74
if (uStateFlag&stateNormal)
75
*color++ = m_crTextBk[COLOR_NORMAL];
76
if (uStateFlag&stateHover)
77
*color++ = m_crTextBk[COLOR_HOVER];
78
if (uStateFlag&statePressed)
79
*color = m_crTextBk[COLOR_PRESSED];
80
}
81![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
82
void
CColorStatic::GetBkColor(COLORREF
*
color,UINT uStateFlag)
83![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
84
if (uStateFlag&stateNormal)
85
*color++ = m_crBk[COLOR_NORMAL];
86
if (uStateFlag&stateHover)
87
*color++ = m_crBk[COLOR_HOVER];
88
if (uStateFlag&statePressed)
89
*color = m_crBk[COLOR_PRESSED];
90
}
91![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
92
BOOL CColorStatic::SetBold(BOOL bBold,BOOL bRedraw)
93![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
94
ASSERT((HFONT)m_font);
95
bBold ? (m_mask|=BOLD_MASK):(m_mask&=~BOLD_MASK);
96
LOGFONT lf;
97
m_font.GetLogFont(&lf);
98
lf.lfWeight = (m_mask&BOLD_MASK)?FW_BOLD:FW_NORMAL;
99
return SetFont(lf,bRedraw);
100
}
101![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
102
BOOL CColorStatic::SetItalic(BOOL bItalic,BOOL bRedraw)
103![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
104
ASSERT((HFONT)m_font);
105
bItalic ? (m_mask|=ITALIC_MASK):(m_mask&=~ITALIC_MASK);
106
LOGFONT lf;
107
m_font.GetLogFont(&lf);
108
lf.lfItalic = (m_mask&ITALIC_MASK)?TRUE:FALSE;
109
return SetFont(lf,bRedraw);
110
}
111![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
112
BOOL CColorStatic::SetUnderline(BOOL bUnderline,BOOL bRedraw)
113![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
114
ASSERT((HFONT)m_font);
115
bUnderline ? (m_mask|=UNDERLINE_MASK):(m_mask&=~UNDERLINE_MASK);
116
LOGFONT lf;
117
m_font.GetLogFont(&lf);
118
lf.lfUnderline = (m_mask&UNDERLINE_MASK)?TRUE:FALSE;
119
return SetFont(lf,bRedraw);
120
}
121![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
122
BOOL CColorStatic::SetFont(CFont
&
font,BOOL bRedraw)
123![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
124
ASSERT((HFONT)font);
125
LOGFONT lf;
126
font.GetLogFont(&lf);
127
return SetFont(lf,bRedraw);
128
}
129![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
130
BOOL CColorStatic::SetFont(LOGFONT
&
logFont,BOOL bRedraw)
131![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
132
m_font.DeleteObject();
133
if (!m_font.CreateFontIndirect(&logFont))
134
return FALSE;
135
if (bRedraw) RedrawWindow();
136
return TRUE;
137
}
138![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
139
BOOL CColorStatic::SetFont(LPCTSTR lpFaceName,
int
nPointSize,BOOL bRedraw)
140![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
141
ASSERT((HFONT)m_font);
142
LOGFONT lf;
143
m_font.GetLogFont(&lf);
144
if (lpFaceName)
145![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
146
_tcsncpy(lf.lfFaceName, lpFaceName, sizeof(lf.lfFaceName)/sizeof(TCHAR)-1);
147
}
148
lf.lfHeight = GetFontHeight(nPointSize);
149
return SetFont(lf, bRedraw);
150
}
151![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
152
void
CColorStatic::SetTextBkTransparent(BOOL bTransparent)
153![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
154
m_bTextBkTransparent = bTransparent;
155
RedrawWindow();
156
}
157![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
158
void
CColorStatic::SetBkTransparent(BOOL bTransparent)
159![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
160
m_bBkTransparent = bTransparent;
161
RedrawWindow();
162
}
163![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
164
BOOL CColorStatic::SetCursor(UINT uID)
165![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
166
return SetCursor(MAKEINTRESOURCE(uID));
167
}
168![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
169
BOOL CColorStatic::SetCursor(LPCTSTR lpName)
170![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
171
m_hCursor = (HCURSOR)::LoadImage(AfxFindResourceHandle(lpName, RT_GROUP_CURSOR),
172
lpName,IMAGE_CURSOR,0,0,LR_SHARED);
173
return NULL!=m_hCursor;
174
}
175![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
176![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
/**/
//////////////////////////////////////////////////////////////////////////
177
void
CColorStatic::PreSubclassWindow()
178![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
179
CFont* pFont = GetFont();
180
if (NULL==pFont||NULL==pFont->GetSafeHandle())
181![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
182
HFONT hFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT);
183
if (NULL==hFont)
184
hFont = (HFONT) GetStockObject(ANSI_VAR_FONT);
185
if (hFont)
186
pFont = CFont::FromHandle(hFont);
187
}
188
ASSERT(pFont->GetSafeHandle());
189![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
190
LOGFONT lf;
191
pFont->GetLogFont(&lf);
192
m_font.CreateFontIndirect(&lf);
193
ModifyStyle(0,SS_NOTIFY);
194![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
195
CStatic::PreSubclassWindow();
196
}
197![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
198![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
/**/
//////////////////////////////////////////////////////////////////////////
199
BOOL CColorStatic::OnStnClicked()
200![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
201
m_bPressed = TRUE;
202
RedrawWindow();
203
return FALSE;
204
}
205![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
206
void
CColorStatic::OnMouseMove(UINT nFlags, CPoint point)
207![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
208
CStatic::OnMouseMove(nFlags, point);
209![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
210
if (m_bHover)
211![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
212
CRect rect;
213
GetClientRect(rect);
214
if (!rect.PtInRect(point))
215![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
216
m_bPressed = m_bHover = FALSE;
217
ReleaseCapture();
218
RedrawWindow();
219
}
220
}
221
else
222![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
223
m_bHover = TRUE;
224
RedrawWindow();
225
SetCapture();
226
}
227
}
228![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
229
BOOL CColorStatic::OnSetCursor(CWnd
*
pWnd, UINT nHitTest, UINT message)
230![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
231
if (NULL!=m_hCursor)
232![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
233
::SetCursor(m_hCursor);
234
return TRUE;
235
}
236
return CStatic::OnSetCursor(pWnd, nHitTest, message);
237
}
238![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
239
void
CColorStatic::PaintBk(CDC
*
pDC)
240![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
241
CClientDC clDC(GetParent());
242
CRect rect;
243![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
244
GetClientRect(rect);
245
ClientToScreen(&rect);
246
GetParent()->ScreenToClient(&rect);
247![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
248
if (m_dcBk.m_hDC == NULL)
249![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
{
250
m_dcBk.CreateCompatibleDC(&clDC);
251
m_bmpBk.CreateCompatibleBitmap(&clDC, rect.Width(), rect.Height());
252
m_pbmpOldBk = m_dcBk.SelectObject(&m_bmpBk);
253
m_dcBk.BitBlt(0, 0, rect.Width(), rect.Height(), &clDC, rect.left, rect.top, SRCCOPY);
254
}
255
pDC->BitBlt(0,0,rect.Width(),rect.Height(),&m_dcBk,0,0,SRCCOPY);
256
}
257![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
258
void
CColorStatic::DrawTextColor(CDC
*
pDC)
259![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
260
ASSERT(pDC);
261
if (m_bPressed)
262
pDC->SetTextColor(m_crText[COLOR_PRESSED]);
263
else if (m_bHover)
264
pDC->SetTextColor(m_crText[COLOR_HOVER]);
265
else
266
pDC->SetTextColor(m_crText[COLOR_NORMAL]);
267
}
268![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
269
void
CColorStatic::DrawTextBkColor(CDC
*
pDC)
270![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
271
ASSERT(pDC);
272
if (m_bPressed)
273
pDC->SetBkColor(m_crTextBk[COLOR_PRESSED]);
274
else if (m_bHover)
275
pDC->SetBkColor(m_crTextBk[COLOR_HOVER]);
276
else
277
pDC->SetBkColor(m_crTextBk[COLOR_NORMAL]);
278
pDC->SetBkMode(m_bTextBkTransparent?TRANSPARENT:OPAQUE);
279
}
280![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
281
void
CColorStatic::DrawBkColor(CDC
*
pDC)
282![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
283
ASSERT(pDC);
284
COLORREF color;
285
if (m_bPressed)
286
color = m_crBk[COLOR_PRESSED];
287
else if (m_bHover)
288
color = m_crBk[COLOR_HOVER];
289
else
290
color = m_crBk[COLOR_NORMAL];
291![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
292
CRect cr;
293
GetClientRect(cr);
294
CBrush brush(color);
295
pDC->FillRect(&cr, &brush);
296
}
297![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
298
void
CColorStatic::DrawText(CDC
*
pDC)
299![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
300
ASSERT(pDC);
301
DrawTextColor(pDC);
302
DrawTextBkColor(pDC);
303![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
304
CRect rect;
305
GetClientRect(rect);
306![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
307
CFont* pOldFont = pDC->SelectObject(&m_font);
308
CString strText;
309
GetWindowText(strText);
310![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
311
UINT nFormat = 0;
312
DWORD dwStyle = GetStyle();
313![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
314
if (dwStyle & SS_CENTER)
315
nFormat |= DT_CENTER;
316
else if (dwStyle & SS_LEFT)
317
nFormat |= DT_LEFT;
318
else if (dwStyle & SS_RIGHT)
319
nFormat |= DT_RIGHT;
320![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
321
if (dwStyle & SS_CENTERIMAGE)
322
nFormat |= DT_VCENTER | DT_SINGLELINE;
323![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
324
pDC->DrawText(strText, rect, nFormat);
325
pDC->SelectObject(pOldFont);
326
}
327![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
328
void
CColorStatic::OnPaint()
329![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
{
330
CPaintDC dc(this);
331![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
332
if (m_bBkTransparent)
333
PaintBk(&dc);
334
else
335
DrawBkColor(&dc);
336![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
337
DrawText(&dc);
338
}
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
2
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
3
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
4
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
5
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
6
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
7
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
8
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
9
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
10
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
11
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
12
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
13
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
14
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
15
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
16
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
17
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
18
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
19
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
20
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
21
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
22
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
23
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
24
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
25
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
26
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
27
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
28
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
29
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
30
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
31
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
32
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
33
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
34
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
35
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
36
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
37
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
38
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
39
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
40
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
41
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
42
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
43
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
44
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
45
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
46
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
47
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
48
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
49
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
50
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
51
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
52
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
53
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
54
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
55
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
56
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
57
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
58
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
59
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
60
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
61
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
62
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
63
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
64
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
65
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
66
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
67
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
68
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
69
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
70
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
71
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
72
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
73
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
74
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
75
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
76
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
77
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
78
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
79
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
80
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
81
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
82
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
83
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
84
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
85
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
86
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
87
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
88
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
89
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
90
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
91
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
92
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
93
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
94
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
95
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
96
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
97
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
98
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
99
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
100
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
101
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
102
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
103
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
104
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
105
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
106
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
107
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
108
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
109
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
110
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
111
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
112
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
113
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
114
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
115
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
116
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
117
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
118
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
119
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
120
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
121
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
122
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
123
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
124
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
125
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
126
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
127
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
128
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
129
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
130
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
131
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
132
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
133
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
134
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
135
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
136
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
137
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
138
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
139
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
140
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
141
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
142
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
143
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
144
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
145
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
146
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
147
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
148
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
149
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
150
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
151
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
152
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
153
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
154
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
155
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
156
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
157
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
158
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
159
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
160
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
161
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
162
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
163
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
164
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
165
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
166
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
167
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
168
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
169
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
170
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
171
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
172
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
173
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
174
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
175
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
176
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
177
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
178
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
179
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
180
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
181
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
182
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
183
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
184
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
185
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
186
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
187
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
188
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
189
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
190
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
191
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
192
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
193
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
194
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
195
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
196
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
197
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
198
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
199
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
200
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
201
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
202
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
203
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
204
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
205
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
206
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
207
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
208
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
209
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
210
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
211
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
212
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
213
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
214
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
215
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
216
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
217
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
218
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
219
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
220
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
221
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
222
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
223
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
224
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
225
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
226
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
227
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
228
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
229
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
230
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
231
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
232
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
233
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
234
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
235
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
236
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
237
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
238
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
239
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
240
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
241
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
242
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
243
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
244
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
245
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
246
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
247
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
248
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
249
![](http://img.e-com-net.com/image/product/16676c75a1f24c2286f9cfe3320175c2.gif)
![](http://img.e-com-net.com/image/product/d81fe41b31c2438aa82734253e0a4bcc.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
250
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
251
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
252
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
253
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
254
![](http://img.e-com-net.com/image/product/4407806dd42e464c873774a6e93bb38f.gif)
255
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
256
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
257
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
258
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
259
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
260
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
261
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
262
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
263
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
264
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
265
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
266
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
267
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
268
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
269
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
270
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
271
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
272
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
273
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
274
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
275
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
276
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
277
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
278
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
279
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
280
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
281
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
282
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
283
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
284
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
285
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
286
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
287
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
288
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
289
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
290
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
291
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
292
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
293
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
294
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
295
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
296
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
297
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
298
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
299
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
300
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
301
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
302
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
303
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
304
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
305
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
306
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
307
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
308
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
309
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
310
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
311
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
312
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
313
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
314
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
315
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
316
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
317
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
318
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
319
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
320
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
321
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
322
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
323
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
324
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
325
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
326
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)
327
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
328
![](http://img.e-com-net.com/image/product/696412be261e44caa983ccc5cd2a1540.gif)
329
![](http://img.e-com-net.com/image/product/44df1c303f404ee184fdd8904c682a7f.gif)
![](http://img.e-com-net.com/image/product/f6242890d71a40ab957c0cf10b55aac8.gif)
![](http://img.e-com-net.com/image/product/02d0904de3cc460eae11f6902a7115a2.gif)
330
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
331
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
332
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
333
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
334
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
335
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
336
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
337
![](http://img.e-com-net.com/image/product/58b5517de74d4214832479bcb515bf73.gif)
338
![](http://img.e-com-net.com/image/product/4b8a34bc3c4948718086824535908452.gif)