4 string m_sSoundMouseEnter;
7 string m_sSoundMouseLeave;
13 string m_sSoundFocusLost;
19 string m_sSoundMouseButtonDown;
22 string m_sSoundMouseButtonUp;
25 override bool OnMouseEnter(Widget w,
int x,
int y)
27 if (m_sSoundMouseEnter !=
string.Empty)
33 override bool OnMouseLeave(Widget w, Widget enterW,
int x,
int y)
35 if (m_sSoundMouseLeave !=
string.Empty)
41 override bool OnFocus(Widget w,
int x,
int y)
43 if (m_sSoundFocus !=
string.Empty)
49 override bool OnFocusLost(Widget w,
int x,
int y)
51 if (m_sSoundFocusLost !=
string.Empty)
57 override bool OnClick(Widget w,
int x,
int y,
int button)
59 if (m_sSoundClick !=
string.Empty)
65 override bool OnMouseButtonDown(Widget w,
int x,
int y,
int button)
67 if (m_sSoundMouseButtonDown !=
string.Empty)
73 override bool OnMouseButtonUp(Widget w,
int x,
int y,
int button)
75 if (m_sSoundMouseButtonUp !=
string.Empty)