Lines Matching refs:m_pPanel
125 ,m_pPanel(NULL) in DBG_NAME()
133 m_pPanel = new OTitleWindow(this,STR_DATABASE,WB_BORDER | WB_DIALOGCONTROL ,sal_False); in DBG_NAME()
134 m_pPanel->SetBorderStyle(WINDOW_BORDER_MONO); in DBG_NAME()
135 OApplicationSwapWindow* pSwap = new OApplicationSwapWindow( m_pPanel, *this ); in DBG_NAME()
139 m_pPanel->setChildWindow(pSwap); in DBG_NAME()
140 m_pPanel->SetUniqueId(UID_APP_DATABASE_VIEW); in DBG_NAME()
141 m_pPanel->Show(); in DBG_NAME()
153 if ( m_pPanel ) in ~OAppBorderWindow()
155 m_pPanel->Hide(); in ~OAppBorderWindow()
156 ::std::auto_ptr<Window> aTemp(m_pPanel); in ~OAppBorderWindow()
157 m_pPanel = NULL; in ~OAppBorderWindow()
171 if ( m_pPanel ) in GetFocus()
172 m_pPanel->GrabFocus(); in GetFocus()
185 if ( m_pPanel ) in Resize()
193 nX = ::std::max(m_pPanel->GetWidthPixel() ,nX); in Resize()
194 m_pPanel->SetPosSizePixel(Point(0,0),Size(nX,nOutputHeight)); in Resize()
249 return static_cast< OApplicationSwapWindow* >( m_pPanel->getChildWindow() ); in getPanel()