Reimplemented from OglGui::Window. Definition at line 251 of file StringSelector.h. References ActivateListener(), CurrentStringUpDown(), OglGui::Window::GetState(), OglGui::Window::KeyboardFunc(), mScrollBar, and OglGui::ScrollBar::ScrollKeys(). 00252 { 00253 if (!GetState()) return; 00254 00255 Window::KeyboardFunc(c, state); 00256 if (state) 00257 return; 00258 if (c == '\r') 00259 return ActivateListener(); 00260 if (c==oglUP || c==oglDOWN) 00261 CurrentStringUpDown(c==oglDOWN,true); 00262 // else if (mScrollBar /*&& mScrollBar->ScrollKeyHandling()*/) 00263 else if (mScrollBar) 00264 mScrollBar->ScrollKeys(c, state); 00265 }
Here is the call graph for this function:
|