MCPcopy Create free account
hub / github.com/cinience/RedisStudio / DoEvent

Method DoEvent

DuiLib/Control/UILabel.cpp:156–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154 }
155
156 void CLabelUI::DoEvent(TEventUI& event)
157 {
158 if( event.Type == UIEVENT_SETFOCUS )
159 {
160 m_bFocused = true;
161 return;
162 }
163 if( event.Type == UIEVENT_KILLFOCUS )
164 {
165 m_bFocused = false;
166 return;
167 }
168 if( event.Type == UIEVENT_MOUSEENTER )
169 {
170 // return;
171 }
172 if( event.Type == UIEVENT_MOUSELEAVE )
173 {
174 // return;
175 }
176 CControlUI::DoEvent(event);
177 }
178
179 void CLabelUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue)
180 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected