Definition at line 134 of file TextArea.h. References OglGui::ScrollBar::ChangePos(), OglGui::Window::MouseFunc(), and mScrollBar. 00135 { 00136 Window::MouseFunc(msg, but, state, x, y); 00137 00138 if (mScrollBar && msg == oglMouseWheelUp) 00139 mScrollBar->ChangePos(-1); 00140 if (mScrollBar && msg == oglMouseWheelDown) 00141 mScrollBar->ChangePos(1); 00142 }
Here is the call graph for this function:
|