• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mgl/

Lines Matching refs:m_wnd

551     m_wnd = NULL;
572 if ( m_wnd->prev )
574 wxWindowMGL *win = (wxWindowMGL*)m_wnd->prev->userData;
577 else if ( m_wnd->next )
579 wxWindowMGL *win = (wxWindowMGL*)m_wnd->next->userData;
592 if ( m_wnd )
593 MGL_wmDestroyWindow(m_wnd);
651 if ( m_wnd )
652 MGL_wmDestroyWindow(m_wnd);
654 m_wnd = wnd;
655 if ( !m_wnd ) return;
657 m_isShown = (bool)m_wnd->visible;
659 MGL_wmSetWindowUserData(m_wnd, (void*) this);
660 MGL_wmSetWindowPainter(m_wnd, wxWindowPainter);
661 MGL_wmPushWindowEventHandler(m_wnd, wxWindowMouseHandler, EVT_MOUSEEVT, 0);
662 MGL_wmPushWindowEventHandler(m_wnd, wxWindowKeybHandler, EVT_KEYEVT, 0);
665 MGL_wmSetWindowCursor(m_wnd, *m_cursor.GetMGLCursor());
667 MGL_wmSetWindowCursor(m_wnd, *wxSTANDARD_CURSOR->GetMGLCursor());
761 MGL_wmShowWindow(m_wnd, show);
766 if ( m_wnd->prev )
768 wxWindowMGL *win = (wxWindowMGL*)m_wnd->prev->userData;
771 else if ( m_wnd->next )
773 wxWindowMGL *win = (wxWindowMGL*)m_wnd->next->userData;
788 MGL_wmRaiseWindow(m_wnd);
794 MGL_wmLowerWindow(m_wnd);
800 MGL_wmUncaptureEvents(gs_mouseCapture->m_wnd, wxMGL_CAPTURE_MOUSE);
803 MGL_wmCaptureEvents(m_wnd, EVT_MOUSEEVT, wxMGL_CAPTURE_MOUSE);
810 MGL_wmUncaptureEvents(m_wnd, wxMGL_CAPTURE_MOUSE);
828 MGL_wmSetWindowCursor(m_wnd, *m_cursor.GetMGLCursor());
830 MGL_wmSetWindowCursor(m_wnd, *wxSTANDARD_CURSOR->GetMGLCursor());
859 MGL_wmReparentWindow(m_wnd, parent->GetHandle());
903 wxASSERT_MSG( m_wnd, wxT("invalid window") );
905 if (x) *x = m_wnd->width;
906 if (y) *y = m_wnd->height;
911 wxASSERT_MSG( m_wnd, wxT("invalid window") );
916 if (x) *x = m_wnd->x - pX;
917 if (y) *y = m_wnd->y - pY;
923 MGL_wmCoordGlobalToLocal(m_wnd, 0, 0, &ax, &ay);
933 MGL_wmCoordLocalToGlobal(m_wnd, 0, 0, &ax, &ay);
950 MGL_wmSetWindowPosition(m_wnd, x, y, width, height);
955 m_wnd->x == x && m_wnd->y == y &&
962 //MGL_wmInvalidateWindowRegion(m_wnd, rgn.GetMGLRegion().rgnPointer());
972 MGL_wmInvalidateWindowRect(m_wnd, &rc);
1051 if ( m_wnd->x != x || m_wnd->y != y ||
1052 (int)m_wnd->width != width || (int)m_wnd->height != height )