Definition at line 256 of file Graph.h. References DrawConnections(), OglGui::OglWindow::H(), OglGui::OglWindow::mOglWnd, mOldObjectList, mOldWndList, mShowContentMinH, mShowContentMinW, and OglGui::OglWindow::W(). Referenced by DisplayFunc(). 00257 { 00258 bool showContent = W() >= mShowContentMinW && H() >= mShowContentMinH; 00259 if (!showContent && (mOglWnd->wndList || mOglWnd->objectList)) 00260 { 00261 mOldWndList = mOglWnd->wndList; 00262 mOldObjectList = mOglWnd->objectList; 00263 mOglWnd->wndList = mOglWnd->objectList = 0; 00264 } 00265 if (showContent && !(mOglWnd->wndList || mOglWnd->objectList)) 00266 { 00267 mOglWnd->wndList = mOldWndList; 00268 mOglWnd->objectList = mOldObjectList; 00269 } 00270 if (showContent) 00271 DrawConnections(); 00272 }
Here is the call graph for this function:
|