Definition at line 74 of file ScrollBar.h. References All, Decr, Incr, mButDecr, mButIncr, mButThumb, OglGui::OglWindow::SetBorderType(), OglGui::Button::SetBorderType(), and Thumb. 00075 { 00076 Window *wnd = 0; 00077 switch(comp) 00078 { 00079 case All: 00080 mButIncr->SetBorderType(type); 00081 mButDecr->SetBorderType(type); 00082 mButThumb->SetBorderType(type); 00083 break; 00084 case Incr: wnd = mButIncr; break; 00085 case Thumb: wnd = mButThumb; break; 00086 case Decr: wnd = mButDecr; break; 00087 } 00088 if (wnd && comp != All) 00089 wnd->SetBorderType(type); 00090 }
Here is the call graph for this function:
|